Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h1518 const char *zName; /* Name of this virtual file system */ member
1520 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*,
1522 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1523 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1524 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1542 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1543 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1544 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
5088 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
6716 const char *zName,
[all …]
H A Dsqlite3.c1839 const char *zName; /* Name of this virtual file system */ member
1841 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*,
1843 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1844 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1845 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1863 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1864 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1865 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
5409 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
7037 const char *zName,
[all …]
H A Dshell.c1269 const char *zName = 0; in qrfEqpStats()
1286 sqlite3_stmt_scanstatus_v2(pS,i, SQLITE_SCANSTAT_NAME,f,(void*)&zName); in qrfEqpStats()
3367 static int qrf_need_quote(const char *zName){ in qrf_need_quote() argument
3369 const unsigned char *z = (const unsigned char*)zName; in qrf_need_quote()
3375 return sqlite3_keyword_check(zName, i)!=0; in qrf_need_quote()
9859 static void readFileContents(sqlite3_context *ctx, const char *zName){ in readFileContents() argument
9866 in = sqlite3_fopen(zName, "rb"); in readFileContents()
9906 const char *zName; in readfileFunc() local
9908 zName = (const char*)sqlite3_value_text(argv[0]); in readfileFunc()
9909 if( zName==0 ) return; in readfileFunc()
[all …]
H A Dsqlite3ext.h41 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c160 char *zName; /* Name of this function */ member
553 static SqlFunc *findSqlFunc(SqliteDb *pDb, const char *zName){ in findSqlFunc() argument
555 int nName = strlen30(zName); in findSqlFunc()
557 pNew->zName = (char*)&pNew[1]; in findSqlFunc()
558 memcpy(pNew->zName, zName, nName+1); in findSqlFunc()
560 if( sqlite3_stricmp(p->zName, pNew->zName)==0 ){ in findSqlFunc()
983 const char *zName in tclCollateNeeded() argument
988 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj(zName, -1)); in tclCollateNeeded()
2761 char *zName; in DbObjCmd() local
2768 zName = Tcl_GetStringFromObj(objv[2], 0); in DbObjCmd()
[all …]