HomeSort by relevance Sort by last modified time
    Searched refs:fstab (Results 26 - 50 of 86) sorted by null

12 3 4

  /device/google/marlin/
aosp_sailfish.mk 34 PRODUCT_COPY_FILES += device/google/marlin/fstab.common:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.sailfish
device-marlin.mk 46 device/google/marlin/fstab.common:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.marlin \
device-sailfish.mk 46 device/google/marlin/fstab.common:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.sailfish \
  /device/huawei/angler/
aosp_angler.mk 34 PRODUCT_COPY_FILES += device/huawei/angler/fstab.aosp_angler:root/fstab.angler
  /device/lge/bullhead/
aosp_bullhead.mk 34 PRODUCT_COPY_FILES += device/lge/bullhead/fstab.aosp_bullhead:root/fstab.bullhead
  /system/core/fs_mgr/include/
fs_mgr_avb.h 58 // name to by-name symlink, or a fstab file to which the ByNameSymlinkMap is
85 static FsManagerAvbUniquePtr Open(const fstab& fstab);
88 // Sets up dm-verity on the given fstab entry.
  /device/linaro/hikey/
hikey.mk 8 TARGET_FSTAB := fstab.hikey-$(TARGET_KERNEL_USE)
16 TARGET_FSTAB := fstab.hikey
  /system/core/fs_mgr/
