Home | History | Annotate | Download | only in fs_mgr

Lines Matching refs:fstab_path

725 struct fstab *fs_mgr_read_fstab(const char *fstab_path)
730 fstab_file = fopen(fstab_path, "r");
732 PERROR << __FUNCTION__<< "(): cannot open file: '" << fstab_path << "'";
738 fstab->fstab_filename = strdup(fstab_path);
740 LERROR << __FUNCTION__ << "(): failed to load fstab from : '" << fstab_path << "'";
788 std::string fstab_path = prefix + hw;
789 if (access(fstab_path.c_str(), F_OK) == 0) {
790 return fstab_path;