Searched refs:zFile (Results 1 - 25 of 42) 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
/external/lzma/C/Util/Lzma/
H A DAndroid.mk7 LOCAL_SRC_FILES := LzmaUtil.c ../../Alloc.c ../../LzFind.c ../../LzmaDec.c ../../LzmaEnc.c ../../7zFile.c ../../7zStream.c
H A Dmakefile15 $O\7zFile.obj \
/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/7z/
H A Dmakefile12 $O\7zFile.obj \
/external/lzma/C/Util/SfxSetup/
H A Dmakefile11 $O\7zFile.obj \
/external/sqlite/dist/orig/
H A Dshell.c1698 const char *zFile; local
1700 zFile = (const char*)sqlite3_value_text(argv[0]);
1701 if( zFile==0 ) return;
1702 out = fopen(zFile, "wb");
1877 static FILE *output_file_open(const char *zFile){ argument
1879 if( strcmp(zFile,"stdout")==0 ){
1881 }else if( strcmp(zFile, "stderr")==0 ){
1883 }else if( strcmp(zFile, "off")==0 ){
1886 f = fopen(zFile, "wb");
1888 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);
1916 const char *zFile; /* Name of the input file */ member in struct:CSVReader
2559 char *zFile; /* Name of file to extra content from */ local
2783 const char *zFile, *zProc; local
2807 const char *zFile = azArg[1]; local
2878 const char *zFile = nArg>=2 ? azArg[1] : "stdout"; local
2902 sqlite3_snprintf(sizeof(p->outfile), p->outfile, "%s", zFile); local
2913 sqlite3_snprintf(sizeof(p->outfile), p->outfile, "%s", zFile); local
[all...]
/external/sqlite/dist/
H A Dshell.c1703 const char *zFile; local
1705 zFile = (const char*)sqlite3_value_text(argv[0]);
1706 if( zFile==0 ) return;
1707 out = fopen(zFile, "wb");
1897 static FILE *output_file_open(const char *zFile){ argument
1899 if( strcmp(zFile,"stdout")==0 ){
1901 }else if( strcmp(zFile, "stderr")==0 ){
1903 }else if( strcmp(zFile, "off")==0 ){
1906 f = fopen(zFile, "wb");
1908 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);
1936 const char *zFile; /* Name of the input file */ member in struct:CSVReader
2579 char *zFile; /* Name of file to extra content from */ local
2803 const char *zFile, *zProc; local
2827 const char *zFile = azArg[1]; local
2898 const char *zFile = nArg>=2 ? azArg[1] : "stdout"; local
2922 sqlite3_snprintf(sizeof(p->outfile), p->outfile, "%s", zFile); local
2933 sqlite3_snprintf(sizeof(p->outfile), p->outfile, "%s", zFile); local
[all...]
/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/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-arm64.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-mips64.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.darwin-x86_64.mk30 third_party/lzma_sdk/7zFile.c \

Completed in 444 milliseconds

12