Home
last modified time | relevance | path

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

/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.h963 const char *zName; /* Name of this virtual file system */ member
965 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
967 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
968 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
969 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
987 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
988 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
989 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
3133 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
4162 const char *zName,
[all …]
HDsqlite3.c1516 const char *zName; /* Name of this virtual file system */ member
1518 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
1520 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1521 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1522 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1540 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1541 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1542 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
3686 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
4715 const char *zName,
[all …]
HDsqlite3ext.h43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
/NextBSD/contrib/sqlite3/
HDsqlite3.h1184 const char *zName; /* Name of this virtual file system */ member
1186 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
1188 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1189 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1190 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1208 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1209 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1210 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
3631 SQLITE_API int SQLITE_STDCALL sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
4739 const char *zName,
[all …]
HDsqlite3.c1398 const char *zName; /* Name of this virtual file system */ member
1400 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
1402 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1403 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1404 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1422 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1423 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1424 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
3845 SQLITE_API int SQLITE_STDCALL sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
4953 const char *zName,
[all …]
HDshell.c1060 static void set_table_name(ShellState *p, const char *zName){ in set_table_name() argument
1069 if( zName==0 ) return; in set_table_name()
1070 needQuote = !isalpha((unsigned char)*zName) && *zName!='_'; in set_table_name()
1071 for(i=n=0; zName[i]; i++, n++){ in set_table_name()
1072 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ){ in set_table_name()
1074 if( zName[i]=='\'' ) n++; in set_table_name()
1085 for(i=0; zName[i]; i++){ in set_table_name()
1086 z[n++] = zName[i]; in set_table_name()
1087 if( zName[i]=='\'' ) z[n++] = '\''; in set_table_name()
1865 const char *zName; in readfileFunc() local
[all …]
HDsqlite3ext.h43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);