Searched refs:fstab_file (Results 1 – 2 of 2) sorted by relevance
/system/core/fs_mgr/include/ |
D | fs_mgr.h | 20 int fs_mgr_mount_all(char *fstab_file); 21 int fs_mgr_do_mount(char *fstab_file, char *n_name, char *n_blk_dev, char *tmp_mnt_point); 23 int fs_mgr_unmount_all(char *fstab_file); 24 int fs_mgr_get_crypt_info(char *fstab_file, char *key_loc, char *real_blk_dev, int size);
|
/system/core/fs_mgr/ |
D | fs_mgr.c | 232 FILE *fstab_file; in read_fstab() local 243 fstab_file = fopen(fstab_path, "r"); in read_fstab() 244 if (!fstab_file) { in read_fstab() 250 while (getline(line, sizeof(line), fstab_file)) { in read_fstab() 274 fseek(fstab_file, 0, SEEK_SET); in read_fstab() 277 while (getline(line, sizeof(line), fstab_file)) { in read_fstab() 343 fclose(fstab_file); in read_fstab() 446 int fs_mgr_mount_all(char *fstab_file) in fs_mgr_mount_all() argument 454 if (!(fstab = read_fstab(fstab_file))) { in fs_mgr_mount_all() 507 int fs_mgr_do_mount(char *fstab_file, char *n_name, char *n_blk_dev, char *tmp_mnt_point) in fs_mgr_do_mount() argument [all …]
|