Searched defs:pArg (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
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 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 Dtest4.c61 static void *thread_main(void *pArg){ argument
62 Thread *p = (Thread*)pArg;
H A Dtest7.c83 static void *client_main(void *pArg){ argument
84 Thread *p = (Thread*)pArg;
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 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_tclvar.c164 Tcl_Obj *pArg = Tcl_NewStringObj((char*)sqlite3_value_text(argv[0]), -1); local
165 Tcl_ListObjAppendElement(0, p, 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 Dos.c93 int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ argument
94 return id->pMethods->xFileControl(id, op, pArg);
H A Dtest_demovfs.c372 static int demoFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
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_thread.c253 static int xBusy(void *pArg, int nBusy){ argument
254 UNUSED_PARAMETER(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 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 Dtest_syscall.c284 void *pArg; local
289 pArg = va_arg(ap, void *);
290 return orig_fcntl(fd, cmd, pArg);
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 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 Dfunc.c1320 Mem *pArg = (Mem *)argv[0]; local
1341 cmp = sqlite3MemCompare(pBest, pArg, pColl);
1343 sqlite3VdbeMemCopy(pBest, pArg);
1346 sqlite3VdbeMemCopy(pBest, pArg);
H A Dtest6.c507 static int cfFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
508 return sqlite3OsFileControl(((CrashFile *)pFile)->pRealFile, 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 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 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...]
/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/libnfc-nxp/Linux_x86/
H A DphDal4Nfc.c701 * \param[in] pArg A custom argument that can be passed to the thread (not used)
706 int phDal4Nfc_ReaderThread(void * pArg) argument
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c938 static int asyncFileControl(sqlite3_file *id, int op, void *pArg){ argument
942 *(int*)pArg = ((AsyncFile*)id)->pData->lock.eLock;

Completed in 1694 milliseconds

12