Searched refs:xTask (Results 1 – 1 of 1) sorted by relevance
35526 void *(*xTask)(void*); /* The thread routine */ member35533 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()35540 assert( xTask!=0 ); in sqlite3ThreadCreate()35548 p->xTask = xTask; in sqlite3ThreadCreate()35557 rc = pthread_create(&p->tid, 0, xTask, pIn); in sqlite3ThreadCreate()35561 p->pOut = xTask(pIn); in sqlite3ThreadCreate()35597 void *(*xTask)(void*); /* The routine to run as a thread */ member35618 assert( p->xTask!=0 ); in sqlite3ThreadProc()35619 p->pResult = p->xTask(p->pIn); in sqlite3ThreadProc()35628 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()[all …]