Searched refs:xTask (Results 1 – 1 of 1) sorted by relevance
35556 void *(*xTask)(void*); /* The thread routine */ member35563 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()35570 assert( xTask!=0 ); in sqlite3ThreadCreate()35578 p->xTask = xTask; in sqlite3ThreadCreate()35587 rc = pthread_create(&p->tid, 0, xTask, pIn); in sqlite3ThreadCreate()35591 p->pOut = xTask(pIn); in sqlite3ThreadCreate()35627 void *(*xTask)(void*); /* The routine to run as a thread */ member35648 assert( p->xTask!=0 ); in sqlite3ThreadProc()35649 p->pResult = p->xTask(p->pIn); in sqlite3ThreadProc()35658 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()[all …]