HomeSort by relevance Sort by last modified time
    Searched refs:vfs (Results 1 - 25 of 40) sorted by null

1 2

  /bionic/libc/include/sys/
statfs.h 1 #include <sys/vfs.h>
  /ndk/build/platforms/android-3/arch-arm/usr/include/sys/
statfs.h 1 #include <sys/vfs.h>
  /ndk/build/platforms/android-4/arch-arm/usr/include/sys/
statfs.h 1 #include <sys/vfs.h>
  /ndk/build/platforms/android-5/arch-arm/usr/include/sys/
statfs.h 1 #include <sys/vfs.h>
  /ndk/build/platforms/android-5/arch-x86/usr/include/sys/
statfs.h 1 #include <sys/vfs.h>
  /ndk/build/platforms/android-8/arch-arm/usr/include/sys/
statfs.h 1 #include <sys/vfs.h>
  /ndk/build/platforms/android-8/arch-x86/usr/include/sys/
statfs.h 1 #include <sys/vfs.h>
  /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...]
gvfs.h 47 #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...]
glocalvfs.c 64 g_local_vfs_init (GLocalVfs *vfs)
71 * Returns a new #GVfs handle for a local vfs.
82 g_local_vfs_get_file_for_path (GVfs *vfs,
89 g_local_vfs_get_file_for_uri (GVfs *vfs,
121 g_local_vfs_get_supported_uri_schemes (GVfs *vfs)
129 g_local_vfs_parse_name (GVfs *vfs,
138 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
197 g_local_vfs_is_active (GVfs *vfs)
  /bionic/libc/unistd/
statfs.c 28 #include <sys/vfs.h>
  /external/bluetooth/glib/gio/win32/
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...]
gwinhttpfileoutputstream.c 67 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);
gwinhttpfileinputstream.c 72 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);
gwinhttpfile.h 48 GWinHttpVfs *vfs; member in struct:_GWinHttpFile
60 GFile * _g_winhttp_file_new (GWinHttpVfs *vfs, const char *uri);
gwinhttpfile.c 64 g_object_unref (file->vfs);
84 * @vfs: GWinHttpVfs to use
90 _g_winhttp_file_new (GWinHttpVfs *vfs,
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, uri)
    [all...]
gwinhttpvfs.h 96 gboolean _g_winhttp_response (GWinHttpVfs *vfs,
101 gboolean _g_winhttp_query_header (GWinHttpVfs *vfs,
  /external/webkit/WebCore/platform/sql/chromium/
SQLiteFileSystemChromiumPosix.cpp 46 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, int fd, int dirfd, sqlite3_file* file, const char* fileName, int noLock);
52 // Chromium's Posix implementation of SQLite VFS
57 // vfs - pointer to the sqlite3_vfs object.
62 int chromiumOpen(sqlite3_vfs* vfs, const char* fileName,
95 result = chromium_sqlite3_fill_in_unix_sqlite3_file(vfs, fd, dirfd, id, fileName, noLock);
103 // vfs - pointer to the sqlite3_vfs object.
114 // vfs - pointer to the sqlite3_vfs object.
145 // vfs - pointer to the sqlite3_vfs object.
149 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath,
153 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath)
    [all...]
SQLiteFileSystemChromiumWin.cpp 45 // Chromium's Windows implementation of SQLite VFS
50 // 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,
122 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
129 // vfs - pointer to the sqlite3_vfs object.
145 // FIXME: Make sure there aren't any unintended consequences when VFS code is called in the browser process.
  /bionic/libc/private/
syscommon.h 26 #include <sys/vfs.h>
  /bionic/libc/kernel/common/linux/nfsd/
xdr.h 16 #include <linux/vfs.h>
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/nfsd/
xdr.h 16 #include <linux/vfs.h>
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/nfsd/
xdr.h 16 #include <linux/vfs.h>
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/nfsd/
xdr.h 16 #include <linux/vfs.h>
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/nfsd/
xdr.h 16 #include <linux/vfs.h>

Completed in 297 milliseconds

1 2