HomeSort by relevance Sort by last modified time
    Searched refs:zPath (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
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_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...]
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_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_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_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_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...]
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);
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...]
os_unix.c 212 const char *zPath; /* Name of the file */
    [all...]
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...]
shell.c     [all...]
os_win.c 110 const char *zPath; /* Full pathname of this file */
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c     [all...]
  /external/sqlite/dist/orig/
shell.c     [all...]
sqlite3.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]
sqlite3.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 977 milliseconds