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

/macosx-10.10.1/Heimdal-398.1.2/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:__anon713
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);
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddomhtml.c110 char *zName; /* The name of this entity reference. ex: "amp" */ member in struct:Er
112 Er *pNext; /* Next entity with the same hash on zName */
157 const char *zName
163 while( (c=*zName)!=0 ){
165 zName++;
551 h = ErHash(er_sequences[i].zName);
662 while (p && strcmp(p->zName,&z[from+1])!=0 ) {
H A Dxmlsimple.c118 char *zName; /* The name of this entity reference. ex: "amp" */ member in struct:Er
120 Er *pNext; /* Next entity with the same hash on zName */
165 const char *zName
171 while( (c=*zName)!=0 ){
173 zName++;
215 h = ErHash(er_sequences[i].zName);
337 while (p && strcmp(p->zName,&z[from+1])!=0 ) {

Completed in 261 milliseconds