Searched refs:zFile (Results 1 - 25 of 42) sorted by path

12

/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 \
H A Dlzma_sdk.target.linux-arm.mk30 third_party/lzma_sdk/7zFile.c \
H A Dlzma_sdk.target.linux-arm64.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-mips64.mk30 third_party/lzma_sdk/7zFile.c \
H A Dlzma_sdk.target.linux-x86.mk30 third_party/lzma_sdk/7zFile.c \
H A Dlzma_sdk.target.linux-x86_64.mk30 third_party/lzma_sdk/7zFile.c \
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c5009 ** SQLite extension library contained in the file zFile.
5030 const char *zFile, /* Name of the shared library containing extension */
5031 const char *zProc, /* Entry point. Derived from zFile if 0 */
14148 const char *zFile,
14157 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
14146 sqlite3OsOpenMalloc( sqlite3_vfs *pVfs, const char *zFile, sqlite3_file **ppFile, int flags, int *pOutFlags ) argument
58950 char const *zFile = sqlite3BtreeGetJournalname(pBt); local
76115 const char *zFile; local
82888 const char *zFile = (const char *)sqlite3_value_text(argv[0]); local
87273 sqlite3LoadExtension( sqlite3 *db, const char *zFile, const char *zProc, char **pzErrMsg ) argument
87353 sqlite3_load_extension( sqlite3 *db, const char *zFile, const char *zProc, char **pzErrMsg ) argument
[all...]
H A Dsqlite3.h4466 ** SQLite extension library contained in the file zFile.
4487 const char *zFile, /* Name of the shared library containing extension */
4488 const char *zProc, /* Entry point. Derived from zFile if 0 */
/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/sqlite/src/src/
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 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 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 Dsqlite.h.in4461 ** SQLite extension library contained in the file zFile.
4482 const char *zFile, /* Name of the shared library containing extension */
4483 const char *zProc, /* Entry point. Derived from zFile if 0 */
H A Dtclsqlite.c1954 char *zFile; /* The file from which to extract data */ local
1990 zFile = Tcl_GetStringFromObj(objv[4], 0);
2046 in = fopen(zFile, "rb");
2048 Tcl_AppendResult(interp, "Error: cannot open file: ", zFile, NULL);
2077 int nErr = strlen30(zFile) + 200;
2082 zFile, lineno, nCol, i+1);
2864 const char *zFile; local
2960 zFile = Tcl_GetStringFromObj(objv[2], 0);
2961 zFile = Tcl_TranslateFileName(interp, zFile,
[all...]
H A Dtest1.c2019 char *zFile; local
2028 zFile = Tcl_GetString(objv[2]);
2049 rc = sqlite3_load_extension(db, zFile, zProc, &zErr);
H A Dtest_btree.c36 const char *zFile = sqlite3PagerFilename(pBt->pPager); local
37 Tcl_ListObjAppendElement(interp, pRet, Tcl_NewStringObj(zFile, -1));
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_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);

Completed in 560 milliseconds

12