diff options
author | Tao Bao <tbao@google.com> | 2017-10-02 23:06:11 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-10-02 23:06:11 +0200 |
commit | 8b8c7eb442f45eae461f35ecd04493bf25208e26 (patch) | |
tree | b20f6c02ba836a898aeecc537a4abab5d3db6994 /roots.h | |
parent | Merge "Use -Werror in bootable/recovery" (diff) | |
parent | Merge "roots: Fix an issue with volume_for_path()." (diff) | |
download | android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.gz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.bz2 android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.lz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.xz android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.tar.zst android_bootable_recovery-8b8c7eb442f45eae461f35ecd04493bf25208e26.zip |
Diffstat (limited to '')
-rw-r--r-- | roots.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -17,13 +17,15 @@ #ifndef RECOVERY_ROOTS_H_ #define RECOVERY_ROOTS_H_ +#include <string> + typedef struct fstab_rec Volume; // Load and parse volume data from /etc/recovery.fstab. void load_volume_table(); -// Return the Volume* record for this path (or NULL). -Volume* volume_for_path(const char* path); +// Return the Volume* record for this mount point (or nullptr). +Volume* volume_for_mount_point(const std::string& mount_point); // Make sure that the volume 'path' is on is mounted. Returns 0 on // success (volume is mounted). |