HomeSort by relevance Sort by last modified time
    Searched refs:fstab_file (Results 1 - 2 of 2) sorted by null

  /system/core/fs_mgr/
fs_mgr_main.c 27 ERROR("%s: usage: %s <-a | -n mnt_point blk_dev | -u> <fstab_file>\n", me, me);
85 char *fstab_file=NULL; local
94 fstab_file = argv[argc - 1];
96 fstab = fs_mgr_read_fstab(fstab_file);
fs_mgr_fstab.c 181 FILE *fstab_file; local
193 fstab_file = fopen(fstab_path, "r");
194 if (!fstab_file) {
200 while ((len = getline(&line, &alloc_len, fstab_file)) != -1) {
227 fseek(fstab_file, 0, SEEK_SET);
230 while ((len = getline(&line, &alloc_len, fstab_file)) != -1) {
301 fclose(fstab_file);
306 fclose(fstab_file);

Completed in 2810 milliseconds