HomeSort by relevance Sort by last modified time
    Searched full:zname (Results 51 - 75 of 112) sorted by null

1 23 4 5

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1.c 887 * zDb.zName. This may be more convenient than sqlite_mprintf()
891 const char *zDb, const char *zName){
895 size_t nName = strlen(zName);
912 memcpy(r, zName, nName);
923 static int sql_exec(sqlite3 *db, const char *zDb, const char *zName,
925 char *zCommand = string_format(zFormat, zDb, zName);
933 static int sql_prepare(sqlite3 *db, const char *zDb, const char *zName,
935 char *zCommand = string_format(zFormat, zDb, zName);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
resolve.c 167 assert( pTab!=0 && pTab->zName!=0 );
175 char *zTabName = pTab->zName;
179 if( zDb!=0 && sqlite3StrICmp(db->aDb[iDb].zName, zDb)!=0 ){
191 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
212 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){
248 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
302 char *zAs = pEList->a[j].zName;
542 auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0, pDef->zName, 0);
546 pDef->zName);
635 char *zAs = pEList->a[i].zName;
    [all...]
fkey.c 216 if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zName, zKey) ) return 0;
262 zIdxCol = pParent->aCol[iCol].zName;
515 zCol = pFKey->pFrom->aCol[iCol].zName;
582 int nName = sqlite3Strlen30(pTab->zName);
583 return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName, nName);
702 zDb = db->aDb[iDb].zName;
746 char *zCol = pTo->aCol[pIdx ? pIdx->aiColumn[i] : pTo->iPKey].zName;
747 rcauth = sqlite3AuthReadCol(pParse, pTo->zName, zCol, iDb);
756 sqlite3TableLock(pParse, iDb, pTo->tnum, 0, pTo->zName);
    [all...]
test_func.c 427 char *zName;
451 sqlite3_create_function(db, aFuncs[i].zName, aFuncs[i].nArg,
567 char *zName;
577 Tcl_CreateObjCommand(interp, aObjCmd[i].zName, aObjCmd[i].xProc, 0, 0);
test_stat.c 119 char *zName; /* Value of 'name' column */
404 pCsr->zName = (char *)sqlite3_column_text(pCsr->pStmt, 0);
453 pCsr->zName = (char *)sqlite3_column_text(pCsr->pStmt, 0);
509 sqlite3_result_text(ctx, pCsr->zName, -1, SQLITE_STATIC);
sqliteInt.h 662 char *zName; /* Name of this database */
    [all...]
test_init.c 272 char *zName;
283 Tcl_CreateObjCommand(interp, aObjCmd[i].zName, aObjCmd[i].xProc, 0, 0);
test_schema.c 328 char *zName;
336 Tcl_CreateObjCommand(interp, aObjCmd[i].zName,
test_tclvar.c 319 char *zName;
327 Tcl_CreateObjCommand(interp, aObjCmd[i].zName,
test_wholenumber.c 297 char *zName;
305 Tcl_CreateObjCommand(interp, aObjCmd[i].zName,
vdbeapi.c 324 rc = db->xWalCallback(db->pWalArg, db, db->aDb[i].zName, nEntry);
546 const char *zName = context->pFunc->zName;
550 "unable to use function %s in the requested context", zName);
    [all...]
main.c     [all...]
os_win.c 361 WCHAR *zName = utf8ToUnicode(zFilename);
369 zTok = CharLowerW(zName);
375 pFile->hMutex = CreateMutexW(NULL, FALSE, zName);
378 free(zName);
389 CharUpperW(zName);
392 zName);
400 free(zName);
    [all...]
tclsqlite.c 75 char *zName; /* Name of this function */
412 static SqlFunc *findSqlFunc(SqliteDb *pDb, const char *zName){
415 pNew = (SqlFunc*)Tcl_Alloc( sizeof(*pNew) + strlen30(zName) + 1 );
416 pNew->zName = (char*)&pNew[1];
417 for(i=0; zName[i]; i++){ pNew->zName[i] = tolower(zName[i]); }
418 pNew->zName[i] = 0;
420 if( strcmp(p->zName, pNew->zName)==0 )
    [all...]
test_malloc.c 1231 const char *zName;
1252 if( strcmp(aOp[i].zName, zOpName)==0 ){
    [all...]
test_hexio.c 372 char *zName;
385 Tcl_CreateObjCommand(interp, aObjCmd[i].zName, aObjCmd[i].xProc, 0, 0);
test_demovfs.c 393 const char *zName, /* File to open, or 0 for a temp file */
418 if( zName==0 ){
435 p->fd = open(zName, oflags, 0600);
623 "demo", /* zName */
wal.h 49 int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *zName, int, Wal**);
os_unix.c 294 const char *zName; /* Name of the sytem call */
395 ** system call named zName.
399 const char *zName, /* Name of system call to override */
406 if( zName==0 ){
407 /* If no zName is given, restore all system calls to their default
417 /* If zName is specified, operate on only the one system call
421 if( strcmp(zName, aSyscall[i].zName)==0 ){
436 ** Return the value of a system call. Return NULL if zName is not a
442 const char *zName
    [all...]
os_os2.c     [all...]
vdbeblob.c 200 if( sqlite3StrICmp(pTab->aCol[iCol].zName, zColumn)==0 ){
281 sqlite3VdbeChangeP4(v, 2, pTab->zName, P4_TRANSIENT);
  /external/chromium_org/third_party/sqlite/
system-sqlite.patch 201 if( memcmp(pVfs->zName,"unix-excl",10)==0 ){
285 }else if( !zName ){
286 /* If zName is NULL, the upper layer is requesting a temp file. */
294 zPath = zName;
296 - unlink(zName);
297 + osUnlink(zName);
599 if( memcmp(pVfs->zName,"unix-excl",10)==0 ){
683 }else if( !zName ){
684 /* If zName is NULL, the upper layer is requesting a temp file. */
692 zPath = zName;
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3.c 498 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_content'", p->zDb, p->zName);
499 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_segments'", p->zDb,p->zName);
500 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_segdir'", p->zDb, p->zName);
501 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_docsize'", p->zDb, p->zName);
502 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_stat'", p->zDb, p->zName);
536 "CREATE TABLE x(%s %Q HIDDEN, docid HIDDEN)", zCols, p->zName
576 p->zDb, p->zName, zContentCols
582 p->zDb, p->zName
594 p->zDb, p->zName
599 p->zDb, p->zName
    [all...]
fts3_aux.c 97 p->pFts3Tab->zName = &p->pFts3Tab->zDb[nDb+1];
101 memcpy((char *)p->pFts3Tab->zName, zFts3, nFts3);
102 sqlite3Fts3Dequote((char *)p->pFts3Tab->zName);
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c     [all...]

Completed in 1438 milliseconds

1 23 4 5