Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h1494 const char *zName; /* Name of this virtual file system */ member
1496 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*,
1498 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1499 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1500 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1518 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1519 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1520 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
4977 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
6552 const char *zName,
[all …]
H A Dshell.c1530 static char quoteChar(const char *zName){ in quoteChar() argument
1532 if( zName==0 ) return '"'; in quoteChar()
1533 if( !IsAlpha(zName[0]) && zName[0]!='_' ) return '"'; in quoteChar()
1534 for(i=0; zName[i]; i++){ in quoteChar()
1535 if( !IsAlnum(zName[i]) && zName[i]!='_' ) return '"'; in quoteChar()
1537 return sqlite3_keyword_check(zName, i) ? '"' : 0; in quoteChar()
1547 const char *zName /* The name of the virtual table */ in shellFakeSchema() argument
1557 zSchema ? zSchema : "main", zName); in shellFakeSchema()
1568 cQuote = quoteChar(zName); in shellFakeSchema()
1569 appendText(&s, zName, cQuote); in shellFakeSchema()
[all …]
H A Dsqlite3.c1813 const char *zName; /* Name of this virtual file system */ member
1815 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*,
1817 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1818 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1819 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1837 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1838 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1839 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
5296 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
6871 const char *zName,
[all …]
H A Dsqlite3ext.h41 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c147 char *zName; /* Name of this function */ member
540 static SqlFunc *findSqlFunc(SqliteDb *pDb, const char *zName){ in findSqlFunc() argument
542 int nName = strlen30(zName); in findSqlFunc()
544 pNew->zName = (char*)&pNew[1]; in findSqlFunc()
545 memcpy(pNew->zName, zName, nName+1); in findSqlFunc()
547 if( sqlite3_stricmp(p->zName, pNew->zName)==0 ){ in findSqlFunc()
970 const char *zName in tclCollateNeeded() argument
975 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj(zName, -1)); in tclCollateNeeded()
2328 char *zName; in DbObjCmd() local
2335 zName = Tcl_GetStringFromObj(objv[2], 0); in DbObjCmd()
[all …]