Lines Matching refs:xTask
33800 void *(*xTask)(void*); /* The thread routine */ member
33807 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()
33814 assert( xTask!=0 ); in sqlite3ThreadCreate()
33822 p->xTask = xTask; in sqlite3ThreadCreate()
33831 rc = pthread_create(&p->tid, 0, xTask, pIn); in sqlite3ThreadCreate()
33835 p->pOut = xTask(pIn); in sqlite3ThreadCreate()
33871 void *(*xTask)(void*); /* The routine to run as a thread */ member
33892 assert( p->xTask!=0 ); in sqlite3ThreadProc()
33893 p->pResult = p->xTask(p->pIn); in sqlite3ThreadProc()
33902 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()
33908 assert( xTask!=0 ); in sqlite3ThreadCreate()
33920 p->xTask = xTask; in sqlite3ThreadCreate()
33927 if( p->xTask==0 ){ in sqlite3ThreadCreate()
33929 p->pResult = xTask(pIn); in sqlite3ThreadCreate()
33944 if( p->xTask==0 ){ in sqlite3ThreadJoin()
33974 void *(*xTask)(void*); /* The routine to run as a thread */ member
33982 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()
33988 assert( xTask!=0 ); in sqlite3ThreadCreate()
33993 p->xTask = xTask; in sqlite3ThreadCreate()
33996 p->xTask = 0; in sqlite3ThreadCreate()
33997 p->pResult = xTask(pIn); in sqlite3ThreadCreate()
34008 if( p->xTask ){ in sqlite3ThreadJoin()
34009 *ppOut = p->xTask(p->pIn); in sqlite3ThreadJoin()
103397 void *(*xTask)(void*), /* Routine to run in a separate thread */
103401 return sqlite3ThreadCreate(&pTask->pThread, xTask, pIn);