Searched refs:zType (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/sqlite/src/tool/
H A Dshowwal.c241 const char *zType = "unknown"; local
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);
H A Dshowdb.c348 const char *zType = "unknown"; local
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/
H A Dvtab.c493 char *zType = pTab->aCol[iCol].zType; local
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[
[all...]
H A Dresolve.c35 ** 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 i
709 resolveOutOfRangeError( Parse *pParse, const char *zType, int i, int mx ) argument
[all...]
H A Dattach.c413 const char *zType, /* "view", "trigger", or "index" */
423 pFix->zType = zType;
458 pFix->zType, pFix->pName, pItem->zDatabase);
409 sqlite3FixInit( DbFixer *pFix, Parse *pParse, int iDb, const char *zType, const Token *pName ) argument
H A Dbuild.c495 sqlite3DbFree(db, pCol->zType);
1006 ** Scan the column type name zType (length nType) and return the
1009 ** This routine does a case-independent search of zType for the
1011 ** found, the corresponding affinity is returned. If zType contains
1013 ** the table take priority. For example, if zType is 'BLOBINT',
1073 ** in zType.
1082 assert( pCol->zType==0 );
1083 pCol->zType = sqlite3NameFromToken(pParse->db, pType);
1084 pCol->affinity = sqlite3AffinityType(pCol->zType);
1148 char *zType local
1414 const char *zType; local
1521 char *zType; /* "view" or "table" */ local
[all...]
H A Dtclsqlite.c808 const char *zType = (pVar->typePtr ? pVar->typePtr->name : ""); local
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) ){
1143 const char *zType = (pVar->typePtr ? pVar->typePtr->name : ""); local
1144 char c = zType[0];
1146 (c=='b' && strcmp(zType,"bytearra
[all...]
H A Dselect.c983 char const *zType = 0; local
1050 zType = columnType(&sNC, p, &zOriginDb, &zOriginTab, &zOriginCol);
1058 zType = "INTEGER";
1061 zType = pTab->aCol[iCol].zType;
1085 zType = columnType(&sNC, p, &zOriginDb, &zOriginTab, &zOriginCol);
1097 return zType;
1117 const char *zType; local
1122 zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol);
1132 zType
[all...]
H A Dos_unix.c538 char *zOpName, *zType; local
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);
H A Dalter.c808 pCol->zType = 0;
H A Dpragma.c888 pCol->zType ? pCol->zType : "", 0);
H A DsqliteInt.h1098 char *zType; /* Data type for this column */ member in struct:Column
1306 #define TF_NeedMetadata 0x20 /* aCol[].zType and aCol[].pColl missing */
2383 const char *zType; /* Type of the container - used for error messages */ member in struct:DbFixer
H A Dmain.c2344 zDataType = pCol->zType;
/external/sqlite/dist/orig/
H A Dsqlite3.c10011 char *zType; /* Data type for this column */ member in struct:Column
11299 const char *zType; /* Type of the container - used for error messages */ member in struct:DbFixer
22079 ** argument. The zType is a word like "NULL" or "closed" or "invalid".
22081 static void logBadConnection(const char *zType){ argument
22084 zType
25617 char *zOpName, *zType; local
25630 zType = "RDLCK";
25632 zType = "WRLCK";
25634 zType = "UNLCK";
25642 threadid, fd, zOpName, zType, (in
73880 resolveOutOfRangeError( Parse *pParse, const char *zType, int i, int mx ) argument
77550 const char *zType = "unk"; local
80809 sqlite3FixInit( DbFixer *pFix, Parse *pParse, int iDb, const char *zType, const Token *pName ) argument
82339 char *zType = 0; local
82605 const char *zType; local
82712 char *zType; /* "view" or "table" */ local
83182 sqlite3ClearStatTables( Parse *pParse, int iDb, const char *zType, const char *zName ) argument
95510 char const *zType = 0; local
95644 const char *zType; local
101972 char *zType = pTab->aCol[iCol].zType; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10011 char *zType; /* Data type for this column */ member in struct:Column
11299 const char *zType; /* Type of the container - used for error messages */ member in struct:DbFixer
22079 ** argument. The zType is a word like "NULL" or "closed" or "invalid".
22081 static void logBadConnection(const char *zType){ argument
22084 zType
25635 char *zOpName, *zType; local
25648 zType = "RDLCK";
25650 zType = "WRLCK";
25652 zType = "UNLCK";
25660 threadid, fd, zOpName, zType, (in
73916 resolveOutOfRangeError( Parse *pParse, const char *zType, int i, int mx ) argument
77586 const char *zType = "unk"; local
80845 sqlite3FixInit( DbFixer *pFix, Parse *pParse, int iDb, const char *zType, const Token *pName ) argument
82375 char *zType = 0; local
82641 const char *zType; local
82748 char *zType; /* "view" or "table" */ local
83218 sqlite3ClearStatTables( Parse *pParse, int iDb, const char *zType, const char *zName ) argument
95546 char const *zType = 0; local
95680 const char *zType; local
102008 char *zType = pTab->aCol[iCol].zType; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9458 char *zType; /* Data type for this column */ member in struct:Column
9666 #define TF_NeedMetadata 0x20 /* aCol[].zType and aCol[].pColl missing */
10743 const char *zType; /* Type of the container - used for error messages */ member in struct:DbFixer
21265 ** argument. The zType is a word like "NULL" or "closed" or "invalid".
21267 static void logBadConnection(const char *zType){ argument
21270 zType
24694 char *zOpName, *zType; local
24707 zType = "RDLCK";
24709 zType = "WRLCK";
24711 zType
70419 resolveOutOfRangeError( Parse *pParse, const char *zType, int i, int mx ) argument
76631 sqlite3FixInit( DbFixer *pFix, Parse *pParse, int iDb, const char *zType, const Token *pName ) argument
78164 char *zType = 0; local
78430 const char *zType; local
78537 char *zType; /* "view" or "table" */ local
91112 char const *zType = 0; local
91246 const char *zType; local
97412 char *zType = pTab->aCol[iCol].zType; local
[all...]

Completed in 784 milliseconds