/external/chromium_org/third_party/sqlite/src/src/ |
os.c | 268 if( strcmp(zVfs, pVfs->zName)==0 ) break;
|
prepare.c | 111 pIndex = sqlite3FindIndex(db, argv[0], db->aDb[iDb].zName); 203 pTab = sqlite3FindTable(db, zMasterName, db->aDb[iDb].zName); 319 db->aDb[iDb].zName, zMasterName); 575 const char *zDb = db->aDb[i].zName;
|
expr.c | 868 pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 900 pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 934 pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); [all...] |
test8.c | 190 const char *zName = sqlite3_column_name(pStmt, ii); 191 if( !zName ){ 195 nBytes += strlen(zName)+1; [all...] |
shell.c | 843 static void set_table_name(struct callback_data *p, const char *zName){ 852 if( zName==0 ) return; 853 needQuote = !isalpha((unsigned char)*zName) && *zName!='_'; 854 for(i=n=0; zName[i]; i++, n++){ 855 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ){ 857 if( zName[i]=='\'' ) n++; 868 for(i=0; zName[i]; i++){ 869 z[n++] = zName[i] [all...] |
where.c | 605 if( pColl && sqlite3StrICmp(pColl->zName, pIdx->azColl[j]) ) continue; [all...] |
recover.c | 393 static int GetPager(sqlite3 *db, const char *zName, 398 if( ascii_strcasecmp(db->aDb[i].zName, zName)==0 ){ [all...] |
vdbeaux.c | 865 int n = sqlite3Strlen30(pColl->zName); 874 memcpy(&zTemp[i], pColl->zName,n+1); 888 sqlite3_snprintf(nTemp, zTemp, "collseq(%.20s)", pColl->zName); 893 sqlite3_snprintf(nTemp, zTemp, "%s(%d)", pDef->zName, pDef->nArg); [all...] |
vacuum.c | 155 assert( strcmp(pDb->zName,"vacuum_db")==0 );
|
func.c | [all...] |
sqlite3ext.h | 43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
|
test_thread.c | 326 char *zName;
|
test_fuzzer.c | 930 char *zName; 938 Tcl_CreateObjCommand(interp, aObjCmd[i].zName,
|
vdbe.c | [all...] |
/external/mdnsresponder/mDNSShared/ |
dnsextd.c | 515 const domainname * zname, 519 mDNSu16 i = DomainNameLength( zname ); 522 if ( ( i == ( MAX_DOMAIN_NAME + 1 ) ) || ( j == ( MAX_DOMAIN_NAME + 1 ) ) || ( i > j ) || ( memcmp( zname->c, dname->c + ( j - i ), i ) != 0 ) ) 630 domainname zname; local 639 zname.c[0] = '\0'; 653 AppendDomainName( &zname, &question.qname ); 666 AppendDomainName( &zname, &question.qname ); 671 if ( zname.c[0] != '\0' ) 677 if ( ZoneHandlesName( &pkt->zone->name, &zname ) ) [all...] |
/external/sqlite/dist/orig/ |
shell.c | 860 static void set_table_name(struct callback_data *p, const char *zName){ 869 if( zName==0 ) return; 870 needQuote = !isalpha((unsigned char)*zName) && *zName!='_'; 871 for(i=n=0; zName[i]; i++, n++){ 872 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ){ 874 if( zName[i]=='\'' ) n++; 885 for(i=0; zName[i]; i++){ 886 z[n++] = zName[i] [all...] |
sqlite3ext.h | 43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
|
/external/sqlite/dist/ |
shell.c | 865 static void set_table_name(struct callback_data *p, const char *zName){ 874 if( zName==0 ) return; 875 needQuote = !isalpha((unsigned char)*zName) && *zName!='_'; 876 for(i=n=0; zName[i]; i++, n++){ 877 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ){ 879 if( zName[i]=='\'' ) n++; 890 for(i=0; zName[i]; i++){ 891 z[n++] = zName[i] [all...] |
sqlite3ext.h | 43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
|
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
rtree.c | 151 char *zName; /* Name of r-tree table */ 782 pRtree->zDb, pRtree->zName, 783 pRtree->zDb, pRtree->zName, 784 pRtree->zDb, pRtree->zName [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
threadtest3.c | 599 const char *zName = sqlite3_bind_parameter_name(pStmt, i); 602 switch( zName[1] ){ 609 pErr->zErr = sqlite3_mprintf("Cannot discern type: \"%s\"", zName); [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3Int.h | 123 const char *zName; /* virtual table name */
|
fts3_expr.c | 764 const char *zName, 777 sqlite3_bind_text(pStmt, 1, zName, -1, SQLITE_STATIC);
|
/external/chromium_org/third_party/sqlite/ |
recover.patch | 457 +static int GetPager(sqlite3 *db, const char *zName, 462 + if( ascii_strcasecmp(db->aDb[i].zName, zName)==0 ){ [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |