Searched refs:zName (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h831 ** The zName field holds the name of the VFS module. The name must
963 const char *zName; /* Name of this virtual file system */ member in struct:sqlite3_vfs
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);
[all...]
H A Dsqlite3.c1384 ** The zName field holds the name of the VFS module. The name must
1516 const char *zName; /* Name of this virtual file system */ member in struct:sqlite3_vfs
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);
9309 char *zName; /* Name of this database */ member in struct:Db
9634 char *zName; /* SQL name of the function. */ member in struct:FuncDef
9714 char *zName; /* Savepoint name (nul-terminated) */ member in struct:Savepoint
9735 const char *zName; /* Name passed to create_module() */ member in struct:Module
9745 char *zName; /* Name of this column */ member in struct:Column
9780 char *zName; /* Name of the collating sequence, UTF-8 encoded */ member in struct:CollSeq
9921 char *zName; /* Name of the table or view */ member in struct:Table
10123 char *zName; /* Name of this index */ member in struct:Index
10409 char *zName; /* Token associated with this expression */ member in struct:ExprList::ExprList_item
10446 char *zName; /* Name of the identifier */ member in struct:IdList::IdList_item
10491 char *zName; /* Name of the table */ member in struct:SrcList::SrcList_item
10959 char *zName; /* The name of the trigger */ member in struct:Trigger
23905 os2Open( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument
24895 const char *zName; /* Name of the sytem call */ member in struct:unix_syscall
24998 unixSetSystemCall( sqlite3_vfs *pNotUsed, const char *zName, sqlite3_syscall_ptr pNewFunc ) argument
25060 unixNextSystemCall(sqlite3_vfs *p, const char *zName) argument
29549 const char *zName = zPath; local
32326 WCHAR *zName = utf8ToUnicode(zFilename); local
34007 winOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument
45122 static char zName[15]; local
45123 sqlite3_snprintf(sizeof(zName), zName, "READ-LOCK[%d]", local
60008 sqlite3VdbeSetColName( Vdbe *p, int idx, int var, const char *zName, void (*xDel)(void*) ) argument
62098 const char *zName = context->pFunc->zName; local
62741 sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName) argument
62756 sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName) argument
63797 char *zName; /* Name of savepoint */ member in struct:vdbeExecUnion::OP_Savepoint_stack_vars
71356 sqlite3JournalOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pJfd, int flags, int nBuf ) argument
77109 reloadTableSchema(Parse *pParse, Table *pTab, const char *zName) argument
77158 isSystemTable(Parse *pParse, const char *zName) argument
77178 char *zName = 0; /* NULL-terminated version of pName */ local
77646 const char *zName; member in struct:__anon6087
78397 const char *zName; local
78581 const char *zName = (const char *)sqlite3_value_text(argv[0]); local
78597 sqlite3_snprintf(sizeof(zErr),zErr, "no such database: %s", zName); local
78601 sqlite3_snprintf(sizeof(zErr),zErr, "cannot detach database %s", zName); local
78610 sqlite3_snprintf(sizeof(zErr),zErr, "database %s is locked", zName); local
79181 const char *zName; /* Name of the table */ member in struct:TableLock
79403 sqlite3FindTable(sqlite3 *db, const char *zName, const char *zDatabase) argument
79431 sqlite3LocateTable( Parse *pParse, int isView, const char *zName, const char *zDbase ) argument
79470 sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb) argument
79656 char *zName = pIndex->zName; local
79718 char *zName; local
79748 sqlite3FindDbName(sqlite3 *db, const char *zName) argument
79771 char *zName; /* Name we are searching for */ local
79831 sqlite3CheckObjectName(Parse *pParse, const char *zName) argument
79867 char *zName = 0; /* The name of the new table */ local
80406 sqlite3LocateCollSeq(Parse *pParse, const char *zName) argument
80782 const char *zName = (const char *)pParse->sNameToken.z; local
81594 char *zName = 0; /* Name of the index */ local
82243 sqlite3IdListIndex(IdList *pList, const char *zName) argument
82595 char *zName = sqlite3NameFromToken(pParse->db, pName); local
82962 callCollNeeded(sqlite3 *db, int enc, const char *zName) argument
83060 const char *zName = pColl->zName; local
83088 findCollSeqEntry( sqlite3 *db, const char *zName, int create ) argument
83141 sqlite3FindCollSeq( sqlite3 *db, u8 enc, const char *zName, int create ) argument
83264 sqlite3FindFunction( sqlite3 *db, const char *zName, int nName, int nArg, u8 enc, int createFlag ) argument
85493 setLikeOptFlag(sqlite3 *db, const char *zName, u8 flagVal) argument
90127 const char *zName; /* Name of the pragma */ member in struct:sPragmaType
90209 const char *zName; local
91208 char *zName; member in struct:EncName
92696 char *zName; /* Name of column in the right table */ local
92735 char *zName; /* Name of the term in the USING clause */ local
93541 char *zName = pEList->a[i].zName; local
93563 char *zName = 0; local
93602 char *zName; /* Column name */ local
95679 char *zName = pTab->aCol[j].zName; local
97228 char *zName = 0; /* Name of the trigger */ local
97411 char *zName; /* Name of trigger */ local
97627 const char *zName; local
97734 sqlite3UnlinkAndDeleteTrigger(sqlite3 *db, int iDb, const char *zName) argument
99311 createModule( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
99353 sqlite3_create_module( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux ) argument
99365 sqlite3_create_module_v2( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
99676 const char *zName = pTab->zName; local
111355 sqlite3_overload_function( sqlite3 *db, const char *zName, int nArg ) argument
111771 createCollation( sqlite3* db, const char *zName, u8 enc, u8 collType, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDel)(void*) ) argument
112499 sqlite3_create_collation( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ) argument
112518 sqlite3_create_collation_v2( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDel)(void*) ) argument
112539 sqlite3_create_collation16( sqlite3* db, const void *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ) argument
114181 const char *zName; /* virtual table name */ member in struct:Fts3Table
117250 fts3FindFunctionMethod( sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg ) argument
117258 const char *zName; member in struct:Overloaded
120327 queryTestTokenizer( sqlite3 *db, const char *zName, const sqlite3_tokenizer_module **pp ) argument
121593 const unsigned char *zName; local
121781 const char *zName; local
121858 registerTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module *p ) argument
121880 queryTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module **pp ) argument
127180 char *zName; /* Name of r-tree table */ member in struct:Rtree
130515 icuFunctionError( sqlite3_context *pCtx, const char *zName, UErrorCode e ) argument
130730 const char *zName; /* SQL Collation sequence name (eg. "japanese") */ local
130763 const char *zName; /* Function name */ member in struct:IcuScalar
[all...]
H A Dsqlite3ext.h43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.h1237 ** The zName field holds the name of the VFS module. The name must
1375 const char *zName; /* Name of this virtual file system */ member in struct:sqlite3_vfs
1377 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
1379 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
1380 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1381 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1399 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1400 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
1401 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
4491 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
[all...]
H A Dshell.c869 ** Attempt to determine if identifier zName needs to be quoted, either
876 static char quoteChar(const char *zName){ argument
878 if( !isalpha((unsigned char)zName[0]) && zName[0]!='_' ) return '"';
879 for(i=0; zName[i]; i++){
880 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ) return '"';
882 return sqlite3_keyword_check(zName, i) ? '"' : 0;
887 ** of the view, virtual table, or table valued function zSchema.zName.
892 const char *zName /* Th
942 const char *zName = (const char*)sqlite3_value_text(apVal[0]); local
987 const char *zName = (const char*)sqlite3_value_text(apVal[2]); local
2252 readFileContents(sqlite3_context *ctx, const char *zName) argument
2299 const char *zName; local
4133 apndOpen( sqlite3_vfs *pApndVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
4248 apndSetSystemCall( sqlite3_vfs *pVfs, const char *zName, sqlite3_syscall_ptr pCall ) argument
4261 apndNextSystemCall(sqlite3_vfs *pVfs, const char *zName) argument
7762 zipfileFindFunction( sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg ) argument
7837 char *zName = 0; /* Path (name) of new entry */ local
8449 char *zName; member in struct:IdxColumn
8455 char *zName; /* Table name */ member in struct:IdxTable
9313 char *zName; /* Index name */ local
9712 const char *zName = (const char*)sqlite3_column_text(pSchema, 1); local
9916 const char *zName = (const char*)sqlite3_column_text(pIndexXInfo, 0); local
11203 char *zName; /* Symbolic name for this session */ member in struct:OpenSession
12583 set_table_name(ShellState *p, const char *zName) argument
14346 readFile(const char *zName, int *pnByte) argument
14424 deduceDatabaseType(const char *zName, int dfltZip) argument
14589 const char *zName = (const char*)sqlite3_value_text(argv[0]); local
15392 const unsigned char *zName; local
15554 static const struct { const char *zName; int ofst; } aField[] = { member in struct:__anon6
15568 static const struct { const char *zName; const char *zSql; } aQuery[] = { member in struct:__anon7
16981 recoverNewTable( int *pRc, const char *zName, const char *zSql, int bIntkey, int nCol ) argument
17125 const char *zName = 0; local
17513 const char *zName = (const char*)sqlite3_column_text(pStmt, 1); local
17810 const char *zName; member in struct:DbConfigChoices
19292 const char *zName = 0; local
19597 char *zName; local
[all...]
H A Dsqlite3.c2300 ** The zName field holds the name of the VFS module. The name must
2438 const char *zName; /* Name of this virtual file system */ member in struct:sqlite3_vfs
2440 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
2442 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
2443 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
2444 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
2462 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
2463 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
2464 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
5554 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
17257 const char *zName; /* SQL name of the function. */ member in struct:FuncDef
17446 char *zName; /* Savepoint name (nul-terminated) */ member in struct:Savepoint
17468 const char *zName; /* Name passed to create_module() */ member in struct:Module
17493 char *zName; /* Name of this column, \\000, then the type */ member in struct:Column
17532 char *zName; /* Name of the collating sequence, UTF-8 encoded */ member in struct:CollSeq
17654 char *zName; /* Name of the table or view */ member in struct:Table
17952 char *zName; /* Name of this index */ member in struct:Index
18398 char *zName; /* Name of the identifier */ member in struct:IdList::IdList_item
18411 char *zName; /* Name of the table */ member in struct:SrcItem
19086 char *zName; /* The name of the trigger */ member in struct:Trigger
19376 char *zName; /* Name of this CTE */ member in struct:Cte
19457 char *zName; /* Name of window (may be NULL) */ member in struct:Window
21343 char *zName; /* Name of table or index */ member in struct:ScanStatus
22612 char *zName; /* Name of the transformation */ member in struct:__anon28
30496 char *zName = pList->a[i].zEName; local
33125 sqlite3VListAdd( sqlite3 *db, VList *pIn, const char *zName, int nName, int iVal ) argument
33179 sqlite3VListNameToNum(VList *pIn, const char *zName, int nName) argument
34246 const char *zName; /* Name of the system call */ member in struct:unix_syscall
34433 unixSetSystemCall( sqlite3_vfs *pNotUsed, const char *zName, sqlite3_syscall_ptr pNewFunc ) argument
34495 unixNextSystemCall(sqlite3_vfs *p, const char *zName) argument
39911 const char *zName = zPath; local
42614 const char *zName; /* Name of the system call */ member in struct:win_syscall
43274 winSetSystemCall( sqlite3_vfs *pNotUsed, const char *zName, sqlite3_syscall_ptr pNewFunc ) argument
43336 winNextSystemCall(sqlite3_vfs *p, const char *zName) argument
44354 LPWSTR zName; local
47094 winOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument
48595 memdbOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
57171 sqlite3_database_file_object(const char *zName) argument
60701 static char zName[15]; local
60702 sqlite3_snprintf(sizeof(zName), zName, "READ-LOCK[%d]", local
80981 sqlite3VdbeSetColName( Vdbe *p, int idx, int var, const char *zName, void (*xDel)(void*) ) argument
85230 sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName) argument
85234 sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName) argument
89199 char *zName; /* Name of savepoint */ local
97556 const char *zName; /* tables_used.name */ member in struct:bytecodevtab_cursor
98289 sqlite3JournalOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pJfd, int flags, int nSpill ) argument
106877 char *zName = 0; /* NULL-terminated version of pName */ local
107779 char *zName = pEList->a[i].zEName; local
107804 char *zName = pIdList->a[i].zName; local
108941 const char *zName; member in struct:__anon36
110462 findIndexOrPrimaryKey( sqlite3 *db, const char *zName, const char *zDb ) argument
110765 sqlite3DbIsNamed(sqlite3 *db, int iDb, const char *zName) argument
110795 const char *zName; local
110985 const char *zName = (const char *)sqlite3_value_text(argv[0]); local
111002 sqlite3_snprintf(sizeof(zErr),zErr, "no such database: %s", zName); local
111006 sqlite3_snprintf(sizeof(zErr),zErr, "cannot detach database %s", zName); local
111012 sqlite3_snprintf(sizeof(zErr),zErr, "database %s is locked", zName); local
111919 sqlite3FindTable(sqlite3 *db, const char *zName, const char *zDatabase) argument
111997 sqlite3LocateTable( Parse *pParse, u32 flags, const char *zName, const char *zDbase ) argument
112085 sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb) argument
112294 char *zName = pIndex->zName; local
112363 char *zName; local
112392 sqlite3FindDbName(sqlite3 *db, const char *zName) argument
112414 char *zName; /* Name we are searching for */ local
112492 sqlite3CheckObjectName( Parse *pParse, const char *zName, const char *zType, const char *zTblName ) argument
112654 char *zName = 0; /* The name of the new table */ local
113885 sqlite3IsShadowTableOf(sqlite3 *db, Table *pTab, const char *zName) argument
113909 sqlite3ShadowTableName(sqlite3 *db, const char *zName) argument
115192 char *zName = 0; /* Name of the index */ local
115981 sqlite3IdListIndex(IdList *pList, const char *zName) argument
116403 char *zName = sqlite3NameFromToken(pParse->db, pName); local
116863 char *zName; local
116938 callCollNeeded(sqlite3 *db, int enc, const char *zName) argument
116996 const char *zName = pColl->zName; local
117022 findCollSeqEntry( sqlite3 *db, const char *zName, int create ) argument
117074 sqlite3FindCollSeq( sqlite3 *db, u8 enc, const char *zName, int create ) argument
117170 sqlite3LocateCollSeq(Parse *pParse, const char *zName) argument
117272 const char *zName = aDef[i].zName; local
117310 sqlite3FindFunction( sqlite3 *db, const char *zName, int nArg, u8 enc, u8 createFlag ) argument
117645 const char *zName = pTab->aCol[pPk->aiColumn[0]].zName; local
123933 char *zName = pCheck->a[i].zEName; local
127054 const char *const zName; /* Name of pragma */ member in struct:PragmaName
127788 const char *zName; local
127829 pragmaLocate(const char *zName) argument
129376 char *zName; member in struct:EncName
130127 sqlite3PragmaVtabRegister(sqlite3 *db, const char *zName) argument
131626 char *zName; /* Name of column in the right table */ local
131666 char *zName; /* Name of the term in the USING clause */ local
133074 char *zName = pEList->a[i].zEName; local
133089 char *zName = 0; local
133137 char *zName; /* Column name */ local
136061 const char *zName = pItem->zName; local
136542 char *zName = pTab->aCol[j].zName; local
138630 char *zName = 0; /* Name of the trigger */ local
138829 char *zName; /* Name of trigger */ local
139115 const char *zName; local
139199 sqlite3UnlinkAndDeleteTrigger(sqlite3 *db, int iDb, const char *zName) argument
139328 char *zName = sqlite3DbStrDup(db, pStep->zTarget); local
142013 sqlite3VtabCreateModule( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
142061 createModule( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
142082 sqlite3_create_module( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux ) argument
142097 sqlite3_create_module_v2( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
142482 const char *zName = pTab->zName; local
150153 const char *zName; local
152382 static char zName[65]; local
154568 windowFind(Parse *pParse, Window *pList, const char *zName) argument
162949 sqlite3_keyword_check(const char *zName, int nName) argument
165519 const char *zName = 0; local
166111 const char *zName = (const char*)sqlite3_user_data(context); local
166132 sqlite3_overload_function( sqlite3 *db, const char *zName, int nArg ) argument
166682 createCollation( sqlite3* db, const char *zName, u8 enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDel)(void*) ) argument
167533 sqlite3_create_collation( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ) argument
167546 sqlite3_create_collation_v2( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDel)(void*) ) argument
167571 sqlite3_create_collation16( sqlite3* db, const void *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ) argument
168349 databaseName(const char *zName) argument
169878 const char *zName; /* virtual table name */ member in struct:Fts3Table
173830 fts3FindFunctionMethod( sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg ) argument
173838 const char *zName; member in struct:Overloaded
173969 fts3ShadowName(const char *zName) argument
179077 const unsigned char *zName; local
179279 const char *zName; local
179359 registerTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module *p ) argument
179382 queryTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module **pp ) argument
179843 fts3tokQueryTokenizer( Fts3Hash *pHash, const char *zName, const sqlite3_tokenizer_module **pp, char **pzErr ) argument
191105 const char *zName; member in struct:__anon53
191133 const char *zName; member in struct:__anon54
191146 const char *zName; member in struct:__anon55
191340 char *zName; /* Name of r-tree table */ member in struct:Rtree
194642 rtreeShadowName(const char *zName) argument
197279 geopolyFindFunction( sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg ) argument
197333 const char *zName; member in struct:__anon57
197351 const char *zName; member in struct:__anon58
197615 icuFunctionError( sqlite3_context *pCtx, const char *zName, UErrorCode e ) argument
198027 const char *zName; /* SQL Collation sequence name (eg. "japanese") */ local
198062 const char *zName; /* Function name */ member in struct:IcuScalar
200338 const char *zName = (const char*)sqlite3_column_name(pStmt, i); local
200371 const char *zName = (const char*)sqlite3_column_text(pStmt, 1); local
201629 rbuOpenDbhandle( sqlite3rbu *p, const char *zName, int bUseVfs ) argument
202292 assertColumnName(sqlite3_stmt *pStmt, int iCol, const char *zName) argument
203933 rbuVfsOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
204189 sqlite3rbu_destroy_vfs(const char *zName) argument
204203 sqlite3rbu_create_vfs(const char *zName, const char *zParent) argument
204420 char *zName; /* Value of 'name' column */ member in struct:StatCursor
204995 const char *zName = 0; /* Only provide analysis of this table */ local
205693 char *zName; /* Local name of table */ member in struct:SessionTable
206637 const unsigned char *zName = sqlite3_column_text(pStmt, 1); local
206895 sessionFindTable( sqlite3_session *pSession, const char *zName, SessionTable **ppTab ) argument
206931 xPreUpdate( void *pCtx, sqlite3 *db, int op, char const *zDb, char const *zName, sqlite3_int64 iKey1, sqlite3_int64 iKey2 ) argument
207996 const char *zName = pTab->zName; local
211945 char *zName; /* Name of FTS index */ member in struct:Fts5Config
215431 const char *zName; member in struct:Fts5Enum
226624 char *zName; /* Name of tokenizer */ member in struct:Fts5TokenizerModule
227600 fts5FindAuxiliary(Fts5FullTable *pTab, const char *zName) argument
229037 fts5FindFunctionMethod( sqlite3_vtab *pVtab, int nUnused, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg ) argument
229113 fts5CreateAux( fts5_api *pApi, const char *zName, void *pUserData, fts5_extension_function xFunc, void(*xDestroy)(void*) ) argument
229152 fts5CreateTokenizer( fts5_api *pApi, const char *zName, void *pUserData, fts5_tokenizer *pTokenizer, void(*xDestroy)(void*) ) argument
229208 fts5FindTokenizer( fts5_api *pApi, const char *zName, void **ppUserData, fts5_tokenizer *pTokenizer ) argument
229316 fts5ShadowName(const char *zName) argument
229663 sqlite3Fts5StorageRename(Fts5Storage *pStorage, const char *zName) argument
231995 const char *zName; member in struct:BuiltinTokenizer
[all...]
H A Dsqlite3ext.h41 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
/freebsd-11-stable/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c117 char *zName; /* Name of this function */ member in struct:SqlFunc
476 static SqlFunc *findSqlFunc(SqliteDb *pDb, const char *zName){ argument
478 int nName = strlen30(zName);
480 pNew->zName = (char*)&pNew[1];
481 memcpy(pNew->zName, zName, nName+1);
483 if( sqlite3_stricmp(p->zName, pNew->zName)==0 ){
886 const char *zName
891 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj(zName,
2236 char *zName; local
2346 const char *zName; member in struct:DbConfigChoices
2835 char *zName; local
[all...]

Completed in 1182 milliseconds