fs_mgr_priv.h 50 /* fstab has the following format:
121 bool fs_mgr_update_for_slotselect(struct fstab *fstab);
126 int load_verity_state(struct fstab_rec* fstab, int* mode);
fs_mgr_verity.cpp 574 static int compare_last_signature(struct fstab_rec *fstab, int *match)
587 if (fec_open(&f, fstab->blk_device, O_RDONLY, FEC_VERITY_DISABLE,
589 PERROR << "Failed to open '" << fstab->blk_device << "'";
595 PERROR << "Failed to get verity metadata '" << fstab->blk_device << "'";
602 basename(fstab->mount_point)) >= (int)sizeof(tag)) {
603 LERROR << "Metadata tag name too long for " << fstab->mount_point;
607 if (metadata_find(fstab->verity_loc, tag, SHA256_DIGEST_LENGTH,
612 fd = TEMP_FAILURE_RETRY(open(fstab->verity_loc, O_RDWR | O_SYNC | O_CLOEXEC));
615 PERROR << "Failed to open " << fstab->verity_loc;
622 << fstab->verity_loc << " offset " << offset
    [all...]
fs_mgr_avb_ops.cpp 124 FsManagerAvbOps::FsManagerAvbOps(const fstab& fstab) {
125 // Constructs the by-name symlink map for each fstab record.
128 for (int i = 0; i < fstab.num_entries; i++) {
129 std::string partition_name = basename(fstab.recs[i].blk_device);
130 by_name_symlink_map_[partition_name] = fstab.recs[i].blk_device;
  /system/vold/
main.cpp 46 struct fstab *fstab; variable in typeref:struct:fstab
220 fstab = fs_mgr_read_fstab_default();
221 if (!fstab) {
222 PLOG(ERROR) << "Failed to open default fstab";
229 for (int i = 0; i < fstab->num_entries; i++) {
230 if (fs_mgr_is_quota(&fstab->recs[i])) {
234 if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
235 if (fs_mgr_is_nonremovable(&fstab->recs[i])) {
240 std::string sysPattern(fstab->recs[i].blk_device)
    [all...]
MetadataCrypt.cpp 45 extern struct fstab *fstab;
61 auto mount_rc = fs_mgr_do_mount(fstab, const_cast<char*>(mount_point),
76 auto data_rec = fs_mgr_get_crypt_entry(fstab);
256 auto data_rec = fs_mgr_get_crypt_entry(fstab);
286 auto data_rec = fs_mgr_get_crypt_entry(fstab);
  /bootable/recovery/
roots.cpp 40 static struct fstab *fstab = NULL; variable in typeref:struct:fstab
49 fstab = fs_mgr_read_fstab_default();
50 if (!fstab) {
51 LOG(ERROR) << "failed to read default fstab";
55 ret = fs_mgr_add_entry(fstab, "/tmp", "ramdisk", "ramdisk");
57 LOG(ERROR) << "failed to add /tmp entry to fstab";
58 fs_mgr_free_fstab(fstab);
59 fstab = NULL;
65 for (i = 0; i < fstab->num_entries; ++i)
    [all...]
  /system/extras/tests/fstest/
recovery_test.cpp 191 struct fstab *fstab = fs_mgr_read_fstab_default(); local
192 if (!fstab) {
193 testPrintE("failed to open default fstab\n");
196 for (int i = 0; i < fstab->num_entries; ++i) {
197 if (!strcmp(fstab->recs[i].mount_point, "/cache")) {
198 strcpy(blk_path_, fstab->recs[i].blk_device);
199 if (!strcmp(fstab->recs[i].fs_type, "ext4")) {
202 } else if (!strcmp(fstab->recs[i].fs_type, "f2fs")) {
208 fs_mgr_free_fstab(fstab);
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
LinuxFileSystem.java 76 * Returns object to iterate over the mount entries in the given fstab file.
78 Iterable<UnixMountEntry> getMountEntries(String fstab) {
81 long fp = setmntent(Util.toBytes(fstab), Util.toBytes("r"));
  /system/core/adb/
remount_service.cpp 55 // Returns the device used to mount a directory in the fstab.
57 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
59 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), dir);
63 // The proc entry for / is full of lies, so check fstab instead.
  /device/generic/qemu/
qemu_base.mk 86 device/generic/goldfish/fstab.goldfish:root/fstab.goldfish \
  /device/generic/uml/
uml.mk 27 PRODUCT_COPY_FILES += $(LOCAL_PATH)/fstab.uml:root/fstab.uml
  /device/linaro/hikey/hikey960/
device-hikey960.mk 20 PRODUCT_COPY_FILES += $(LOCAL_PATH)/fstab.hikey960:root/fstab.hikey960 \
  /build/make/tools/releasetools/
edify_generator.py 23 def __init__(self, version, info, fstab=None):
29 if fstab is None:
30 self.fstab = self.info.get("fstab", None)
32 self.fstab = fstab
216 fstab = self.fstab
217 if fstab:
218 p = fstab[mount_point
    [all...]
  /device/linaro/hikey/hikey/
device-hikey.mk 19 $(LOCAL_PATH)/$(TARGET_FSTAB):root/fstab.hikey \
  /external/ltp/tools/pounder21/test_scripts/
ide_cdrom_copy 53 MOUNTPOINT=`grep "^$DEV[ ]" /etc/fstab | awk -F " " '{print $2}'`
  /bootable/recovery/bootloader_message/
bootloader_message.cpp 33 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
35 if (!fstab) {
36 *err = "failed to read default fstab";
39 fstab_rec* record = fs_mgr_get_entry_for_mount_point(fstab.get(), "/misc");
  /build/make/target/product/
emulator.mk 140 device/generic/goldfish/fstab.ranchu:root/fstab.ranchu \
141 device/generic/goldfish/fstab.ranchu.early:root/fstab.ranchu.early \
  /bootable/recovery/uncrypt/
uncrypt.cpp 139 static struct fstab* fstab = nullptr; variable in typeref:struct:fstab
165 static struct fstab* read_fstab() {
166 fstab = fs_mgr_read_fstab_default();
167 if (!fstab) {
168 LOG(ERROR) << "failed to read default fstab";
172 return fstab;
179 for (int i = 0; i < fstab->num_entries; ++i) {
180 struct fstab_rec* v = &fstab->recs[i];
622 if ((fstab = read_fstab()) == nullptr)
    [all...]

Completed in 714 milliseconds

12 3 4