HomeSort by relevance Sort by last modified time
    Searched defs:aCol (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test8.c 69 ** Member variable aCol[] contains copies of the column names of the real
84 char **aCol; /* Array of size nCol. Column names */
161 char **aCol = 0;
197 aCol = (char **)sqlite3MallocZero(nBytes);
198 if( !aCol ){
204 ** pointers in the aCol[] array.
206 zSpace = (char *)(&aCol[nCol]);
208 aCol[ii] = zSpace;
212 assert( (zSpace-nBytes)==(char *)aCol );
215 *paCol = aCol;
    [all...]
select.c 187 if( sqlite3StrICmp(pTab->aCol[i].zName, zCol)==0 ) return i;
206 int *piCol /* Write index of pSrc->a[*piTab].pTab->aCol[] here */
351 zName = pRightTab->aCol[j].zName;
    [all...]
where.c 591 idxaff = pIdx->pTable->aCol[iColumn].affinity;
    [all...]
sqliteInt.h     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3.c 842 const char **aCol; /* Array of column names */
856 aCol = (const char **)sqlite3_malloc(sizeof(const char *) * (argc-2) );
857 if( !aCol ) return SQLITE_NOMEM;
858 memset((void *)aCol, 0, sizeof(const char *) * (argc-2));
914 aCol[nCol++] = z;
921 aCol[0] = "content";
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mq.h 37 PROPID *aCol;
50 MQSORTKEY *aCol;
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]