Home
last modified time | relevance | path

Searched refs:mount_info (Results 1 – 7 of 7) sorted by relevance

/external/chromium-trace/catapult/telemetry/telemetry/core/
Dcros_interface.py481 mount_info = self._GetMountSourceAndTarget(path)
482 return mount_info[0] if mount_info else None
495 mount_info = self._GetMountSourceAndTarget(profile_path)
496 if mount_info:
499 is_guestfs = (mount_info[0] == 'guestfs')
500 return is_guestfs == is_guest and mount_info[1] == profile_path
/external/linux-kselftest/tools/testing/selftests/pstore/
Dpstore_post_reboot_tests20 mount_info=`grep pstore /proc/mounts`
22 mount_point=`echo ${mount_info} | cut -d' ' -f2 | head -n1`
/external/autotest/client/cros/
Dcryptohome.py305 for mount_info in user_mount_info:
310 if len(mount_info) < 3:
315 if re.match(fs_regex, mount_info[2]):
325 if not re.match(device_regex, mount_info[0]):
328 if re.match(constants.CRYPTOHOME_FS_REGEX_EXT4, mount_info[2]):
331 find_key_cmd_list = ['e4crypt get_policy %s' % (mount_info[1]),
/external/autotest/client/bin/
Djob_unittest.py449 def _setup_check_post_reboot(self, mount_info, cpu_count): argument
465 self.job._state.set('client', 'mount_info', mount_info)
472 mount_info = set([("/dev/hda1", "/mnt/hda1"),
474 self._setup_check_post_reboot(mount_info, 8)
484 mount_info = set([("/dev/hda1", "/mnt/hda1")])
485 self._setup_check_post_reboot(mount_info, None)
501 mount_info = set([("/dev/hda1", "/mnt/hda1"),
503 self._setup_check_post_reboot(mount_info, 4)
Djob.py704 mount_info = partition_lib.get_mount_info(partition_list)
706 if mount_info != old_mount_info:
707 new_entries = mount_info - old_mount_info
708 old_entries = old_mount_info - mount_info
765 mount_info = partition_lib.get_mount_info(partition_list)
766 self._state.set('client', 'mount_info', mount_info)
Dpartition.py186 mount_info = set()
193 mount_info.add((uuid, p.get_mountpoint()))
195 return mount_info
/external/selinux/libselinux/src/
Dselinux_restorecon.c238 char *mount_info[4]; in exclude_non_seclabel_mounts() local
254 mount_info[index] = item; in exclude_non_seclabel_mounts()
268 remove_exclude(mount_info[1]); in exclude_non_seclabel_mounts()
270 item = strtok(mount_info[3], ","); in exclude_non_seclabel_mounts()
274 nfile += file_system_count(mount_info[1]); in exclude_non_seclabel_mounts()
282 if (add_exclude(mount_info[1], !CALLER_EXCLUDED) && in exclude_non_seclabel_mounts()