Home
last modified time | relevance | path

Searched refs:zName (Results 1 – 7 of 7) sorted by relevance

/third_party/sqlite/include/
Dsqlite3.h1432 const char *zName; /* Name of this virtual file system */ member
1434 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
1436 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1437 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1438 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1456 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1457 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1458 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
4591 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
6004 const char *zName,
[all …]
Dsqlite3ext.h41 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
/third_party/sqlite/src/
Dshell.c908 static char quoteChar(const char *zName){ in quoteChar() argument
910 if( !isalpha((unsigned char)zName[0]) && zName[0]!='_' ) return '"'; in quoteChar()
911 for(i=0; zName[i]; i++){ in quoteChar()
912 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ) return '"'; in quoteChar()
914 return sqlite3_keyword_check(zName, i) ? '"' : 0; in quoteChar()
924 const char *zName /* The name of the virtual table */ in shellFakeSchema() argument
934 zSchema ? zSchema : "main", zName); in shellFakeSchema()
944 cQuote = quoteChar(zName); in shellFakeSchema()
945 appendText(&s, zName, cQuote); in shellFakeSchema()
974 const char *zName = (const char*)sqlite3_value_text(apVal[0]); in shellModuleSchema() local
[all …]
Dsqlite3.c1742 const char *zName; /* Name of this virtual file system */ member
1744 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
1746 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1747 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1748 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1766 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1767 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1768 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
4904 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
6317 const char *zName,
[all …]
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch79607 zSchema ? zSchema : "main", zName);
79624 - const char *zName = (const char*)sqlite3_value_text(apVal[0]);
79625 - char *zFake = shellFakeSchema(sqlite3_context_db_handle(pCtx), 0, zName);
79626 + const char *zName;
79629 + zName = (const char*)sqlite3_value_text(apVal[0]);
79630 + zFake = zName ? shellFakeSchema(sqlite3_context_db_handle(pCtx), 0, zName) : 0;
79917 -** contents of file zName. Or, leave the result unchanged (NULL)
79926 -static void readFileContents(sqlite3_context *ctx, const char *zName){
79933 - in = fopen(zName, "rb");
80011 - const char *zName;
[all …]
D0004-3.2-Beta5.patch47200 + pTrig->zName, pStep->zTarget);
48062 + pTrig->zName, pStep->zTarget);
49579 + pTrig->zName, pStep->zTarget);
D0001-cve.patch149087 pRight = sqlite3Expr(db, TK_ID, zName);
149088 zColname = zName;
149114 pRight = sqlite3Expr(db, TK_ID, zName);
149115 zColname = zName;