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

  /external/webkit/Source/WebCore/platform/sql/chromium/
SQLiteFileSystemChromiumPosix.cpp 102 // syncDir - determines if the directory to which this file belongs
104 int chromiumDelete(sqlite3_vfs*, const char* fileName, int syncDir)
106 return PlatformBridge::databaseDeleteFile(fileName, syncDir);
  /frameworks/base/core/tests/coretests/src/android/content/
SyncStorageEngineTest.java 228 File syncDir = new File(new File(testContext.getFilesDir(), "system"), "sync");
229 syncDir.mkdirs();
230 AtomicFile accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"));
256 accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"));
285 accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"));
333 File syncDir = new File(new File(testContext.getFilesDir(), "system"), "sync");
334 syncDir.mkdirs();
335 AtomicFile accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"));
373 File syncDir = new File(new File(testContext.getFilesDir(), "system"), "sync");
374 syncDir.mkdirs()
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebKitClient.h 134 virtual int databaseDeleteFile(const WebString& vfsFileName, bool syncDir) { return 0; }
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 102 File syncDir = new File(systemDir, "registered_services");
103 mPersistentServicesFile = new AtomicFile(new File(syncDir, interfaceName + ".xml"));
  /external/webkit/Source/WebCore/platform/chromium/
PlatformBridge.h 167 static int databaseDeleteFile(const String& vfsFileName, bool syncDir = false);
  /frameworks/base/core/java/android/content/
SyncStorageEngine.java 294 File syncDir = new File(systemDir, "sync");
295 syncDir.mkdirs();
296 mAccountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"));
297 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"));
298 mPendingFile = new AtomicFile(new File(syncDir, "pending.bin"));
299 mStatisticsFile = new AtomicFile(new File(syncDir, "stats.bin"));
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
PlatformBridge.cpp 490 int PlatformBridge::databaseDeleteFile(const String& vfsFileName, bool syncDir)
492 return webKitClient()->databaseDeleteFile(WebString(vfsFileName), syncDir);
    [all...]
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3.h 749 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
    [all...]
  /external/sqlite/dist/
sqlite3.h     [all...]
sqlite3.h.orig     [all...]
sqlite3.c     [all...]
sqlite3.c.orig     [all...]

Completed in 333 milliseconds