HomeSort by relevance Sort by last modified time
    Searched refs:zFile (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/sqlite/src/test/
threadtest1.c 61 const char *zFile; /* Filename - used for error reporting */
86 fprintf(stdout,"%s: malloc failed\n", pResult->zFile);
102 char **db_query(sqlite *db, const char *zFile, const char *zFormat, ...){
112 sResult.zFile = zFile;
113 if( verbose ) printf("QUERY %s: %s\n", zFile, zSql);
119 if( verbose ) printf("DONE %s %s\n", zFile, zSql);
121 fprintf(stdout,"%s: query failed: %s - %s\n", zFile, zSql, zErrMsg);
137 void db_execute(sqlite *db, const char *zFile, const char *zFormat, ...){
145 if( verbose ) printf("EXEC %s: %s\n", zFile, zSql)
    [all...]
wal_common.tcl 20 proc wal_frame_count {zFile pgsz} {
21 if {[file exists $zFile]==0} { return 0 }
22 set f [file size $zFile]
threadtest3.c 504 const char *zFile, /* Database file name */
509 if( bDelete ) unlink(zFile);
510 rc = sqlite3_open(zFile, &pDb->db);
778 const char *zFile
783 if( stat(zFile, &sStat) ){
    [all...]
tester.tcl     [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_hexio.c 105 const char *zFile;
115 zFile = Tcl_GetString(objv[1]);
120 in = fopen(zFile, "rb");
122 in = fopen(zFile, "r");
125 Tcl_AppendResult(interp, "cannot open input file ", zFile, 0);
155 const char *zFile;
165 zFile = Tcl_GetString(objv[1]);
172 out = fopen(zFile, "r+b");
174 out = fopen(zFile, "r+");
177 Tcl_AppendResult(interp, "cannot open output file ", zFile, 0)
    [all...]
test_btree.c 36 const char *zFile = sqlite3PagerFilename(pBt->pPager);
37 Tcl_ListObjAppendElement(interp, pRet, Tcl_NewStringObj(zFile, -1));
loadext.c 379 ** zFile. The entry point is zProc. zProc may be 0 in which case a
391 const char *zFile, /* Name of the shared library containing extension */
421 handle = sqlite3OsDlOpen(pVfs, zFile);
427 "unable to open shared library [%s]", zFile);
440 "no entry point [%s] in shared library [%s]", zProc,zFile);
471 const char *zFile, /* Name of the shared library containing extension */
477 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
attach.c 72 const char *zFile;
78 zFile = (const char *)sqlite3_value_text(argv[0]);
80 if( zFile==0 ) zFile = "";
127 rc = sqlite3BtreeOpen(zFile, db, &aNew->pBt, 0,
212 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
test_vfs.c 141 char *zFile; /* Associated file name */
753 if( 0==strcmp(pFd->zFilename, pBuffer->zFile) ) break;
759 pBuffer->zFile = (char *)&pBuffer[1];
760 strcpy(pBuffer->zFile, pFd->zFilename);
806 Tcl_NewStringObj(pFd->pShm->zFile, -1), pFd->pShmId, pArg
851 Tcl_NewStringObj(pFd->pShm->zFile, -1), pFd->pShmId,
893 Tcl_NewStringObj(pFd->pShm->zFile, -1), pFd->pShmId, 0
913 Tcl_NewStringObj(pFd->pShm->zFile, -1), pFd->pShmId, 0
994 if( 0==strcmp(pBuffer->zFile, zName) ) break;
    [all...]
os.c 204 const char *zFile,
213 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
test_osinst.c 711 char *zFile;
731 zFile = (char *)&p->base.zName[nVfs+1];
732 pParent->xFullPathname(pParent, zLog, pParent->mxPathname, zFile);
735 pParent->xDelete(pParent, zFile, 0);
736 rc = pParent->xOpen(pParent, zFile, p->pLog, flags, &flags);
805 char *zFile; /* File name for pFd */
866 char *zFile;
876 p->zFile = &((char *)p->pFd)[pVfs->szOsFile];
878 zFile = sqlite3_mprintf("%s", argv[3]);
879 if( !zFile ){
    [all...]
test_syscall.c 206 static int ts_open(const char *zFile, int flags, int mode){
210 return orig_open(zFile, flags, mode);
  /external/lzma/C/Util/Lzma/
makefile 15 $O\7zFile.obj \
  /external/lzma/C/Util/7z/
makefile 12 $O\7zFile.obj \
  /external/lzma/C/Util/SfxSetup/
makefile 11 $O\7zFile.obj \
  /external/chromium_org/third_party/sqlite/src/tool/
speedtest8inst1.c 81 static char *readScriptFile(const char *zFile, int *pnScript){
90 rc = pVfs->xOpen(pVfs, zFile, p, flags, &flags);
  /external/sqlite/dist/orig/
shell.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 484 char *zFile;
851 while( p && (p->nFile!=nName || memcmp(p->zFile, zName, nName)) ){
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
lzma_sdk.target.darwin-arm.mk 30 third_party/lzma_sdk/7zFile.c \
lzma_sdk.target.darwin-mips.mk 30 third_party/lzma_sdk/7zFile.c \
lzma_sdk.target.darwin-x86.mk 30 third_party/lzma_sdk/7zFile.c \
lzma_sdk.target.linux-arm.mk 30 third_party/lzma_sdk/7zFile.c \
lzma_sdk.target.linux-mips.mk 30 third_party/lzma_sdk/7zFile.c \
lzma_sdk.target.linux-x86.mk 30 third_party/lzma_sdk/7zFile.c \

Completed in 1485 milliseconds

1 2