/external/chromium_org/third_party/sqlite/src/tool/ |
showwal.c | 241 const char *zType = "unknown"; 246 case 2: zType = "index interior node"; break; 247 case 5: zType = "table interior node"; break; 248 case 10: zType = "index leaf"; break; 249 case 13: zType = "table leaf"; break; 252 print_decode_line(a, 0, 1, 0, zType);
|
showdb.c | 348 const char *zType = "unknown"; 356 case 2: zType = "index interior node"; break; 357 case 5: zType = "table interior node"; break; 358 case 10: zType = "index leaf"; break; 359 case 13: zType = "table leaf"; break; 369 print_decode_line(a, 0, 1, zType);
|
/external/chromium_org/third_party/sqlite/src/src/ |
vtab.c | 493 char *zType = pTab->aCol[iCol].zType; 496 if( !zType ) continue; 497 nType = sqlite3Strlen30(zType); 498 if( sqlite3StrNICmp("hidden", zType, 6)||(zType[6] && zType[6]!=' ') ){ 500 if( (0==sqlite3StrNICmp(" hidden", &zType[i], 7)) 501 && (zType[i+7]=='\0' || zType[i+7]==' ' [all...] |
resolve.c | 35 ** Hack: The TK_AS operator is inhibited if zType[0]=='G'. This means 53 const char *zType /* "GROUP" or "ORDER" or "" */ 64 if( pOrig->op!=TK_COLUMN && zType[0]!='G' ){ 711 const char *zType, /* "ORDER" or "GROUP" */ 717 "between 1 and %d", i, zType, mx); 829 const char *zType /* "ORDER" or "GROUP" */ 839 sqlite3ErrorMsg(pParse, "too many terms in %s BY clause", zType); 848 resolveOutOfRangeError(pParse, zType, i+1, pEList->nExpr); 851 resolveAlias(pParse, pEList, pItem->iCol-1, pItem->pExpr, zType); 859 ** The Name context of the SELECT statement is pNC. zType is eithe [all...] |
attach.c | 413 const char *zType, /* "view", "trigger", or "index" */ 423 pFix->zType = zType; 458 pFix->zType, pFix->pName, pItem->zDatabase);
|
build.c | 495 sqlite3DbFree(db, pCol->zType); [all...] |
tclsqlite.c | 808 const char *zType = (pVar->typePtr ? pVar->typePtr->name : ""); 809 char c = zType[0]; 810 if( c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0 ){ 815 }else if( c=='b' && strcmp(zType,"boolean")==0 ){ 818 }else if( c=='d' && strcmp(zType,"double")==0 ){ 822 }else if( (c=='w' && strcmp(zType,"wideInt")==0) || 823 (c=='i' && strcmp(zType,"int")==0) ){ [all...] |
select.c | [all...] |
os_unix.c | 538 char *zOpName, *zType; 551 zType = "RDLCK"; 553 zType = "WRLCK"; 555 zType = "UNLCK"; 563 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len, 570 zType = "RDLCK"; 572 zType = "WRLCK"; 574 zType = "UNLCK"; 579 zType, (int)l2.l_start, (int)l2.l_len, (int)l2.l_pid); [all...] |
alter.c | 808 pCol->zType = 0;
|
pragma.c | 888 pCol->zType ? pCol->zType : "", 0); [all...] |
sqliteInt.h | [all...] |
main.c | [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |
/external/sqlite/dist/ |
sqlite3.c | [all...] |