Searched refs:xTask (Results 1 – 1 of 1) sorted by relevance
34680 void *(*xTask)(void*); /* The thread routine */ member34687 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()34694 assert( xTask!=0 ); in sqlite3ThreadCreate()34702 p->xTask = xTask; in sqlite3ThreadCreate()34711 rc = pthread_create(&p->tid, 0, xTask, pIn); in sqlite3ThreadCreate()34715 p->pOut = xTask(pIn); in sqlite3ThreadCreate()34751 void *(*xTask)(void*); /* The routine to run as a thread */ member34772 assert( p->xTask!=0 ); in sqlite3ThreadProc()34773 p->pResult = p->xTask(p->pIn); in sqlite3ThreadProc()34782 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()[all …]