Searched refs:vfs (Results 1 - 25 of 26) sorted by relevance

12

/external/bluetooth/glib/gio/
H A Dgvfs.c49 g_vfs_init (GVfs *vfs) argument
55 * @vfs: a #GVfs.
59 * Returns: %TRUE if construction of the @vfs was successful and it is now active.
62 g_vfs_is_active (GVfs *vfs) argument
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.
85 g_vfs_get_file_for_path (GVfs *vfs, argument
90 g_return_val_if_fail (G_IS_VFS (vfs), NUL
113 g_vfs_get_file_for_uri(GVfs *vfs, const char *uri) argument
137 g_vfs_get_supported_uri_schemes(GVfs *vfs) argument
161 g_vfs_parse_name(GVfs *vfs, const char *parse_name) argument
178 GVfs *vfs; local
246 static gsize vfs = 0; local
[all...]
H A Dgvfs.h47 #define G_VFS_EXTENSION_POINT_NAME "gio-vfs"
67 gboolean (* is_active) (GVfs *vfs);
68 GFile * (* get_file_for_path) (GVfs *vfs,
70 GFile * (* get_file_for_uri) (GVfs *vfs,
72 const gchar * const * (* get_supported_uri_schemes) (GVfs *vfs);
73 GFile * (* parse_name) (GVfs *vfs,
94 gboolean g_vfs_is_active (GVfs *vfs);
95 GFile * g_vfs_get_file_for_path (GVfs *vfs,
97 GFile * g_vfs_get_file_for_uri (GVfs *vfs,
99 const gchar* const * g_vfs_get_supported_uri_schemes (GVfs *vfs);
[all...]
H A Dglocalvfs.c64 g_local_vfs_init (GLocalVfs *vfs) argument
71 * Returns a new #GVfs handle for a local vfs.
82 g_local_vfs_get_file_for_path (GVfs *vfs, argument
89 g_local_vfs_get_file_for_uri (GVfs *vfs, argument
121 g_local_vfs_get_supported_uri_schemes (GVfs *vfs) argument
129 g_local_vfs_parse_name (GVfs *vfs, argument
138 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
197 g_local_vfs_is_active (GVfs *vfs) argument
H A Dgunixmounts.c170 #include <sys/vfs.h>
915 else if (strcmp (word, "vfs") == 0)
984 sysctlbyname ("vfs.usermount", &usermnt, &len, NULL, 0);
H A Dglocalfile.c41 #include <sys/vfs.h>
/external/bluetooth/glib/gio/win32/
H A Dgwinhttpvfs.c99 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) argument
118 vfs
147 g_winhttp_vfs_get_file_for_path(GVfs *vfs, const char *path) argument
154 g_winhttp_vfs_get_file_for_uri(GVfs *vfs, const char *uri) argument
171 g_winhttp_vfs_get_supported_uri_schemes(GVfs *vfs) argument
202 g_winhttp_vfs_parse_name(GVfs *vfs, const char *parse_name) argument
221 g_winhttp_vfs_is_active(GVfs *vfs) argument
329 _g_winhttp_response(GWinHttpVfs *vfs, HINTERNET request, GError **error, const char *what) argument
419 _g_winhttp_query_header(GWinHttpVfs *vfs, HINTERNET request, const char *request_description, DWORD which_header, wchar_t **header, GError **error) argument
[all...]
H A Dgwinhttpfileoutputstream.c67 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->connection);
124 request = G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpOpenRequest
145 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpSendRequest
154 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (request);
162 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpWriteData
167 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (request);
174 if (!_g_winhttp_response (winhttp_stream->file->vfs,
179 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (request);
184 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (request);
H A Dgwinhttpfileinputstream.c72 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->request);
74 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->connection);
136 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpSendRequest
148 if (!_g_winhttp_response (winhttp_stream->file->vfs,
157 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpReadData
176 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->connection);
H A Dgwinhttpfile.h48 GWinHttpVfs *vfs; member in struct:_GWinHttpFile
60 GFile * _g_winhttp_file_new (GWinHttpVfs *vfs, const char *uri);
H A Dgwinhttpfile.c64 g_object_unref (file->vfs);
84 * @vfs: GWinHttpVfs to use
90 _g_winhttp_file_new (GWinHttpVfs *vfs, argument
102 file->vfs = g_object_ref (vfs);
113 if (!G_WINHTTP_VFS_GET_CLASS (vfs)->funcs->pWinHttpCrackUrl (wuri, 0, 0, &file->url))
126 if (!G_WINHTTP_VFS_GET_CLASS (vfs)->funcs->pWinHttpCrackUrl (wuri, 0, 0, &file->url))
199 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_file->vfs)->funcs->pWinHttpCreateUrl (&winhttp_file->url, ICU_ESCAPE, NULL, &len) &&
205 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_file->vfs)->funcs->pWinHttpCreateUrl (&winhttp_file->url, ICU_ESCAPE, wuri, &len))
262 parent = _g_winhttp_file_new (winhttp_file->vfs, ur
[all...]
H A Dgwinhttpvfs.h96 gboolean _g_winhttp_response (GWinHttpVfs *vfs,
101 gboolean _g_winhttp_query_header (GWinHttpVfs *vfs,
/external/webkit/Source/WebCore/platform/sql/chromium/
H A DSQLiteFileSystemChromiumPosix.cpp46 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, int fd, int dirfd, sqlite3_file* file, const char* fileName, int noLock);
57 // vfs - pointer to the sqlite3_vfs object.
62 int chromiumOpen(sqlite3_vfs* vfs, const char* fileName, argument
92 result = chromium_sqlite3_fill_in_unix_sqlite3_file(vfs, fd, -1, id, fileName, noLock);
100 // vfs - pointer to the sqlite3_vfs object.
111 // vfs - pointer to the sqlite3_vfs object.
142 // vfs - pointer to the sqlite3_vfs object.
146 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath, argument
150 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
157 // vfs
[all...]
H A DSQLiteFileSystemChromiumWin.cpp50 // vfs - pointer to the sqlite3_vfs object.
79 // vfs - pointer to the sqlite3_vfs object.
90 // vfs - pointer to the sqlite3_vfs object.
114 // vfs - pointer to the sqlite3_vfs object.
118 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath, argument
122 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
129 // vfs - pointer to the sqlite3_vfs object.
/external/chromium/base/
H A Dfile_util_linux.cc10 #include <sys/vfs.h>
/external/javasqlite/src/main/java/SQLite/
H A DJDBCDriver.java12 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);
H A DDatabase.java53 * @param vfs VFS name (for SQLite >= 3.5)
56 public void open(String filename, int mode, String vfs) argument
66 _open4(filename, mode, vfs, false);
82 * @param vfs VFS name (for SQLite >= 3.5)
86 public void open(String filename, int mode, String vfs, boolean ver2) argument
96 _open4(filename, mode, vfs, ver2);
118 private native void _open4(String filename, int mode, String vfs, argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dunixfilesystem.cc492 struct statvfs vfs;
493 memset(&vfs, 0, sizeof(vfs));
494 if (0 != statvfs(existing_path.pathname().c_str(), &vfs))
498 *freebytes = static_cast<int64>(vfs.f_bsize) * vfs.f_bavail;
500 *freebytes = static_cast<int64>(vfs.f_frsize) * vfs.f_bavail;
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCConnection.java27 protected String vfs; field in class:JDBCConnection
114 SQLite.Constants.SQLITE_OPEN_CREATE), vfs);
145 String vfs)
156 this.vfs = vfs;
144 JDBCConnection(String url, String enc, String pwd, String drep, String vfs) argument
/external/e2fsprogs/util/
H A Dcopy_sparse.c39 #include <sys/vfs.h>
/external/kernel-headers/original/linux/nfsd/
H A Dxdr.h11 #include <linux/vfs.h>
/external/e2fsprogs/misc/
H A Dfilefrag.c39 #include <sys/vfs.h>
/external/chromium/crypto/
H A Dnss_util.cc18 #include <sys/vfs.h>
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c1054 jstring vfs, jboolean ver2)
1135 if (vfs) {
1136 trans2iso(env, 1, h->enc, vfs, &vfsname);
1053 Java_SQLite_Database__1open4(JNIEnv *env, jobject obj, jstring file, jint mode, jstring vfs, jboolean ver2) argument
/external/strace/
H A Dfile.c185 #include <sys/vfs.h>
/external/blktrace/
H A Dblktrace.c42 #include <sys/vfs.h>

Completed in 1772 milliseconds

12