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

/external/sqlite/dist/orig/
H A Dsqlite3.h742 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
771 ** into an integer that the pArg argument points to. This capability
956 ** pointed to by the pArg argument. This capability is used during testing
4661 ** ^The fourth argument, pArg, is an application data pointer that is passed
4672 ** ^The collating function callback is invoked with a copy of the pArg
4696 ** with the addition that the xDestroy callback is invoked on pArg when
4717 void *pArg,
4724 void *pArg,
4732 void *pArg,
5035 ** ^The pArg argumen
6890 void *pArg; member in struct:sqlite3_pcache_methods2
6912 void *pArg; member in struct:sqlite3_pcache_methods
[all...]
H A Dshell.c624 static void shellLog(void *pArg, int iErrCode, const char *zMsg){ argument
625 ShellState *p = (ShellState*)pArg;
817 void *pArg,
824 ShellState *p = (ShellState*)pArg;
1052 static int callback(void *pArg, int nArg, char **azArg, char **azCol){ argument
1054 return shell_callback(pArg, nArg, azArg, azCol, NULL);
1215 ShellState *pArg, /* Pointer to ShellState */
1221 if( pArg && pArg->out ){
1225 fprintf(pArg
816 shell_callback( void *pArg, int nArg, char **azArg, char **azCol, int *aiType ) argument
1213 display_stats( sqlite3 *db, ShellState *pArg, int bReset ) argument
1481 shell_exec( sqlite3 *db, const char *zSql, int (*xCallback)(void*,int,char**,char**,int*), ShellState *pArg, char **pzErrMsg ) argument
1646 dump_callback(void *pArg, int nArg, char **azArg, char **azCol) argument
2116 sql_trace_callback(void *pArg, const char *z) argument
[all...]
H A Dsqlite3.c949 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
978 ** into an integer that the pArg argument points to. This capability
1163 ** pointed to by the pArg argument. This capability is used during testing
4868 ** ^The fourth argument, pArg, is an application data pointer that is passed
4879 ** ^The collating function callback is invoked with a copy of the pArg
4903 ** with the addition that the xDestroy callback is invoked on pArg when
4924 void *pArg,
4931 void *pArg,
4939 void *pArg,
5242 ** ^The pArg argumen
7097 void *pArg; member in struct:sqlite3_pcache_methods2
7119 void *pArg; member in struct:sqlite3_pcache_methods
9198 void *pArg; /* First arg to busy callback */ member in struct:BusyHandler
16574 sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg) argument
16592 sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg) argument
20616 sqlite3MemoryAlarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument
20637 sqlite3_memory_alarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument
20769 void *pArg; local
29221 unixModeBit(unixFile *pFile, unsigned char mask, int *pArg) argument
29237 unixFileControl(sqlite3_file *id, int op, void *pArg) argument
32689 proxyFileControl(sqlite3_file *id, int op, void *pArg) argument
36418 winModeBit(winFile *pFile, unsigned char mask, int *pArg) argument
36436 winFileControl(sqlite3_file *id, int op, void *pArg) argument
47676 void *pArg = (void*)zMaster; local
54921 btreeInvokeBusyHandler(void *pArg) argument
72405 Mem *pArg; local
97932 Mem *pArg = (Mem *)argv[0]; local
101719 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument
112119 sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv) argument
115018 Token *pArg = &pParse->sArg; local
115567 void *pArg = 0; local
129637 FuncDestructor *pArg = 0; local
129740 sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg) argument
130914 void *pArg = sqlite3GlobalConfig.pSqllogArg; local
131312 sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.h742 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
771 ** into an integer that the pArg argument points to. This capability
956 ** pointed to by the pArg argument. This capability is used during testing
4661 ** ^The fourth argument, pArg, is an application data pointer that is passed
4672 ** ^The collating function callback is invoked with a copy of the pArg
4696 ** with the addition that the xDestroy callback is invoked on pArg when
4717 void *pArg,
4724 void *pArg,
4732 void *pArg,
5035 ** ^The pArg argumen
6890 void *pArg; member in struct:sqlite3_pcache_methods2
6912 void *pArg; member in struct:sqlite3_pcache_methods
[all...]
H A Dshell.c630 static void shellLog(void *pArg, int iErrCode, const char *zMsg){ argument
631 ShellState *p = (ShellState*)pArg;
823 void *pArg,
830 ShellState *p = (ShellState*)pArg;
1058 static int callback(void *pArg, int nArg, char **azArg, char **azCol){ argument
1060 return shell_callback(pArg, nArg, azArg, azCol, NULL);
1221 ShellState *pArg, /* Pointer to ShellState */
1227 if( pArg && pArg->out ){
1231 fprintf(pArg
822 shell_callback( void *pArg, int nArg, char **azArg, char **azCol, int *aiType ) argument
1219 display_stats( sqlite3 *db, ShellState *pArg, int bReset ) argument
1487 shell_exec( sqlite3 *db, const char *zSql, int (*xCallback)(void*,int,char**,char**,int*), ShellState *pArg, char **pzErrMsg ) argument
1652 dump_callback(void *pArg, int nArg, char **azArg, char **azCol) argument
2138 sql_trace_callback(void *pArg, const char *z) argument
[all...]
H A Dsqlite3.c949 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
978 ** into an integer that the pArg argument points to. This capability
1163 ** pointed to by the pArg argument. This capability is used during testing
4868 ** ^The fourth argument, pArg, is an application data pointer that is passed
4879 ** ^The collating function callback is invoked with a copy of the pArg
4903 ** with the addition that the xDestroy callback is invoked on pArg when
4924 void *pArg,
4931 void *pArg,
4939 void *pArg,
5242 ** ^The pArg argumen
7097 void *pArg; member in struct:sqlite3_pcache_methods2
7119 void *pArg; member in struct:sqlite3_pcache_methods
9198 void *pArg; /* First arg to busy callback */ member in struct:BusyHandler
16574 sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg) argument
16592 sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg) argument
20616 sqlite3MemoryAlarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument
20637 sqlite3_memory_alarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument
20769 void *pArg; local
29239 unixModeBit(unixFile *pFile, unsigned char mask, int *pArg) argument
29255 unixFileControl(sqlite3_file *id, int op, void *pArg) argument
32707 proxyFileControl(sqlite3_file *id, int op, void *pArg) argument
36436 winModeBit(winFile *pFile, unsigned char mask, int *pArg) argument
36454 winFileControl(sqlite3_file *id, int op, void *pArg) argument
47694 void *pArg = (void*)zMaster; local
54939 btreeInvokeBusyHandler(void *pArg) argument
72423 Mem *pArg; local
97950 Mem *pArg = (Mem *)argv[0]; local
101737 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument
112137 sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv) argument
115036 Token *pArg = &pParse->sArg; local
115585 void *pArg = 0; local
129655 FuncDestructor *pArg = 0; local
129758 sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg) argument
130932 void *pArg = sqlite3GlobalConfig.pSqllogArg; local
131330 sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg) argument
[all...]
/external/clang/lib/Analysis/
H A DFormatString.cpp550 case pArg: return "p";
820 case ConversionSpecifier::pArg:
H A DScanfFormatString.cpp185 case 'p': k = ConversionSpecifier::pArg; break;
360 case ConversionSpecifier::pArg:
H A DPrintfFormatString.cpp199 case 'p': k = ConversionSpecifier::pArg; break;
476 case ConversionSpecifier::pArg:
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h150 pArg, enumerator in enum:clang::analyze_format_string::ConversionSpecifier::Kind
/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

Completed in 399 milliseconds