Searched defs:mountpoint (Results 1 - 6 of 6) sorted by relevance

/external/linux-tools-perf/util/
H A Dcgroup.c15 char mountpoint[MAX_PATH+1], tokens[MAX_PATH+1], type[MAX_PATH+1]; local
30 mountpoint, type, tokens) == 3) {
51 if (strlen(mountpoint) < maxlen) {
52 strcpy(buf, mountpoint);
H A Ddebugfs.c84 /* verify that a mountpoint is actually a debugfs instance */
115 char *debugfs_mount(const char *mountpoint) argument
126 if (mountpoint == NULL) {
128 mountpoint = getenv(PERF_DEBUGFS_ENVIRONMENT);
130 if (mountpoint == NULL)
131 mountpoint = "/sys/kernel/debug";
134 if (mount(NULL, mountpoint, "debugfs", 0, NULL) < 0)
137 /* save the mountpoint */
138 strncpy(debugfs_mountpoint, mountpoint, sizeof(debugfs_mountpoint));
/external/bluetooth/glib/gio/
H A Dgunixvolumemonitor.c360 GUnixMountPoint *mountpoint = l->data; local
363 g_unix_mount_point_get_mount_path (mountpoint));
376 GUnixMountPoint *mountpoint = l->data; local
378 volume = _g_unix_volume_new (G_VOLUME_MONITOR (monitor), mountpoint);
H A Dgunixvolume.c110 * @mountpoint: a #GUnixMountPoint.
116 GUnixMountPoint *mountpoint)
120 if (!(g_unix_mount_point_is_user_mountable (mountpoint) ||
121 g_str_has_prefix (g_unix_mount_point_get_device_path (mountpoint), "/vol/")) ||
122 g_unix_mount_point_is_loopback (mountpoint))
127 volume->mount_path = g_strdup (g_unix_mount_point_get_mount_path (mountpoint));
128 volume->device_path = g_strdup (g_unix_mount_point_get_device_path (mountpoint));
129 volume->can_eject = g_unix_mount_point_guess_can_eject (mountpoint);
131 volume->name = g_unix_mount_point_guess_name (mountpoint);
132 volume->icon = g_unix_mount_point_guess_icon (mountpoint);
115 _g_unix_volume_new(GVolumeMonitor *volume_monitor, GUnixMountPoint *mountpoint) argument
[all...]
H A Dglocalfile.c766 char *mountpoint; local
797 mountpoint = find_mountpoint_for (path, buf.st_dev);
798 if (mountpoint == NULL)
799 mountpoint = g_strdup ("/");
801 mount = g_unix_mount_at (mountpoint, &cache_time);
810 g_free (mountpoint);
1073 char *mountpoint; local
1086 mountpoint = find_mountpoint_for (local->filename, buf.st_dev);
1087 if (mountpoint == NULL)
1097 mount = _g_mount_get_for_mount_path (mountpoint, cancellabl
[all...]
H A Dgunixmounts.c264 guess_system_internal (const char *mountpoint, argument
305 if (g_unix_is_mount_path_system_internal (mountpoint))
377 * the most important mountpoint is first and the --bind ones after

Completed in 333 milliseconds