Searched refs:pArg (Results 1 - 10 of 10) sorted by relevance
/osnet-11/usr/src/lib/libsqlite/src/ |
H A D | auth.c | 79 void *pArg 82 db->pAuthArg = pArg;
|
H A D | table.c | 46 static int sqlite_get_table_cb(void *pArg, int nCol, char **argv, char **colv){ argument 47 TabResult *p = (TabResult*)pArg;
|
H A D | main.c | 622 ** the xCallback() function is called. pArg becomes the first 630 void *pArg, /* First argument to xCallback() */ 659 if( xCallback!=0 && xCallback(pArg, nArg, azArg, azCol) ){ 667 xCallback(pArg, nArg, azArg, azCol); 912 void *pArg 915 db->pBusyArg = pArg; 928 void *pArg 933 db->pProgressArg = pArg; 1055 ** Register a trace function. The pArg from the previously registered trace 1062 void *sqlite_trace(sqlite *db, void (*xTrace)(void*,const char*), void *pArg){ argument 626 sqlite_exec( sqlite *db, const char *zSql, sqlite_callback xCallback, void *pArg, char **pzErrMsg ) argument [all...] |
H A D | printf.c | 800 void *pArg, /* 1st argument to callback function */ 808 rc = sqlite_exec_vprintf(db, sqlFormat, xCallback, pArg, errmsg, ap); 816 void *pArg, /* 1st argument to callback function */ 824 rc = sqlite_exec(db, zSql, xCallback, pArg, errmsg); 796 sqlite_exec_printf( sqlite *db, const char *sqlFormat, sqlite_callback xCallback, void *pArg, char **errmsg, ... ) argument 812 sqlite_exec_vprintf( sqlite *db, const char *sqlFormat, sqlite_callback xCallback, void *pArg, char **errmsg, va_list ap ) argument
|
H A D | test1.c | 120 static int exec_printf_cb(void *pArg, int argc, char **argv, char **name){ argument 121 Tcl_DString *str = (Tcl_DString*)pArg; 686 ** The pArg argument is really a pointer to a TCL interpreter. The 691 static int rememberDataTypes(void *pArg, int nCol, char **argv, char **colv){ argument 693 Tcl_Interp *interp = (Tcl_Interp*)pArg;
|
H A D | test4.c | 66 static void *thread_main(void *pArg){ argument 67 Thread *p = (Thread*)pArg;
|
H A D | tclsqlite.c | 411 void *pArg, 422 SqliteDb *pDb = (SqliteDb*)pArg; 410 auth_callback( void *pArg, int code, const char *zArg1, const char *zArg2, const char *zArg3, const char *zArg4 ) argument
|
H A D | vdbe.c | 1100 Mem *pArg; local 1105 pArg = &pTos[1-n]; 1107 for(i=0; i<n; i++, pArg++){ 1108 if( pArg->flags & MEM_Null ){ 1111 Stringify(pArg); 1112 azArgv[i] = pArg->z;
|
/osnet-11/usr/src/lib/libsqlite/test/ |
H A D | threadtest1.c | 199 static void *worker_bee(void *pArg){ argument 200 const char *zFilename = (char*)pArg;
|
/osnet-11/usr/src/lib/pkcs11/pkcs11_tpm/common/ |
H A D | api_interface.c | 1588 CK_C_INITIALIZE_ARGS *pArg; local 1611 pArg = (CK_C_INITIALIZE_ARGS *)pVoid; 1617 supplied_ok = (pArg->CreateMutex == NULL && 1618 pArg->DestroyMutex == NULL && 1619 pArg->LockMutex == NULL && 1620 pArg->UnlockMutex == NULL) || 1621 (pArg->CreateMutex != NULL && 1622 pArg->DestroyMutex != NULL && 1623 pArg->LockMutex != NULL && 1624 pArg [all...] |
Completed in 62 milliseconds