Lines Matching refs:path
71 Volume* volume_for_path(const char* path) { in volume_for_path() argument
72 return fs_mgr_get_entry_for_mount_point(fstab, path); in volume_for_path()
75 int ensure_path_mounted(const char* path) { in ensure_path_mounted() argument
76 Volume* v = volume_for_path(path); in ensure_path_mounted()
78 LOGE("unknown volume for path [%s]\n", path); in ensure_path_mounted()
128 int ensure_path_unmounted(const char* path) { in ensure_path_unmounted() argument
129 Volume* v = volume_for_path(path); in ensure_path_unmounted()
131 LOGE("unknown volume for path [%s]\n", path); in ensure_path_unmounted()
156 static int exec_cmd(const char* path, char* const argv[]) { in exec_cmd() argument
160 execv(path, argv); in exec_cmd()
165 LOGE("%s failed with status %d\n", path, WEXITSTATUS(status)); in exec_cmd()