Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h1472 const char *zName; /* Name of this virtual file system */ member
1474 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*,
1476 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1477 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1478 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1496 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1497 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1498 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
4782 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
6347 const char *zName,
[all …]
H A Dsqlite3.c1785 const char *zName; /* Name of this virtual file system */ member
1787 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*,
1789 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1790 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1791 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1809 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1810 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1811 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
5095 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
6660 const char *zName,
[all …]
H A Dshell.c1978 static char quoteChar(const char *zName){ in quoteChar() argument
1980 if( zName==0 ) return '"'; in quoteChar()
1981 if( !isalpha((unsigned char)zName[0]) && zName[0]!='_' ) return '"'; in quoteChar()
1982 for(i=0; zName[i]; i++){ in quoteChar()
1983 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ) return '"'; in quoteChar()
1985 return sqlite3_keyword_check(zName, i) ? '"' : 0; in quoteChar()
1995 const char *zName /* The name of the virtual table */ in shellFakeSchema() argument
2005 zSchema ? zSchema : "main", zName); in shellFakeSchema()
2016 cQuote = quoteChar(zName); in shellFakeSchema()
2017 appendText(&s, zName, cQuote); in shellFakeSchema()
[all …]
H A Dsqlite3ext.h41 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c136 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 …]