HomeSort by relevance Sort by last modified time
    Searched refs:fstab (Results 1 - 25 of 46) sorted by null

1 2

  /system/core/fs_mgr/include/
fs_mgr.h 24 struct fstab { struct
43 struct fstab *fs_mgr_read_fstab(const char *fstab_path);
44 void fs_mgr_free_fstab(struct fstab *fstab);
45 int fs_mgr_mount_all(struct fstab *fstab);
46 int fs_mgr_do_mount(struct fstab *fstab, char *n_name, char *n_blk_device,
49 int fs_mgr_unmount_all(struct fstab *fstab);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
fstab.h 29 * @(#)fstab.h 8.1 (Berkeley) 6/2/93
38 * File system table, see fstab(5).
48 #define _PATH_FSTAB "/etc/fstab"
49 #define FSTAB "/etc/fstab" /* deprecated */
57 struct fstab struct
71 extern struct fstab *getfsent (void) __THROW;
72 extern struct fstab *getfsspec (__const char *__name) __THROW;
73 extern struct fstab *getfsfile (__const char *__name) __THROW;
79 #endif /* fstab.h *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
fstab.h 29 * @(#)fstab.h 8.1 (Berkeley) 6/2/93
38 * File system table, see fstab(5).
48 #define _PATH_FSTAB "/etc/fstab"
49 #define FSTAB "/etc/fstab" /* deprecated */
57 struct fstab struct
71 extern struct fstab *getfsent (void) __THROW;
72 extern struct fstab *getfsspec (__const char *__name) __THROW;
73 extern struct fstab *getfsfile (__const char *__name) __THROW;
79 #endif /* fstab.h *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
fstab.h 29 * @(#)fstab.h 8.1 (Berkeley) 6/2/93
38 * File system table, see fstab(5).
48 #define _PATH_FSTAB "/etc/fstab"
49 #define FSTAB "/etc/fstab" /* deprecated */
57 struct fstab struct
71 extern struct fstab *getfsent (void) __THROW;
72 extern struct fstab *getfsspec (__const char *__name) __THROW;
73 extern struct fstab *getfsfile (__const char *__name) __THROW;
79 #endif /* fstab.h *
    [all...]
  /system/core/fs_mgr/
fs_mgr.c 275 struct fstab *fs_mgr_read_fstab(const char *fstab_path)
283 struct fstab *fstab; local
317 ERROR("No entries found in fstab\n");
321 /* Allocate and init the fstab structure */
322 fstab = calloc(1, sizeof(struct fstab));
323 fstab->num_entries = entries;
324 fstab->fstab_filename = strdup(fstab_path);
325 fstab->recs = calloc(fstab->num_entries, sizeof(struct fstab_rec))
    [all...]
fs_mgr_main.c 86 struct fstab *fstab; local
93 /* The name of the fstab file is last, after the option */
96 fstab = fs_mgr_read_fstab(fstab_file);
99 return fs_mgr_mount_all(fstab);
101 return fs_mgr_do_mount(fstab, n_name, n_blk_dev, 0);
103 return fs_mgr_unmount_all(fstab);
109 fs_mgr_free_fstab(fstab);
  /system/vold/
fstrim.c 60 extern struct fstab *fstab;
67 for (i = 0; i < fstab->num_entries; i++) {
69 if (!strcmp(fstab->recs[i].fs_type, "emmc") ||
70 !strcmp(fstab->recs[i].fs_type, "mtd")) {
74 if (fstab->recs[i].flags & MS_RDONLY) {
77 if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
81 if (stat(fstab->recs[i].mount_point, &sb) == -1) {
82 SLOGE("Cannot stat mount point %s\n", fstab->recs[i].mount_point);
87 SLOGE("%s is not a directory\n", fstab->recs[i].mount_point)
    [all...]
main.cpp 43 #define FSTAB_PREFIX "/fstab."
44 struct fstab *fstab; variable in typeref:struct:fstab
165 fstab = fs_mgr_read_fstab(fstab_filename);
166 if (!fstab) {
172 for (i = 0; i < fstab->num_entries; i++) {
173 if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
177 dv = new DirectVolume(vm, fstab->recs[i].label,
178 fstab->recs[i].mount_point,
179 fstab->recs[i].partnum)
    [all...]
  /external/e2fsprogs/install-utils/
convfstab 2 # Make /etc/fstab standard compliant.
20 # Actually there are no comments allowed in /etc/fstab
21 echo "Warning: comment in /etc/fstab detected." >&2
69 done </etc/fstab >/tmp/newfstab.$$
70 mv -f /etc/fstab /etc/fstab.bak
71 mv -f /tmp/newfstab.$$ /etc/fstab
74 echo "Installation of patched /etc/fstab failed."
  /device/asus/tilapia/
releasetools.py 68 fstab = info.info_dict["fstab"]
73 (fstab["/staging"].device,))
77 fstab = info.info_dict["fstab"]
85 (fstab["/radio"].device, fstab["/radio"].device))
device.mk 23 device/asus/tilapia/fstab.grouper:root/fstab.grouper \
  /device/asus/flo/
device.mk 26 device/asus/flo/fstab.flo:root/fstab.flo \
BoardConfig.mk 27 TARGET_RECOVERY_FSTAB = device/asus/flo/recovery.fstab
  /bootable/recovery/
roots.cpp 32 static struct fstab *fstab = NULL; variable in typeref:struct:fstab
41 fstab = fs_mgr_read_fstab("/etc/recovery.fstab");
42 if (!fstab) {
43 LOGE("failed to read /etc/recovery.fstab\n");
47 ret = fs_mgr_add_entry(fstab, "/tmp", "ramdisk", "ramdisk", 0);
49 LOGE("failed to add /tmp entry to fstab\n");
50 fs_mgr_free_fstab(fstab);
51 fstab = NULL
    [all...]
  /device/asus/deb/
device.mk 23 device/asus/deb/fstab.deb:root/fstab.flo \
BoardConfig.mk 27 TARGET_RECOVERY_FSTAB = device/asus/deb/recovery.fstab
  /build/tools/releasetools/
img_from_target_files 80 fstab = OPTIONS.info_dict["fstab"]
81 if fstab:
82 image_props["fs_type" ] = fstab["/system"].fs_type
122 fstab = OPTIONS.info_dict["fstab"]
123 if fstab:
124 image_props["fs_type" ] = fstab["/vendor"].fs_type
154 fstab = OPTIONS.info_dict["fstab"]
    [all...]
edify_generator.py 136 fstab = self.info.get("fstab", None)
137 if fstab:
138 p = fstab[mount_point]
165 fstab = self.info.get("fstab", None)
166 if fstab:
167 p = fstab[partition]
196 fstab = self.info["fstab"]
    [all...]
  /build/target/product/
emulator.mk 60 device/generic/goldfish/fstab.goldfish:root/fstab.goldfish \
  /device/samsung/manta/
releasetools.py 64 fstab = info.info_dict["fstab"]
BoardConfig.mk 54 TARGET_RECOVERY_FSTAB = device/samsung/manta/fstab.manta
  /device/ti/panda/
BoardConfig.mk 59 TARGET_RECOVERY_FSTAB = device/ti/panda/fstab.omap4pandaboard
  /device/samsung/toro/
releasetools.py 104 fstab = info.info_dict["fstab"]
109 (fstab["/xloader"].device, fstab["/sbl"].device))
  /device/samsung/toroplus/
releasetools.py 104 fstab = info.info_dict["fstab"]
109 (fstab["/xloader"].device, fstab["/sbl"].device))
  /device/samsung/tuna/
releasetools.py 87 fstab = info.info_dict["fstab"]
92 (fstab["/xloader"].device, fstab["/sbl"].device))

Completed in 452 milliseconds

1 2