Searched defs:zName (Results 1 - 4 of 4) sorted by relevance

/external/sqlite/dist/
H A Dshell.c846 static void set_table_name(struct callback_data *p, const char *zName){ argument
855 if( zName==0 ) return;
856 needQuote = !isalpha((unsigned char)*zName) && *zName!='_';
857 for(i=n=0; zName[i]; i++, n++){
858 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ){
860 if( zName[i]=='\'' ) n++;
871 for(i=0; zName[i]; i++){
872 z[n++] = zName[
[all...]
H A Dsqlite3.h774 ** The zName field holds the name of the VFS module. The name must
891 const char *zName; /* Name of this virtual file system */ member in struct:sqlite3_vfs
893 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
895 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
896 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
897 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
2873 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
3894 const char *zName,
3901 const char *zName,
3909 const void *zName,
[all...]
H A Dsqlite3.c1321 ** The zName field holds the name of the VFS module. The name must
1438 const char *zName; /* Name of this virtual file system */ member in struct:sqlite3_vfs
1440 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
1442 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1443 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1444 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
3420 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
4441 const char *zName,
4448 const char *zName,
4456 const void *zName,
8809 char *zName; /* Name of this database */ member in struct:Db
9113 char *zName; /* SQL name of the function. */ member in struct:FuncDef
9193 char *zName; /* Savepoint name (nul-terminated) */ member in struct:Savepoint
9214 const char *zName; /* Name passed to create_module() */ member in struct:Module
9224 char *zName; /* Name of this column */ member in struct:Column
9259 char *zName; /* Name of the collating sequence, UTF-8 encoded */ member in struct:CollSeq
9398 char *zName; /* Name of the table or view */ member in struct:Table
9600 char *zName; /* Name of this index */ member in struct:Index
9884 char *zName; /* Token associated with this expression */ member in struct:ExprList::ExprList_item
9921 char *zName; /* Name of the identifier */ member in struct:IdList::IdList_item
9966 char *zName; /* Name of the table */ member in struct:SrcList::SrcList_item
10419 char *zName; /* The name of the trigger */ member in struct:Trigger
22414 os2Open( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument
[all...]
/external/webkit/WebKitLibraries/WebCoreSQLite3/
H A Dsqlite3.h651 ** The zName field holds the name of the VFS module. The name must
745 const char *zName; /* Name of this virtual file system */ member in struct:sqlite3_vfs
747 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
749 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
750 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
751 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
2556 int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
3521 const char *zName,
3528 const char *zName,
3536 const void *zName,
[all...]

Completed in 103 milliseconds