summaryrefslogtreecommitdiffstats
path: root/roots.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-10-02 23:12:20 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-10-02 23:12:20 +0200
commit42031be1ef60366fb272b96eddc2c5a49140f70f (patch)
treec4537112792386f80811dea2d3a544169f2180f3 /roots.h
parentMerge "Use -Werror in bootable/recovery" am: 88aa128e22 am: b5437e3e1b (diff)
parentMerge "roots: Fix an issue with volume_for_path()." am: dd7a4b5264 (diff)
downloadandroid_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.gz
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.bz2
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.lz
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.xz
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.tar.zst
android_bootable_recovery-42031be1ef60366fb272b96eddc2c5a49140f70f.zip
Diffstat (limited to 'roots.h')
-rw-r--r--roots.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/roots.h b/roots.h
index 542f03b9c..46bb77e02 100644
--- a/roots.h
+++ b/roots.h
@@ -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).