| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | expr.c | 770 Expr *pArg = pList->a[i].pExpr; local 771 if( sqliteExprResolveIds(pParse, pSrcList, pEList, pArg) ){
|
| H A D | func.c | 626 void *pArg; local 628 case 0: pArg = 0; break; 629 case 1: pArg = db; break; 630 case 2: pArg = (void*)(-1); break; 633 aFuncs[i].nArg, aFuncs[i].xFunc, pArg); 639 void *pArg; local 641 case 0: pArg = 0; break; 642 case 1: pArg = db; break; 643 case 2: pArg = (void*)(-1); break; 646 aAggs[i].nArg, aAggs[i].xStep, aAggs[i].xFinalize, pArg); [all...] |
| H A D | main.c | 619 ** the xCallback() function is called. pArg becomes the first 627 void *pArg, /* First argument to xCallback() */ 656 if( xCallback!=0 && xCallback(pArg, nArg, azArg, azCol) ){ 664 xCallback(pArg, nArg, azArg, azCol); 909 void *pArg 912 db->pBusyArg = pArg; 925 void *pArg 930 db->pProgressArg = pArg; 1052 ** Register a trace function. The pArg from the previously registered trace 1059 void *sqlite_trace(sqlite *db, void (*xTrace)(void*,const char*), void *pArg){ argument 623 sqlite_exec( sqlite *db, const char *zSql, sqlite_callback xCallback, void *pArg, char **pzErrMsg ) argument [all...] |
| H A D | printf.c | 797 void *pArg, /* 1st argument to callback function */ 805 rc = sqlite_exec_vprintf(db, sqlFormat, xCallback, pArg, errmsg, ap); 813 void *pArg, /* 1st argument to callback function */ 821 rc = sqlite_exec(db, zSql, xCallback, pArg, errmsg); 793 sqlite_exec_printf( sqlite *db, const char *sqlFormat, sqlite_callback xCallback, void *pArg, char **errmsg, ... ) argument 809 sqlite_exec_vprintf( sqlite *db, const char *sqlFormat, sqlite_callback xCallback, void *pArg, char **errmsg, va_list ap ) argument
|
| H A D | table.c | 43 static int sqlite_get_table_cb(void *pArg, int nCol, char **argv, char **colv){ argument 44 TabResult *p = (TabResult*)pArg;
|
| H A D | vacuum.c | 109 static int vacuumCallback2(void *pArg, int argc, char **argv, char **NotUsed){ argument 110 vacuumStruct *p = (vacuumStruct*)pArg; 141 static int vacuumCallback1(void *pArg, int argc, char **argv, char **NotUsed){ argument 142 vacuumStruct *p = (vacuumStruct*)pArg;
|
| H A D | vdbe.c | 1089 Mem *pArg; local 1094 pArg = &pTos[1-n]; 1096 for(i=0; i<n; i++, pArg++){ 1097 if( pArg->flags & MEM_Null ){ 1100 Stringify(pArg); 1101 azArgv[i] = pArg->z;
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 1235 int (*xFileControl)(sqlite3_file*, int op, void *pArg); 1258 ** into an integer that the pArg argument points to. This capability 4629 ** ^The fourth argument, pArg, is an application data pointer that is passed 4640 ** ^The collating function callback is invoked with a copy of the pArg 4664 ** with the addition that the xDestroy callback is invoked on pArg when 4685 void *pArg, 4692 void *pArg, 4700 void *pArg, 4897 ** ^The pArg argument is passed through to the callback. 6451 ** method is passed a copy of the sqlite3_pcache_methods.pArg valu 6574 void *pArg; member in struct:sqlite3_pcache_methods 7755 void *pArg; /* First arg to busy callback */ member in struct:BusyHandler 14341 sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg) argument 18104 sqlite3MemoryAlarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument 18125 sqlite3_memory_alarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument 18253 void *pArg; local 22897 os2FileControl(sqlite3_file *id, int op, void *pArg) argument 27914 unixFileControl(sqlite3_file *id, int op, void *pArg) argument 30901 proxyFileControl(sqlite3_file *id, int op, void *pArg) argument 32700 winFileControl(sqlite3_file *id, int op, void *pArg) argument 49182 btreeInvokeBusyHandler(void *pArg) argument 62954 Mem *pArg; member in struct:vdbeExecUnion::OP_Function_stack_vars 83539 Mem *pArg = (Mem *)argv[0]; local 86891 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument 94981 sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv) argument 97691 Token *pArg = &pParse->sArg; local 98204 void *pArg = 0; local 109062 FuncDestructor *pArg = 0; local 109149 sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg) argument 110575 sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg) argument [all...] |
| H A D | sqlite3.h | 688 int (*xFileControl)(sqlite3_file*, int op, void *pArg); 711 ** into an integer that the pArg argument points to. This capability 4082 ** ^The fourth argument, pArg, is an application data pointer that is passed 4093 ** ^The collating function callback is invoked with a copy of the pArg 4117 ** with the addition that the xDestroy callback is invoked on pArg when 4138 void *pArg, 4145 void *pArg, 4153 void *pArg, 4350 ** ^The pArg argument is passed through to the callback. 5904 ** method is passed a copy of the sqlite3_pcache_methods.pArg valu 6027 void *pArg; member in struct:sqlite3_pcache_methods [all...] |