HomeSort by relevance Sort by last modified time
    Searched full:mount_point (Results 26 - 50 of 53) sorted by null

12 3

  /external/autotest/server/cros/
factory_install_test.py 163 mount_point = os.path.join(self.tmpdir,
165 if not os.path.exists(mount_point):
166 os.makedirs(mount_point)
171 offset, size, image, mount_point))
172 self.cleanup_tasks.append(lambda: self._umount_partition(mount_point))
173 return mount_point
175 def _umount_partition(self, mount_point):
182 if os.path.exists(mount_point):
183 utils.run("sudo umount -d %s" % mount_point)
184 os.rmdir(mount_point)
    [all...]
  /bootable/recovery/mtdutils/
mtdutils.c 193 mtd_mount_partition(const MtdPartition *partition, const char *mount_point,
202 rv = mount(devname, mount_point, filesystem, flags, NULL);
205 rv = mount(devname, mount_point, filesystem, flags | MS_RDONLY, 0);
208 devname, mount_point, strerror(errno));
210 printf("Mount %s on %s read-only\n", devname, mount_point);
219 rv = stat(mount_point, &st);
225 printf("Fixing execute permissions for %s\n", mount_point);
226 rv = chmod(mount_point, new_mode);
229 mount_point, strerror(errno));
  /system/core/fs_mgr/
fs_mgr_fstab.c 327 ERROR("Error parsing mount_point\n");
330 fstab->recs[cnt].mount_point = strdup(p);
397 free(fstab->recs[i].mount_point);
416 const char *mount_point, const char *fs_type,
431 new_fstab_recs[n].mount_point = strdup(mount_point);
465 int len = strlen(fstab->recs[i].mount_point);
466 if (strncmp(path, fstab->recs[i].mount_point, len) == 0 &&
fs_mgr_format.c 113 rc = format_ext4(fstab->blk_device, fstab->mount_point);
fs_mgr_priv.h 40 * <source> <mount_point> <fs_type> <mount_flags> <fs_options> <fs_mgr_options>
fs_mgr_slotselect.c 48 if (strcmp(fstab->recs[n].mount_point, "/misc") == 0) {
  /system/vold/
TrimTask.cpp 92 if (prev_rec && !strcmp(prev_rec->mount_point, fstab->recs[i].mount_point)) {
96 mPaths.push_back(fstab->recs[i].mount_point);
  /build/tools/releasetools/
edify_generator.py 196 def Mount(self, mount_point, mount_options_by_format=""):
197 """Mount the partition with the given mount_point.
205 p = fstab[mount_point]
217 p.mount_point, mount_flags))
218 self.mounts.add(p.mount_point)
256 p.device, p.length, p.mount_point))
312 def WriteRawImage(self, mount_point, fn, mapfn=None):
318 p = fstab[mount_point]
383 def Unmount(self, mount_point):
384 self.script.append('unmount("%s");' % mount_point)
    [all...]
common.py 299 def __init__(self, mount_point, fs_type, device, length, device2, context):
300 self.mount_point = mount_point
334 mount_point = pieces[0]
342 print "%s: unknown option \"%s\"" % (mount_point, i)
344 d[mount_point] = Partition(mount_point=mount_point, fs_type=pieces[1],
381 mount_point = pieces[1]
382 d[mount_point] = Partition(mount_point=mount_point, fs_type=pieces[2]
    [all...]
add_img_to_target_files 158 mount_point = "/" + what
159 if fstab and mount_point in fstab:
160 image_props["fs_type"] = fstab[mount_point].fs_type
add_img_to_target_files.py 158 mount_point = "/" + what
159 if fstab and mount_point in fstab:
160 image_props["fs_type"] = fstab[mount_point].fs_type
  /docs/source.android.com/src/devices/tech/ota/
inside_packages.jd 156 fs_size</i>, <i>mount_point</i>)</code></dt>
174 <li>mount_point should be the future mount point for the filesystem.</li></ul>
189 <dt><code>is_mounted(<i>mount_point</i>)</code></dt>
190 <dd>Returns true iff there is a filesystem mounted at <i>mount_point</i>.</dd>
197 <i>mount_point</i>)</code></dt>
198 <dd>Mounts a filesystem of <i>fs_type</i> at <i>mount_point</i>.
268 <dt><code>unmount(<i>mount_point</i>)</code></dt>
269 <dd>Unmounts the filesystem mounted at <i>mount_point</i>.</dd>
  /external/autotest/client/site_tests/hardware_UsbBasicFileOperations/
hardware_UsbBasicFileOperations.py 20 mount_point = storage['mountpoint']
26 dir=mount_point)
  /external/vboot_reference/scripts/image_signing/
make_dev_ssd.sh 75 local mount_point="$(make_temp_dir)"
78 mount_image_partition "$image" 12 "$mount_point" || return $FLAGS_FALSE
79 config_file="$mount_point/efi/boot/grub.cfg"
82 config_file="$mount_point/syslinux/default.cfg"
85 sudo umount "$mount_point"
  /docs/source.android.com/src/devices/storage/
config.jd 32 <pre><code>dev_mount &lt;label&gt; &lt;mount_point&gt; &lt;partition&gt; &lt;sysfs_path&gt; [flags]
36 <li><code>mount_point</code>: Filesystem path where the volume should be mounted.</li>
52 <li><code>mount_point</code>: Filesystem path where the volume should be mounted.</li>
  /external/autotest/client/cros/
cryptohome.py 246 def __get_mount_info(mount_point, allow_fail=False):
252 'grep %s %s' % (mount_point, cryptohomed_path),
258 % os.path.dirname(str(mount_point)))
270 return [__get_mount_info(mount_point=user_path(user),
272 __get_mount_info(mount_point=system_path(user),
  /build/core/tasks/tools/
build_custom_image.mk 90 $(hide) echo "mount_point=$(PRIVATE_MOUNT_POINT)" >> $(PRIVATE_INTERMEDIATES)/image_info.txt
  /external/autotest/client/virt/
virt_utils.py     [all...]
  /system/extras/tests/fstest/
recovery_test.cpp 202 if (!strcmp(fstab->recs[i].mount_point, "/cache")) {
  /bootable/recovery/uncrypt/
uncrypt.cpp 192 if (!v->mount_point) {
195 int len = strlen(v->mount_point);
196 if (strncmp(path, v->mount_point, len) == 0 &&
  /external/squashfs-tools/squashfs-tools/
xattr.c 108 extern char *mount_point;
702 if (mount_point) {
704 alloc_mounted_path(mount_point, subpathname(dir_ent), &mounted_path);
  /external/lzma/CPP/Windows/
FileLink.cpp 43 MOUNT_POINT (Junction point):
  /system/core/init/
readme.txt 372 verity_update_state <mount_point>
374 set the partition.<mount_point>.verified properties used by adb remount
builtins.cpp 803 static void verity_update_property(fstab_rec *fstab, const char *mount_point,
805 property_set(android::base::StringPrintf("partition.%s.verified", mount_point).c_str(),
    [all...]
  /external/e2fsprogs/misc/
e4defrag.c 260 * @mount_point: the mount point.
263 static int get_mount_point(const char *devname, char *mount_point,
298 strncpy(mount_point, mnt->mnt_dir,
    [all...]

Completed in 780 milliseconds

12 3