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

  /external/bluetooth/glib/gio/win32/
gwinhttpfile.h 48 GWinHttpVfs *vfs; member in struct:_GWinHttpFile
60 GFile * _g_winhttp_file_new (GWinHttpVfs *vfs, const char *uri);
gwinhttpvfs.c 99 GWinHttpVfs *vfs; local
101 vfs = G_WINHTTP_VFS (object);
103 (G_WINHTTP_VFS_GET_CLASS (vfs)->funcs->pWinHttpCloseHandle) (vfs->session);
104 vfs->session = NULL;
106 if (vfs->wrapped_vfs)
107 g_object_unref (vfs->wrapped_vfs);
108 vfs->wrapped_vfs = NULL;
114 g_winhttp_vfs_init (GWinHttpVfs *vfs)
118 vfs->wrapped_vfs = g_vfs_get_local ()
    [all...]
  /external/bluetooth/glib/gio/
gvfs.c 49 g_vfs_init (GVfs *vfs)
55 * @vfs: a #GVfs.
57 * Checks if the VFS is active.
59 * Returns: %TRUE if construction of the @vfs was successful and it is now active.
62 g_vfs_is_active (GVfs *vfs)
66 g_return_val_if_fail (G_IS_VFS (vfs), FALSE);
68 class = G_VFS_GET_CLASS (vfs);
70 return (* class->is_active) (vfs);
76 * @vfs: a #GVfs.
77 * @path: a string containing a VFS path
178 GVfs *vfs; local
246 static gsize vfs = 0; local
    [all...]
  /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/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 70 milliseconds