summaryrefslogtreecommitdiff
path: root/services/incremental/ServiceWrappers.cpp
diff options
context:
space:
mode:
author Songchun Fan <schfan@google.com> 2021-05-04 04:56:04 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2021-05-04 04:56:04 +0000
commit30253adb74b1e9e37f4a1286a7762e84d0245bca (patch)
treeab17a48f10944f4d31134dd3a9811282c2e05a42 /services/incremental/ServiceWrappers.cpp
parentd8f57c7cf37298beb7792629acc88d608dd0b838 (diff)
parentd48a25ee649b9aa2e6dde6e0e9844bb7da8bfe5c (diff)
Merge "[IncrementalService] add last read error in dumpsys" into sc-dev
Diffstat (limited to 'services/incremental/ServiceWrappers.cpp')
-rw-r--r--services/incremental/ServiceWrappers.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/services/incremental/ServiceWrappers.cpp b/services/incremental/ServiceWrappers.cpp
index c8e516926531..68a28b25b2a4 100644
--- a/services/incremental/ServiceWrappers.cpp
+++ b/services/incremental/ServiceWrappers.cpp
@@ -265,6 +265,9 @@ public:
std::optional<Metrics> getMetrics(std::string_view sysfsName) const final {
return incfs::getMetrics(sysfsName);
}
+ std::optional<LastReadError> getLastReadError(const Control& control) const final {
+ return incfs::getLastReadError(control);
+ }
};
static JNIEnv* getOrAttachJniEnv(JavaVM* jvm);