Searched refs:zFile (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest1.c61 const char *zFile; /* Filename - used for error reporting */ member in struct:QueryResult
86 fprintf(stdout,"%s: malloc failed\n", pResult->zFile);
102 char **db_query(sqlite *db, const char *zFile, const char *zFormat, ...){ argument
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, ...){ argument
145 if( verbose ) printf("EXEC %s: %s\n", zFile, zSq
173 db_check(const char *zFile, const char *zMsg, char **az, ...) argument
249 char *zFile; local
[all...]
H A Dwal_common.tcl20 proc wal_frame_count {zFile pgsz} {
21 if {[file exists $zFile]==0} { return 0 }
22 set f [file size $zFile]
H A Dthreadtest3.c504 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) ){
501 opendb_x( Error *pErr, Sqlite *pDb, const char *zFile, int bDelete ) argument
H A Dtester.tcl1337 proc slave_test_file {zFile} {
1338 set tail [file tail $zFile]
1359 set time [time { slave_test_script [list source $zFile] }]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_hexio.c105 const char *zFile; local
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; local
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,
[all...]
H A Dtest_btree.c36 const char *zFile = sqlite3PagerFilename(pBt->pPager); local
37 Tcl_ListObjAppendElement(interp, pRet, Tcl_NewStringObj(zFile, -1));
H A Dloadext.c379 ** 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);
389 sqlite3LoadExtension( sqlite3 *db, const char *zFile, const char *zProc, char **pzErrMsg ) argument
469 sqlite3_load_extension( sqlite3 *db, const char *zFile, const char *zProc, char **pzErrMsg ) argument
H A Dattach.c72 const char *zFile; local
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);
H A Dtest_vfs.c141 char *zFile; /* Associated file name */ member in struct:TestvfsBuffer
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;
H A Dos.c204 const char *zFile,
213 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
202 sqlite3OsOpenMalloc( sqlite3_vfs *pVfs, const char *zFile, sqlite3_file **ppFile, int flags, int *pOutFlags ) argument
H A Dtest_osinst.c711 char *zFile; local
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 */ member in struct:VfslogVtab
866 char *zFile; local
876 p->zFile = &((char *)p->pFd)[pVfs->szOsFile];
878 zFile = sqlite3_mprintf("%s", argv[3]);
879 if( !zFile ){
[all...]
H A Dtest_syscall.c206 static int ts_open(const char *zFile, int flags, int mode){ argument
210 return orig_open(zFile, flags, mode);
/external/lzma/C/Util/Lzma/
H A Dmakefile15 $O\7zFile.obj \
/external/lzma/C/Util/7z/
H A Dmakefile12 $O\7zFile.obj \
/external/lzma/C/Util/SfxSetup/
H A Dmakefile11 $O\7zFile.obj \
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspeedtest8inst1.c81 static char *readScriptFile(const char *zFile, int *pnScript){ argument
90 rc = pVfs->xOpen(pVfs, zFile, p, flags, &flags);
/external/sqlite/dist/orig/
H A Dshell.c1728 char *zFile = azArg[1]; /* The file from which to extract data */ local
1784 in = fopen(zFile, "rb");
1786 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);
1820 zFile, lineno, nCol, i+1);
1918 const char *zFile, *zProc; local
1920 zFile = azArg[1];
1923 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg);
1933 const char *zFile = azArg[1]; local
1938 if( strcmp(zFile,"stdout")==0 ){
1940 }else if( strcmp(zFile, "stder
[all...]
/external/sqlite/dist/
H A Dshell.c1747 char *zFile = azArg[1]; /* The file from which to extract data */ local
1803 in = fopen(zFile, "rb");
1805 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);
1839 zFile, lineno, nCol, i+1);
1937 const char *zFile, *zProc; local
1939 zFile = azArg[1];
1942 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg);
1952 const char *zFile = azArg[1]; local
1957 if( strcmp(zFile,"stdout")==0 ){
1959 }else if( strcmp(zFile, "stder
[all...]
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c484 char *zFile; member in struct:AsyncLock
851 while( p && (p->nFile!=nName || memcmp(p->zFile, zName, nName)) ){
1110 pLock->zFile = &((char *)(&pLock[1]))[pVfs->szOsFile];
1111 memcpy(pLock->zFile, pData->zName, pLock->nFile);
1131 pData->zName = pLock->zFile;
/external/chromium_org/third_party/lzma_sdk/
H A Dlzma_sdk.target.darwin-arm.mk30 third_party/lzma_sdk/7zFile.c \
H A Dlzma_sdk.target.darwin-mips.mk30 third_party/lzma_sdk/7zFile.c \
H A Dlzma_sdk.target.darwin-x86.mk30 third_party/lzma_sdk/7zFile.c \
H A Dlzma_sdk.target.linux-arm.mk30 third_party/lzma_sdk/7zFile.c \
H A Dlzma_sdk.target.linux-mips.mk30 third_party/lzma_sdk/7zFile.c \
H A Dlzma_sdk.target.linux-x86.mk30 third_party/lzma_sdk/7zFile.c \

Completed in 254 milliseconds

12