Home
last modified time | relevance | path

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

/external/autotest/client/cros/
Dcryptohome.py286 for mount_info in user_mount_info:
287 if (len(mount_info) < 3 or
288 not re.match(device_regex, mount_info[0]) or
289 not re.match(fs_regex, mount_info[2])):
309 return [mount_info[0]
310 for mount_info
312 if len(mount_info)]
/external/selinux/policycoreutils/setfiles/
Drestore.c650 char *mount_info[4]; in exclude_non_seclabel_mounts() local
668 mount_info[index] = item; in exclude_non_seclabel_mounts()
682 remove_exclude(mount_info[1]); in exclude_non_seclabel_mounts()
684 item = strtok(mount_info[3], ","); in exclude_non_seclabel_mounts()
688 nfile += file_system_count(mount_info[1]); in exclude_non_seclabel_mounts()
696 add_exclude(mount_info[1]); in exclude_non_seclabel_mounts()
/external/autotest/client/bin/
Djob_unittest.py574 def _setup_check_post_reboot(self, mount_info, cpu_count): argument
590 self.job._state.set('client', 'mount_info', mount_info)
597 mount_info = set([("/dev/hda1", "/mnt/hda1"),
599 self._setup_check_post_reboot(mount_info, 8)
609 mount_info = set([("/dev/hda1", "/mnt/hda1")])
610 self._setup_check_post_reboot(mount_info, None)
626 mount_info = set([("/dev/hda1", "/mnt/hda1"),
628 self._setup_check_post_reboot(mount_info, 4)
Djob.py754 mount_info = partition_lib.get_mount_info(partition_list)
756 if mount_info != old_mount_info:
757 new_entries = mount_info - old_mount_info
758 old_entries = old_mount_info - mount_info
873 mount_info = partition_lib.get_mount_info(partition_list)
874 self._state.set('client', 'mount_info', mount_info)
Dpartition.py184 mount_info = set()
191 mount_info.add((uuid, p.get_mountpoint()))
193 return mount_info