Lines Matching refs:xTask

34109   void *(*xTask)(void*);         /* The thread routine */  member
34116 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()
34123 assert( xTask!=0 ); in sqlite3ThreadCreate()
34131 p->xTask = xTask; in sqlite3ThreadCreate()
34140 rc = pthread_create(&p->tid, 0, xTask, pIn); in sqlite3ThreadCreate()
34144 p->pOut = xTask(pIn); in sqlite3ThreadCreate()
34180 void *(*xTask)(void*); /* The routine to run as a thread */ member
34201 assert( p->xTask!=0 ); in sqlite3ThreadProc()
34202 p->pResult = p->xTask(p->pIn); in sqlite3ThreadProc()
34211 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()
34217 assert( xTask!=0 ); in sqlite3ThreadCreate()
34229 p->xTask = xTask; in sqlite3ThreadCreate()
34236 if( p->xTask==0 ){ in sqlite3ThreadCreate()
34238 p->pResult = xTask(pIn); in sqlite3ThreadCreate()
34253 if( p->xTask==0 ){ in sqlite3ThreadJoin()
34283 void *(*xTask)(void*); /* The routine to run as a thread */ member
34291 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()
34297 assert( xTask!=0 ); in sqlite3ThreadCreate()
34302 p->xTask = xTask; in sqlite3ThreadCreate()
34305 p->xTask = 0; in sqlite3ThreadCreate()
34306 p->pResult = xTask(pIn); in sqlite3ThreadCreate()
34317 if( p->xTask ){ in sqlite3ThreadJoin()
34318 *ppOut = p->xTask(p->pIn); in sqlite3ThreadJoin()
103937 void *(*xTask)(void*), /* Routine to run in a separate thread */
103941 return sqlite3ThreadCreate(&pTask->pThread, xTask, pIn);