HomeSort by relevance Sort by last modified time
    Searched defs:mount_point (Results 1 - 9 of 9) sorted by null

  /bootable/recovery/
mounts.cpp 34 std::string mount_point; member in struct:MountedVolume
56 v->mount_point = e->mnt_dir;
65 MountedVolume* find_mounted_volume_by_mount_point(const char* mount_point) {
67 if (g_mounts_state[i]->mount_point == mount_point) return g_mounts_state[i];
75 std::string mount_point = volume->mount_point; local
76 volume->mount_point.clear();
77 int result = umount(mount_point.c_str());
79 PLOG(WARNING) << "Failed to umount " << mount_point;
    [all...]
  /bootable/recovery/tests/component/
sideload_test.cpp 62 TemporaryDir mount_point; local
65 ASSERT_EQ(0, run_fuse_sideload(vtab, 16384, 4096, mount_point.path));
69 std::string package = std::string(mount_point.path) + "/" + FUSE_SIDELOAD_HOST_FILENAME;
91 std::string exit_flag = std::string(mount_point.path) + "/" + FUSE_SIDELOAD_HOST_EXIT_FLAG;
  /system/core/fs_mgr/include_fstab/fstab/
fstab.h 41 char* mount_point; member in struct:fstab_rec
68 int fs_mgr_add_entry(struct fstab* fstab, const char* mount_point, const char* fs_type,
  /bootable/recovery/updater/
install.cpp 335 // mount(fs_type, partition_type, location, mount_point)
336 // mount(fs_type, partition_type, location, mount_point, mount_options)
352 const std::string& mount_point = args[3]; local
369 if (mount_point.empty()) {
370 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
378 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
382 mkdir(mount_point.c_str(), 0755);
390 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
392 uiPrintf(state, "%s: Failed to mount %s at %s: %s", name, location.c_str(), mount_point.c_str(),
397 return StringValue(mount_point);
410 const std::string& mount_point = args[0]; local
433 const std::string& mount_point = args[0]; local
490 const std::string& mount_point = args[4]; local
    [all...]
  /build/make/tools/releasetools/
common.py 293 def __init__(self, mount_point, fs_type, device, length, context):
294 self.mount_point = mount_point
341 mount_point = pieces[1] variable in class:LoadRecoveryFSTab.Partition
342 d[mount_point] = Partition(mount_point=mount_point, fs_type=pieces[2],
826 mount_point = "/" + target
831 if mount_point == "/userdata":
832 mount_point = "/data
    [all...]
  /system/core/fs_mgr/
fs_mgr.cpp 442 check_fs(blk_device, rec->fs_type, rec->mount_point, &fs_stat);
578 i < fstab->num_entries && !strcmp(fstab->recs[start_idx].mount_point, fstab->recs[i].mount_point);
587 << fstab->recs[i].mount_point << " rec[" << i
597 << fstab->recs[i].mount_point << " rec[" << i
605 if (!__mount(fstab->recs[i].blk_device, fstab->recs[i].mount_point,
611 << " on " << fstab->recs[i].mount_point
627 fstab->recs[i].mount_point, &fs_stat);
733 "%s/misc/vold/convert_fde", rec->mount_point);
740 "%s/convert_fbe", rec->mount_point);
1046 char* mount_point; local
1128 PERROR << "Cannot mount filesystem on " << n_blk_device << " at " << mount_point; local
1378 std::string mount_point; local
    [all...]
fs_mgr_fstab.cpp 448 std::string mount_point; local
453 mount_point = value;
455 mount_point = android::base::StringPrintf("/%s", dp->d_name);
457 fstab_entry.push_back(mount_point);
479 // Adds a fstab_entry to fstab_dt_entries, to be sorted by mount_point later.
480 fstab_dt_entries.emplace_back(mount_point, android::base::Join(fstab_entry, " "));
581 LERROR << "Error parsing mount_point";
584 fstab->recs[cnt].mount_point = strdup(p);
837 free(fstab->recs[i].mount_point);
858 const char *mount_point, const char *fs_type
    [all...]
  /external/f2fs-tools/include/
f2fs_fs.h 376 char *mount_point; member in struct:f2fs_configuration
    [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 91 char *mount_point = NULL; variable
899 char * mount_point, FILE *block_map_file) {
914 fprintf(block_map_file, "/%s", mount_point);
1012 write_block_map_entry(sub_path, start_block, total_size, mount_point, block_map_file);
1052 write_block_map_entry(sub_path, start_block, total_size, mount_point, block_map_file);
    [all...]

Completed in 361 milliseconds