HomeSort by relevance Sort by last modified time
    Searched defs:vfs (Results 1 - 3 of 3) sorted by null

  /external/javasqlite/src/main/java/SQLite/
JDBCDriver.java 12 public static String vfs = null; field in class:JDBCDriver
71 java.lang.System.getProperty("SQLite.vfs");
73 vfs = tvfs;
101 args[4] = info.getProperty("vfs");
107 args[4] = vfs;
136 pp = new DriverPropertyInfo("vfs", vfs);
  /external/chromium_org/third_party/libjingle/source/talk/base/
unixfilesystem.cc 501 struct statfs vfs; local
502 memset(&vfs, 0, sizeof(vfs));
503 if (0 != statfs(existing_path.pathname().c_str(), &vfs))
506 struct statvfs vfs;
507 memset(&vfs, 0, sizeof(vfs));
508 if (0 != statvfs(existing_path.pathname().c_str(), &vfs))
512 *freebytes = static_cast<int64>(vfs.f_bsize) * vfs.f_bavail
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 25 * SQLite 3 VFS to use.
27 protected String vfs; field in class:JDBCConnection
114 SQLite.Constants.SQLITE_OPEN_CREATE), vfs);
145 String vfs)
156 this.vfs = vfs;

Completed in 132 milliseconds