HomeSort by relevance Sort by last modified time
    Searched full:zpath (Results 1 - 25 of 26) sorted by null

1 2

  /external/libpng/contrib/pngminus/
makefile.std 18 #ZPATH = /usr/local
19 #ZINC = -I$(ZPATH)/include
20 #ZLIB = -L$(ZPATH)/lib -lz
21 #ZLIBS = $(ZPATH)/lib/libz.a
  /external/chromium_org/third_party/sqlite/src/src/
os.c 128 const char *zPath,
139 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f3f, pFlagsOut);
143 int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
144 return pVfs->xDelete(pVfs, zPath, dirSync);
148 const char *zPath,
153 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
157 const char *zPath,
162 return pVfs->xFullPathname(pVfs, zPath, nPathOut, zPathOut);
165 void *sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath){
166 return pVfs->xDlOpen(pVfs, zPath);
    [all...]
test_devsym.c 284 ** Delete the file located at zPath. If the dirSync argument is true,
288 static int devsymDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
289 return sqlite3OsDelete(g.pVfs, zPath, dirSync);
298 const char *zPath,
302 return sqlite3OsAccess(g.pVfs, zPath, flags, pResOut);
307 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
312 const char *zPath,
316 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut);
321 ** Open the dynamic library located at zPath and return a handle.
323 static void *devsymDlOpen(sqlite3_vfs *pVfs, const char *zPath){
    [all...]
test_stat.c 99 char *zPath; /* Path to this page */
120 char *zPath; /* Value of 'path' column */
230 sqlite3_free(p->zPath);
241 sqlite3_free(pCsr->zPath);
242 pCsr->zPath = 0;
373 sqlite3_free(pCsr->zPath);
374 pCsr->zPath = 0;
389 pCsr->aPage[0].zPath = sqlite3_mprintf("/");
409 pCsr->zPath = sqlite3_mprintf(
410 "%s%.3x+%.6x", p->zPath, p->iCell, pCell->iOvf
    [all...]
test_demovfs.c 450 ** Delete the file identified by argument zPath. If the dirSync parameter
454 static int demoDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
457 rc = unlink(zPath);
463 char zDir[MAXPATHNAME+1]; /* Name of directory containing file zPath */
466 sqlite3_snprintf(MAXPATHNAME, zDir, "%s", zPath);
499 const char *zPath,
506 assert( flags==SQLITE_ACCESS_EXISTS /* access(zPath, F_OK) */
507 || flags==SQLITE_ACCESS_READ /* access(zPath, R_OK) */
508 || flags==SQLITE_ACCESS_READWRITE /* access(zPath, R_OK|W_OK) */
514 rc = access(zPath, eAccess)
    [all...]
test_onefile.c 681 ** Delete the file located at zPath. If the dirSync argument is true,
685 static int fsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
690 int nName = strlen(zPath) - 8;
693 assert(strcmp("-journal", &zPath[nName])==0);
696 for(; pReal && strncmp(pReal->zName, zPath, nName); pReal=pReal->pNext);
713 const char *zPath,
720 int nName = strlen(zPath);
724 return pParent->xAccess(pParent, zPath, flags, pResOut);
728 if( nName>8 && strcmp("-journal", &zPath[nName-8])==0 ){
734 for(; pReal && strncmp(pReal->zName, zPath, nName); pReal=pReal->pNext)
    [all...]
test_vfstrace.c 534 ** Delete the file located at zPath. If the dirSync argument is true,
538 static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
543 pInfo->zVfsName, zPath, dirSync);
544 rc = pRoot->xDelete(pRoot, zPath, dirSync);
555 const char *zPath,
563 pInfo->zVfsName, zPath, flags);
564 rc = pRoot->xAccess(pRoot, zPath, flags, pResOut);
572 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
577 const char *zPath,
585 pInfo->zVfsName, zPath);
    [all...]
test_syscall.c 95 static int ts_access(const char *zPath, int mode);
96 static char *ts_getcwd(char *zPath, size_t nPath);
97 static int ts_stat(const char *zPath, struct stat *p);
232 static int ts_access(const char *zPath, int mode){
236 return orig_access(zPath, mode);
242 static char *ts_getcwd(char *zPath, size_t nPath){
246 return orig_getcwd(zPath, nPath);
252 static int ts_stat(const char *zPath, struct stat *p){
256 return orig_stat(zPath, p);
test_journal.c 722 ** Delete the file located at zPath. If the dirSync argument is true,
726 static int jtDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
727 int nPath = strlen(zPath);
728 if( nPath>8 && 0==strcmp("-journal", &zPath[nPath-8]) ){
730 jt_file *pMain = locateDatabaseHandle(zPath);
736 return sqlite3OsDelete(g.pVfs, zPath, dirSync);
745 const char *zPath,
749 return sqlite3OsAccess(g.pVfs, zPath, flags, pResOut);
754 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
759 const char *zPath,
    [all...]
test_superlock.c 168 ** Obtain a superlock on the database file identified by zPath, using the
183 const char *zPath, /* Path to database file to lock */
199 zPath, &pLock->db, SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE, zVfs
310 char *zPath;
322 zPath = Tcl_GetString(objv[2]);
334 rc = sqlite3demo_superlock(zPath, zVfs, xBusy, &busy, &pLock);
test_osinst.c 499 ** Delete the file located at zPath. If the dirSync argument is true,
503 static int vfslogDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
507 rc = REALVFS(pVfs)->xDelete(REALVFS(pVfs), zPath, dirSync);
510 vfslog_string(pVfs, zPath);
520 const char *zPath,
527 rc = REALVFS(pVfs)->xAccess(REALVFS(pVfs), zPath, flags, pResOut);
530 vfslog_string(pVfs, zPath);
536 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
541 const char *zPath,
545 return REALVFS(pVfs)->xFullPathname(REALVFS(pVfs), zPath, nOut, zOut)
    [all...]
test_vfs.c 603 ** Delete the file located at zPath. If the dirSync argument is true,
607 static int tvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
613 Tcl_NewStringObj(zPath, -1), Tcl_NewIntObj(dirSync), 0
618 rc = sqlite3OsDelete(PARENTVFS(pVfs), zPath, dirSync);
629 const char *zPath,
641 Tcl_NewStringObj(zPath, -1), Tcl_NewStringObj(zArg, -1), 0
652 return sqlite3OsAccess(PARENTVFS(pVfs), zPath, flags, pResOut);
657 ** to the pathname in zPath. zOut is guaranteed to point to a buffer
662 const char *zPath,
666 return sqlite3OsFullPathname(PARENTVFS(pVfs), zPath, nOut, zOut)
    [all...]
test6.c 636 static int cfDelete(sqlite3_vfs *pCfVfs, const char *zPath, int dirSync){
638 return pVfs->xDelete(pVfs, zPath, dirSync);
642 const char *zPath,
647 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
651 const char *zPath,
656 return pVfs->xFullPathname(pVfs, zPath, nPathOut, zPathOut);
658 static void *cfDlOpen(sqlite3_vfs *pCfVfs, const char *zPath){
660 return pVfs->xDlOpen(pVfs, zPath);
os_unix.c 212 const char *zPath; /* Name of the file */
    [all...]
os_win.c 110 const char *zPath; /* Full pathname of this file */
    [all...]
shell.c     [all...]
  /external/libpng/contrib/gregbook/
makevms.com 10 $ zpath = ""
13 $ if f$search("[---.zlib]zlib.h").nes."" then zpath = "[---.zlib]"
16 $ if f$search("[-.zlib]zlib.h").nes."" then zpath = "[-.zlib]"
19 $ if zpath .eqs. ""
33 $ ccopt="/include=(''zpath',''pngpath')"
58 $ write lopt "''zpath'libz.olb/lib"
Makefile.w32 24 # (as indicated by the PNGPATH and ZPATH macros below). Edit as appropriate.
41 ZPATH = ../zlib
42 ZINC = -I$(ZPATH)
43 #ZLIB = $(ZPATH)/zlibdll.lib
44 ZLIB = $(ZPATH)/zlibstat.lib
README 117 Copy Makefile.w32 to Makefile and edit the PNGPATH and ZPATH variables
146 Edit makevms.com appropriately, specifically the zpath and pngpath
  /external/chromium_org/third_party/sqlite/
system-sqlite.patch 137 return unixLogError(SQLITE_IOERR_FSYNC, "full_fsync", pFile->zPath);
148 + OSTRACE(("DIRSYNC %s (have_fullfsync=%d fullsync=%d)\n", pFile->zPath,
164 + rc = osOpenDirectory(pFile->zPath, &dirfd);
200 pNew->zPath = zFilename;
294 zPath = zName;
306 - rc = openDirectory(zPath, &dirfd);
343 - rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock,
344 + rc = fillInUnixFile(pVfs, fd, syncDir, pFile, zPath, noLock,
352 - rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock,
353 + rc = fillInUnixFile(pVfs, fd, syncDir, pFile, zPath, noLock
    [all...]
webdb.patch 28 @@ -3812,6 +3819,73 @@ static UnixUnusedFd *findReusableFd(const char *zPath, int flags){
99 ** Open the file zPath.
140 rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock, isDelete);
memcmp.patch 69 pNew->zPath = zFilename;
  /bootable/recovery/minzip/
Zip.c 946 char *zpath; local
949 zpath = (char *)malloc(zipDirLen + 2);
950 if (zpath == NULL) {
963 memcpy(zpath, zipDir, zipDirLen);
964 if (zpath[zipDirLen-1] != '/') {
965 zpath[zipDirLen++] = '/';
968 zpath[zipDirLen] = '\0';
975 helper.zipDir = zpath;
981 * with zpath.
992 //TODO: look out for a single empty directory entry that matches zpath, bu
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c     [all...]
  /external/sqlite/dist/orig/
shell.c     [all...]

Completed in 3735 milliseconds

1 2