Searched refs:pArg (Results 1 - 25 of 52) sorted by relevance

123

/external/chromium_org/third_party/sqlite/src/src/
H A Dnotify.c151 void *pArg
169 xNotify(&pArg, 1);
179 db->pUnlockArg = pArg;
H A Dlegacy.c26 ** the xCallback() function is called. pArg becomes the first
34 void *pArg, /* First argument to xCallback() */
99 if( xCallback(pArg, nCol, azVals, azCols) ){
30 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument
H A Dmain.c934 rc = p->xFunc(p->pArg, p->nBusy);
950 void *pArg
954 db->busyHandler.pArg = pArg;
970 void *pArg
976 db->pProgressArg = pArg;
1135 FuncDestructor *pArg = 0; local
1138 pArg = (FuncDestructor *)sqlite3DbMallocZero(db, sizeof(FuncDestructor));
1139 if( !pArg ){
1143 pArg
1222 sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg) argument
2413 sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg) argument
[all...]
H A Dtest_init.c109 static int wrPCacheInit(void *pArg){ argument
114 rc = wrapped.pcache.xInit(wrapped.pcache.pArg);
121 static void wrPCacheShutdown(void *pArg){ argument
122 wrapped.pcache.xShutdown(wrapped.pcache.pArg);
H A Dmalloc.c96 void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
97 void *pArg,
103 mem0.alarmArg = pArg;
117 void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
118 void *pArg,
121 return sqlite3MemoryAlarm(xCallback, pArg, iThreshold);
244 void *pArg; local
248 pArg = mem0.alarmArg;
251 xCallback(pArg, nowUsed, nByte);
254 mem0.alarmArg = pArg;
95 sqlite3MemoryAlarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument
116 sqlite3_memory_alarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument
[all...]
H A Dtest_quota.c77 void *pArg /* Client data */
79 void *pArg; /* Third argument to the xCallback() */ member in struct:quotaGroup
80 void (*xDestroy)(void*); /* Optional destructor for pArg */
175 if( pGroup->xDestroy ) pGroup->xDestroy(pGroup->pArg);
417 pGroup->pArg);
505 static int quotaFileControl(sqlite3_file *pConn, int op, void *pArg){ argument
507 return pSubOpen->pMethods->xFileControl(pSubOpen, op, pArg);
647 ** merely updates the iLimit, xCallback, and pArg values for that quota
669 void *pArg /* Client data */
671 void *pArg, /* clien
662 sqlite3_quota_set( const char *zPattern, sqlite3_int64 iLimit, void (*xCallback)( const char *zFilename, sqlite3_int64 *piLimit, sqlite3_int64 iSize, void *pArg ), void *pArg, void (*xDestroy)(void*) ) argument
[all...]
H A Dauth.c73 void *pArg
77 db->pAuthArg = pArg;
H A Dtable.c44 static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){ argument
45 TabResult *p = (TabResult*)pArg; /* Result accumulator */
H A Dtest_pcache.c53 static int testpcacheInit(void *pArg){ argument
54 assert( pArg==(void*)&testpcacheGlobal );
67 static void testpcacheShutdown(void *pArg){ argument
68 assert( pArg==(void*)&testpcacheGlobal );
H A Dtest_devsym.c50 static int devsymFileControl(sqlite3_file*, int op, void *pArg);
216 static int devsymFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
218 return sqlite3OsFileControl(p->pReal, op, pArg);
H A Dtest_multiplex.c750 static int multiplexFileControl(sqlite3_file *pConn, int op, void *pArg){ argument
759 if( pArg ) {
760 int bEnabled = *(int *)pArg;
766 if( pArg ) {
767 int nChunkSize = *(int *)pArg;
780 if( pArg ) {
781 int nMaxChunks = *(int *)pArg;
798 rc = pSubOpen->pMethods->xFileControl(pSubOpen, op, pArg);
1108 void *pArg = 0; local
1144 pArg
[all...]
H A Dvtab.c415 Token *pArg = &pParse->sArg; local
416 if( pArg->z==0 ){
417 pArg->z = p->z;
418 pArg->n = p->n;
420 assert(pArg->z < p->z);
421 pArg->n = (int)(&p->z[p->n] - pArg->z);
865 void *pArg = 0; local
892 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg);
910 pNew->pUserData = pArg;
[all...]
H A Dtest_tclvar.c164 Tcl_Obj *pArg = Tcl_NewStringObj((char*)sqlite3_value_text(argv[0]), -1); local
165 Tcl_ListObjAppendElement(0, p, pArg);
H A Dtest_vfs.c166 static int tvfsFileControl(sqlite3_file*, int op, void *pArg);
491 static int tvfsFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
493 return sqlite3OsFileControl(p->pReal, op, pArg);
800 Tcl_Obj *pArg = Tcl_NewObj(); local
801 Tcl_IncrRefCount(pArg);
802 Tcl_ListObjAppendElement(p->interp, pArg, Tcl_NewIntObj(iPage));
803 Tcl_ListObjAppendElement(p->interp, pArg, Tcl_NewIntObj(pgsz));
804 Tcl_ListObjAppendElement(p->interp, pArg, Tcl_NewIntObj(isWrite));
806 Tcl_NewStringObj(pFd->pShm->zFile, -1), pFd->pShmId, pArg
809 Tcl_DecrRefCount(pArg);
[all...]
H A Dtest_syscall.c284 void *pArg; local
289 pArg = va_arg(ap, void *);
290 return orig_fcntl(fd, cmd, pArg);
H A Dtest_onefile.c140 static int fsFileControl(sqlite3_file*, int op, void *pArg);
156 static int tmpFileControl(sqlite3_file*, int op, void *pArg);
354 static int tmpFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
562 static int fsFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
H A Dos.c93 int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ argument
94 return id->pMethods->xFileControl(id, op, pArg);
H A Dsqlite.h.in676 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
699 ** into an integer that the pArg argument points to. This capability
3919 ** ^The fourth argument, pArg, is an application data pointer that is passed
3930 ** ^The collating function callback is invoked with a copy of the pArg
3954 ** with the addition that the xDestroy callback is invoked on pArg when
3975 void *pArg,
3982 void *pArg,
3990 void *pArg,
4187 ** ^The pArg argument is passed through to the callback.
5728 ** method is passed a copy of the sqlite3_pcache_methods.pArg valu
[all...]
H A Dtest_vfstrace.c56 static int vfstraceFileControl(sqlite3_file*, int op, void *pArg);
356 static int vfstraceFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
369 *(sqlite3_int64*)pArg);
374 sqlite3_snprintf(sizeof(zBuf), zBuf, "CHUNK_SIZE,%d", *(int*)pArg);
389 rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg);
H A Dtest_journal.c146 static int jtFileControl(sqlite3_file*, int op, void *pArg);
665 static int jtFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
667 return sqlite3OsFileControl(p->pReal, op, pArg);
H A Dpcache.c150 return sqlite3GlobalConfig.pcache.xInit(sqlite3GlobalConfig.pcache.pArg);
155 sqlite3GlobalConfig.pcache.xShutdown(sqlite3GlobalConfig.pcache.pArg);
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest1.c194 static void *worker_bee(void *pArg){ argument
195 const char *zFilename = (char*)pArg;
/external/sqlite/dist/orig/
H A Dsqlite3.h735 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
762 ** into an integer that the pArg argument points to. This capability
945 ** pointed to by the pArg argument. This capability is used during testing
4500 ** ^The fourth argument, pArg, is an application data pointer that is passed
4511 ** ^The collating function callback is invoked with a copy of the pArg
4535 ** with the addition that the xDestroy callback is invoked on pArg when
4556 void *pArg,
4563 void *pArg,
4571 void *pArg,
4867 ** ^The pArg argumen
6681 void *pArg; member in struct:sqlite3_pcache_methods2
6703 void *pArg; member in struct:sqlite3_pcache_methods
[all...]
/external/sqlite/dist/
H A Dsqlite3.h735 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
762 ** into an integer that the pArg argument points to. This capability
945 ** pointed to by the pArg argument. This capability is used during testing
4500 ** ^The fourth argument, pArg, is an application data pointer that is passed
4511 ** ^The collating function callback is invoked with a copy of the pArg
4535 ** with the addition that the xDestroy callback is invoked on pArg when
4556 void *pArg,
4563 void *pArg,
4571 void *pArg,
4867 ** ^The pArg argumen
6681 void *pArg; member in struct:sqlite3_pcache_methods2
6703 void *pArg; member in struct:sqlite3_pcache_methods
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h681 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
704 ** into an integer that the pArg argument points to. This capability
3924 ** ^The fourth argument, pArg, is an application data pointer that is passed
3935 ** ^The collating function callback is invoked with a copy of the pArg
3959 ** with the addition that the xDestroy callback is invoked on pArg when
3980 void *pArg,
3987 void *pArg,
3995 void *pArg,
4192 ** ^The pArg argument is passed through to the callback.
5733 ** method is passed a copy of the sqlite3_pcache_methods.pArg valu
5848 void *pArg; member in struct:sqlite3_pcache_methods
[all...]

Completed in 2869 milliseconds

123