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

/external/linux-tools-perf/perf-3.12.0/tools/lib/lk/
H A Ddebugfs.c62 /* verify that a mountpoint is actually a debugfs instance */
77 char *debugfs_mount(const char *mountpoint) argument
87 if (mountpoint == NULL) {
89 mountpoint = getenv(PERF_DEBUGFS_ENVIRONMENT);
91 if (mountpoint == NULL)
92 mountpoint = "/sys/kernel/debug";
95 if (mount(NULL, mountpoint, "debugfs", 0, NULL) < 0)
98 /* save the mountpoint */
100 strncpy(debugfs_mountpoint, mountpoint, sizeof(debugfs_mountpoint));
/external/qemu/android/filesystems/
H A Dext4_utils.cpp73 const char *mountpoint) {
74 int ret = ::make_ext4fs(filePath, size, mountpoint, NULL);
71 android_createEmptyExt4Image(const char *filePath, uint64_t size, const char *mountpoint) argument
/external/qemu/distrib/ext4_utils/src/
H A Dmake_ext4fs_main.c54 fprintf(stderr, " [ -L <label> ] [ -f ] [ -a <android mountpoint> ]\n");
65 char *mountpoint = NULL; local
108 mountpoint = optarg;
154 if (!sehnd && mountpoint) {
203 exitcode = make_ext4fs_internal(fd, directory, mountpoint, fs_config_func, gzip,
H A Dmake_ext4fs.c390 const char *mountpoint, struct selabel_handle *sehnd)
395 return make_ext4fs_internal(fd, NULL, mountpoint, NULL, 0, 1, 0, 0, sehnd, 0);
399 const char *mountpoint, struct selabel_handle *sehnd)
413 status = make_ext4fs_internal(fd, NULL, mountpoint, NULL, 0, 0, 0, 1, sehnd, 0);
486 char *mountpoint; local
493 mountpoint = strdup("");
495 mountpoint = canonicalize_abs_slashes(_mountpoint);
587 root_inode_num = build_default_directory_structure(mountpoint, sehnd);
590 root_inode_num = build_directory_structure(directory, mountpoint, 0,
593 root_inode_num = build_default_directory_structure(mountpoint, sehn
389 make_ext4fs_sparse_fd(int fd, long long len, const char *mountpoint, struct selabel_handle *sehnd) argument
398 make_ext4fs(const char *filename, long long len, const char *mountpoint, struct selabel_handle *sehnd) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcgroup.c14 char mountpoint[PATH_MAX + 1], tokens[PATH_MAX + 1], type[PATH_MAX + 1]; local
29 mountpoint, type, tokens) == 3) {
50 if (strlen(mountpoint) < maxlen) {
51 strcpy(buf, mountpoint);
H A Dutil.c248 static void set_tracing_events_path(const char *mountpoint) argument
251 mountpoint, "tracing/events");
254 const char *perf_debugfs_mount(const char *mountpoint) argument
258 mnt = debugfs_mount(mountpoint);

Completed in 846 milliseconds