| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/ |
| H A D | sqlite3.d | 367 const(char)*zName; /** Name of this virtual file system */ 369 int function (sqlite3_vfs*, const char *zName, sqlite3_file*, 371 int function (sqlite3_vfs*, const char *zName, int syncDir) xDelete; 372 int function (sqlite3_vfs*, const char *zName, int flags, int *pResOut) xAccess; 373 int function (sqlite3_vfs*, const char *zName, int nOut, char *zOut) xFullPathname; 391 int function(sqlite3_vfs*, const char * zName, sqlite3_syscall_ptr) xSetSystemCall; 392 sqlite3_syscall_ptr function(sqlite3_vfs*, const char * zName) xGetSystemCall; 393 const(char)* function(sqlite3_vfs*, const char * zName) xNextSystemCall; 842 int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); 1133 const(char)*zName, [all …]
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | sqlite3.h | 1470 const char *zName; /* Name of this virtual file system */ member 1472 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, 1474 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); 1475 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); 1476 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); 1494 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1495 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); 1496 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); 4763 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); 6328 const char *zName, [all …]
|
| H A D | sqlite3.c | 1783 const char *zName; /* Name of this virtual file system */ member 1785 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, 1787 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); 1788 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); 1789 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); 1807 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1808 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); 1809 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); 5076 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); 6641 const char *zName, [all …]
|
| H A D | shell.c | 1964 static char quoteChar(const char *zName){ in quoteChar() argument 1966 if( zName==0 ) return '"'; in quoteChar() 1967 if( !isalpha((unsigned char)zName[0]) && zName[0]!='_' ) return '"'; in quoteChar() 1968 for(i=0; zName[i]; i++){ in quoteChar() 1969 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ) return '"'; in quoteChar() 1971 return sqlite3_keyword_check(zName, i) ? '"' : 0; in quoteChar() 1981 const char *zName /* The name of the virtual table */ in shellFakeSchema() argument 1991 zSchema ? zSchema : "main", zName); in shellFakeSchema() 2002 cQuote = quoteChar(zName); in shellFakeSchema() 2003 appendText(&s, zName, cQuote); in shellFakeSchema() [all …]
|
| H A D | sqlite3ext.h | 41 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
|
| /netbsd-src/external/public-domain/sqlite/dist/tea/generic/ |
| H A D | tclsqlite3.c | 136 char *zName; /* Name of this function */ member 496 static SqlFunc *findSqlFunc(SqliteDb *pDb, const char *zName){ in findSqlFunc() argument 498 int nName = strlen30(zName); in findSqlFunc() 500 pNew->zName = (char*)&pNew[1]; in findSqlFunc() 501 memcpy(pNew->zName, zName, nName+1); in findSqlFunc() 503 if( sqlite3_stricmp(p->zName, pNew->zName)==0 ){ in findSqlFunc() 926 const char *zName in tclCollateNeeded() argument 931 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj(zName, -1)); in tclCollateNeeded() 2280 char *zName; in DbObjCmd() local 2287 zName = Tcl_GetStringFromObj(objv[2], 0); in DbObjCmd() [all …]
|