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

  /bootable/recovery/mtdutils/
mounts.c 29 const char *mount_point; member in struct:MountedVolume
50 free((char *)volume->mount_point);
94 v->mount_point = strdup(mentry->mnt_dir);
122 find_mounted_volume_by_mount_point(const char *mount_point)
130 if (v->mount_point != NULL) {
131 if (strcmp(v->mount_point, mount_point) == 0) {
147 int ret = umount(volume->mount_point);
158 return mount(volume->device, volume->mount_point, volume->filesystem,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
volume.py 59 if not params.get('mount_point', None):
60 prop = self.cls.find_property('mount_point')
61 params['mount_point'] = propget.get(prop)
83 mount_point = StringProperty(verbose_name='Mount Point') variable in class:Volume
109 v.mount_point = params.get('mount_point')
148 v.mount_point = self.mount_point
261 if not cmd.isdir(self.mount_point):
264 cmd.run("mkdir %s" % self.mount_point)
    [all...]
  /system/core/fs_mgr/include/
fs_mgr.h 63 char *mount_point; member in struct:fstab_rec
80 const char *mount_point, int mode, int status);
106 const char *mount_point, const char *fs_type,
  /system/core/fs_mgr/
fs_mgr_verity.cpp 647 basename(fstab->mount_point)) >= (int)sizeof(tag)) {
648 ERROR("Metadata tag name too long for %s\n", fstab->mount_point);
695 basename(fstab->mount_point)) >= (int)sizeof(tag)) {
696 ERROR("Metadata tag name too long for %s\n", fstab->mount_point);
797 const char *mount_point; local
840 if (system_root && !strcmp(fstab->recs[i].mount_point, "/")) {
841 mount_point = "system";
843 mount_point = basename(fstab->recs[i].mount_point);
846 verity_ioctl_init(io, mount_point, 0)
914 char *mount_point = basename(fstab->mount_point); local
    [all...]
  /bootable/recovery/updater/
install.cpp 110 // mount(fs_type, partition_type, location, mount_point)
122 char* mount_point; local
128 &location, &mount_point, &mount_options) < 0) {
134 &location, &mount_point) < 0) {
152 if (strlen(mount_point) == 0) {
153 ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
162 selabel_lookup(sehandle, &secontext, mount_point, 0755);
166 mkdir(mount_point, 0755);
184 if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) {
190 result = mount_point;
219 char* mount_point; local
249 char* mount_point; local
311 char* mount_point; local
    [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 91 char *mount_point = NULL; variable
867 char * mount_point, FILE *block_map_file) {
872 fprintf(block_map_file, "/%s", mount_point);
970 write_block_map_entry(sub_path, start_block, total_size, mount_point, block_map_file);
1010 write_block_map_entry(sub_path, start_block, total_size, mount_point, block_map_file);
    [all...]

Completed in 721 milliseconds