Lines Matching refs:fstab
649 int MountAllWithFstab(const Fstab *fstab, bool required)
651 BEGET_CHECK(fstab != NULL, return -1);
658 rc = HvbDmVerityinit(fstab);
666 for (item = fstab->head; item != NULL; item = item->next) {
686 Fstab *fstab = NULL;
687 if ((fstab = ReadFstabFromFile(fstabFile, false)) == NULL) {
688 BEGET_LOGE("[fs_manager][error] Read fstab file \" %s \" failed\n", fstabFile);
692 int rc = MountAllWithFstab(fstab, required);
696 ReleaseFstab(fstab);
697 fstab = NULL;
706 Fstab *fstab = NULL;
707 fstab = ReadFstabFromFile(fstabFile, false);
708 BEGET_ERROR_CHECK(fstab != NULL, return -1, "Read fstab file \" %s \" failed.", fstabFile);
712 for (item = fstab->head; item != NULL; item = item->next) {
732 ReleaseFstab(fstab);
733 fstab = NULL;
750 Fstab *fstab = NULL;
751 fstab = ReadFstabFromFile(fstabFile, false);
752 BEGET_ERROR_CHECK(fstab != NULL, return -1, "Read fstab file \" %s \" failed.", fstabFile);
759 rc = HvbDmVerityinit(fstab);
767 for (item = fstab->head; item != NULL; item = item->next) {
780 ReleaseFstab(fstab);
781 fstab = NULL;