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.cpp 31 << " <-a | -n mnt_point blk_dev | -u> <fstab_file>";
89 const char *fstab_file=NULL; local
99 fstab_file = argv[argc - 1];
101 fstab = fs_mgr_read_fstab(fstab_file);
fs_mgr_fstab.cpp 479 static struct fstab *fs_mgr_read_fstab_file(FILE *fstab_file)
493 while ((len = getline(&line, &alloc_len, fstab_file)) != -1) {
520 fseek(fstab_file, 0, SEEK_SET);
523 while ((len = getline(&line, &alloc_len, fstab_file)) != -1) {
654 FILE *fstab_file; local
657 fstab_file = fopen(fstab_path, "r");
658 if (!fstab_file) {
663 fstab = fs_mgr_read_fstab_file(fstab_file);
670 fclose(fstab_file);
685 std::unique_ptr<FILE, decltype(&fclose)> fstab_file(
    [all...]

Completed in 154 milliseconds