/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);
|
/external/chromium/chrome/browser/chromeos/cros/ |
mount_library.h | 39 const std::string& mount_path, 54 const std::string& mount_path() const { return mount_path_; } function in class:chromeos::MountLibrary::Disk 78 void set_mount_path(const char* mount_path) { mount_path_ = mount_path; }
|
mount_library.cc | 19 const std::string& mount_path, 32 mount_path_(mount_path), 134 const char* mount_path, 140 mount_path, 148 const char* mount_path, 197 const char* mount_path, 202 if (error == MOUNT_METHOD_ERROR_NONE && device_path && mount_path) { 211 disk->set_mount_path(mount_path); 280 if (disk->mount_path() != NULL) 281 mountpath = disk->mount_path(); [all...] |
/system/core/toolbox/ |
umount.c | 33 char mount_path[256]; local 45 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest); 47 if (is_loop(device) && strcmp(path, mount_path) == 0) {
|
/external/chromium/chrome/browser/chromeos/extensions/ |
file_browser_event_router.cc | 42 result->SetString("mountPath", disk->mount_path()); 150 if (disk->mount_path().empty()) { 179 if (!disk->mount_path().empty()) { 185 disk->mount_path())); 188 FileManagerUtil::ShowFullTabUrl(profile_, FilePath(disk->mount_path())); 216 std::string mount_path; local
|
/system/vold/ |
Volume.cpp | 264 char mount_path[256]; local 276 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest); 277 if (!strcmp(mount_path, path)) {
|
VolumeManager.cpp | 856 char mount_path[256]; local 880 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest); 882 if (!strncmp(mount_path, loopDir, loopDirLen)) { 1136 char mount_path[256]; local 1148 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest); 1149 if (!strcmp(mount_path, mp)) { [all...] |