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

  /external/bluetooth/glib/gio/
gmountprivate.h 30 GMount *_g_mount_get_for_mount_path (const char *mount_path,
gunixmounts.c 110 char *mount_path; member in struct:_GUnixMountEntry
118 char *mount_path; member in struct:_GUnixMountPoint
205 * @mount_path: a mount path, e.g. <filename>/media/disk</filename>
208 * Determines if @mount_path is considered an implementation of the
213 * Returns: %TRUE if @mount_path is considered an implementation detail
217 g_unix_is_mount_path_system_internal (const char *mount_path)
249 if (is_in (mount_path, ignore_mountpoints))
252 if (g_str_has_prefix (mount_path, "/dev") ||
253 g_str_has_prefix (mount_path, "/proc") ||
254 g_str_has_prefix (mount_path, "/sys")
1936 const char *mount_path; local
    [all...]
gnativevolumemonitor.h 28 GMount * (* get_mount_for_mount_path) (const char *mount_path,
gunixvolumemonitor.h 59 const char *mount_path);
gwin32volumemonitor.h 61 const char *mount_path);
gunixvolumemonitor.c 163 get_mount_for_mount_path (const char *mount_path,
169 mount_entry = g_unix_mount_at (mount_path, NULL);
304 * @mount_path:
306 * Returns: #GUnixVolume for the given @mount_path.
310 const char *mount_path)
318 if (_g_unix_volume_has_mount_path (volume, mount_path))
327 const char *mount_path)
335 if (_g_unix_mount_has_mount_path (mount, mount_path))
402 const char *mount_path; local
431 mount_path = g_unix_mount_get_mount_path (mount_entry)
    [all...]
gunixmount.h 52 const char *mount_path);
gunixvolume.h 51 const char *mount_path);
gunixmount.c 60 char *mount_path; member in struct:_GUnixMount
90 g_free (mount->mount_path);
122 mount->mount_path = g_strdup (g_unix_mount_get_mount_path (mount_entry));
168 return g_file_new_for_path (unix_mount->mount_path);
195 const char *mount_path)
197 return strcmp (mount->mount_path, mount_path) == 0;
410 if (unix_mount->mount_path != NULL)
411 argv[1] = unix_mount->mount_path;
436 if (unix_mount->mount_path != NULL
    [all...]
gunixmounts.h 88 GUnixMountEntry *g_unix_mount_at (const char *mount_path,
98 gboolean g_unix_is_mount_path_system_internal (const char *mount_path);
gwin32mount.c 56 char *mount_path; member in struct:_GWin32Mount
88 g_free (mount->mount_path);
144 mount->mount_path = g_strdup (path);
192 return g_file_new_for_path (win32_mount->mount_path);
213 g_return_val_if_fail (win32_mount->mount_path != NULL, NULL);
219 wchar_t *wfn = g_utf8_to_utf16 (win32_mount->mount_path, -1, NULL, NULL, NULL);
gunixvolume.c 54 char *mount_path; member in struct:_GUnixVolume
86 g_free (volume->mount_path);
127 volume->mount_path = g_strdup (g_unix_mount_point_get_mount_path (mountpoint));
279 const char *mount_path)
281 return strcmp (volume->mount_path, mount_path) == 0;
445 if (unix_volume->mount_path != NULL)
446 argv[1] = unix_volume->mount_path;
gwin32volumemonitor.c 238 get_mount_for_mount_path (const char *mount_path,
244 mount = _g_win32_mount_new (NULL, mount_path, NULL);
gunionvolumemonitor.c 576 * Returns: a #GMount for given @mount_path or %NULL.
579 _g_mount_get_for_mount_path (const char *mount_path,
594 mount = klass->get_mount_for_mount_path (mount_path, cancellable);
  /system/core/toolbox/
umount.c 18 char mount_path[256]; local
30 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest);
32 if (strcmp(LOOP_DEVICE, device) == 0 && strcmp(path, mount_path) == 0) {
  /system/vold/
Volume.cpp 252 char mount_path[256]; local
264 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
265 if (!strcmp(mount_path, path)) {
VolumeManager.cpp 922 char mount_path[256]; local
946 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
948 if (!strncmp(mount_path, loopDir, loopDirLen)) {
1181 char mount_path[256]; local
    [all...]

Completed in 376 milliseconds