| H A D | sqlite3.c | 1346 ** The zName field holds the name of the VFS module. The name must 1478 const char *zName; /* Name of this virtual file system */ member in struct:sqlite3_vfs 1480 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, 1482 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); 1483 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); 1484 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); 1502 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1503 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); 1504 const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); 3654 SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); 9271 char *zName; /* Name of this database */ member in struct:Db 9595 char *zName; /* SQL name of the function. */ member in struct:FuncDef 9675 char *zName; /* Savepoint name (nul-terminated) */ member in struct:Savepoint 9696 const char *zName; /* Name passed to create_module() */ member in struct:Module 9706 char *zName; /* Name of this column */ member in struct:Column 9741 char *zName; /* Name of the collating sequence, UTF-8 encoded */ member in struct:CollSeq 9882 char *zName; /* Name of the table or view */ member in struct:Table 10084 char *zName; /* Name of this index */ member in struct:Index 10369 char *zName; /* Token associated with this expression */ member in struct:ExprList::ExprList_item 10406 char *zName; /* Name of the identifier */ member in struct:IdList::IdList_item 10451 char *zName; /* Name of the table */ member in struct:SrcList::SrcList_item 10912 char *zName; /* The name of the trigger */ member in struct:Trigger 23800 os2Open( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument 24777 const char *zName; /* Name of the sytem call */ member in struct:unix_syscall 24874 unixSetSystemCall( sqlite3_vfs *pNotUsed, const char *zName, sqlite3_syscall_ptr pNewFunc ) argument 24936 unixNextSystemCall(sqlite3_vfs *p, const char *zName) argument 29401 const char *zName = zPath; local 31887 WCHAR *zName = utf8ToUnicode(zFilename); local 33514 winOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument 44380 static char zName[15]; local 44381 sqlite3_snprintf(sizeof(zName), zName, "READ-LOCK[%d]", local 59246 sqlite3VdbeSetColName( Vdbe *p, int idx, int var, const char *zName, void (*xDel)(void*) ) argument 61348 const char *zName = context->pFunc->zName; local 61991 sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName) argument 62006 sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName) argument 63039 char *zName; /* Name of savepoint */ member in struct:vdbeExecUnion::OP_Savepoint_stack_vars 69576 sqlite3JournalOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pJfd, int flags, int nBuf ) argument 75313 reloadTableSchema(Parse *pParse, Table *pTab, const char *zName) argument 75362 isSystemTable(Parse *pParse, const char *zName) argument 75382 char *zName = 0; /* NULL-terminated version of pName */ local 75850 const char *zName; member in struct:__anon419 76601 const char *zName; local 76785 const char *zName = (const char *)sqlite3_value_text(argv[0]); local 76801 sqlite3_snprintf(sizeof(zErr),zErr, "no such database: %s", zName); local 76805 sqlite3_snprintf(sizeof(zErr),zErr, "cannot detach database %s", zName); local 76814 sqlite3_snprintf(sizeof(zErr),zErr, "database %s is locked", zName); local 77385 const char *zName; /* Name of the table */ member in struct:TableLock 77607 sqlite3FindTable(sqlite3 *db, const char *zName, const char *zDatabase) argument 77635 sqlite3LocateTable( Parse *pParse, int isView, const char *zName, const char *zDbase ) argument 77674 sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb) argument 77860 char *zName = pIndex->zName; local 77922 char *zName; local 77952 sqlite3FindDbName(sqlite3 *db, const char *zName) argument 77975 char *zName; /* Name we are searching for */ local 78035 sqlite3CheckObjectName(Parse *pParse, const char *zName) argument 78071 char *zName = 0; /* The name of the new table */ local 78610 sqlite3LocateCollSeq(Parse *pParse, const char *zName) argument 78986 const char *zName = (const char *)pParse->sNameToken.z; local 79746 char *zName = 0; /* Name of the index */ local 80401 sqlite3IdListIndex(IdList *pList, const char *zName) argument 80752 char *zName = sqlite3NameFromToken(pParse->db, pName); local 81119 callCollNeeded(sqlite3 *db, int enc, const char *zName) argument 81217 const char *zName = pColl->zName; local 81245 findCollSeqEntry( sqlite3 *db, const char *zName, int create ) argument 81298 sqlite3FindCollSeq( sqlite3 *db, u8 enc, const char *zName, int create ) argument 81421 sqlite3FindFunction( sqlite3 *db, const char *zName, int nName, int nArg, u8 enc, int createFlag ) argument 83646 setLikeOptFlag(sqlite3 *db, const char *zName, u8 flagVal) argument 88250 const char *zName; /* Name of the pragma */ member in struct:sPragmaType 88332 const char *zName; local 89331 char *zName; member in struct:EncName 90817 char *zName; /* Name of column in the right table */ local 90856 char *zName; /* Name of the term in the USING clause */ local 91641 char *zName = pEList->a[i].zName; local 91663 char *zName = 0; local 91702 char *zName; /* Column name */ local 93779 char *zName = pTab->aCol[j].zName; local 95230 char *zName = 0; /* Name of the trigger */ local 95400 char *zName; /* Name of trigger */ local 95616 const char *zName; local 95723 sqlite3UnlinkAndDeleteTrigger(sqlite3 *db, int iDb, const char *zName) argument 97298 createModule( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument 97340 sqlite3_create_module( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux ) argument 97352 sqlite3_create_module_v2( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument 97663 const char *zName = pTab->zName; local 109123 sqlite3_overload_function( sqlite3 *db, const char *zName, int nArg ) argument 109539 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 110267 sqlite3_create_collation( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ) argument 110286 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 110307 sqlite3_create_collation16( sqlite3* db, const void *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ) argument 111943 const char *zName; /* virtual table name */ member in struct:Fts3Table 114883 fts3FindFunctionMethod( sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg ) argument 114891 const char *zName; member in struct:Overloaded 117699 queryTestTokenizer( sqlite3 *db, const char *zName, const sqlite3_tokenizer_module **pp ) argument 118960 const unsigned char *zName; local 119146 const char *zName; local 119223 registerTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module *p ) argument 119245 queryTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module **pp ) argument 124534 char *zName; /* Name of r-tree table */ member in struct:Rtree 127868 icuFunctionError( sqlite3_context *pCtx, const char *zName, UErrorCode e ) argument 128083 const char *zName; /* SQL Collation sequence name (eg. "japanese") */ local 128116 const char *zName; /* Function name */ member in struct:IcuScalar [all...] |