1 /* 2 * Copyright (C) 2018 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef ANDROID_HARDWARE_HEALTH_FILESYSTEM_V1_0_FILESYSTEM_H 18 #define ANDROID_HARDWARE_HEALTH_FILESYSTEM_V1_0_FILESYSTEM_H 19 20 #include <android/hardware/health/storage/1.0/IStorage.h> 21 #include <hidl/Status.h> 22 23 namespace android { 24 namespace hardware { 25 namespace health { 26 namespace storage { 27 namespace V1_0 { 28 namespace implementation { 29 30 using ::android::sp; 31 using ::android::hardware::hidl_handle; 32 using ::android::hardware::hidl_string; 33 using ::android::hardware::hidl_vec; 34 using ::android::hardware::Return; 35 36 struct Storage : public IStorage { 37 Return<void> garbageCollect(uint64_t timeoutSeconds, 38 const sp<IGarbageCollectCallback>& cb) override; 39 Return<void> debug(const hidl_handle& handle, const hidl_vec<hidl_string>&) override; 40 }; 41 42 } // namespace implementation 43 } // namespace V1_0 44 } // namespace storage 45 } // namespace health 46 } // namespace hardware 47 } // namespace android 48 49 #endif // ANDROID_HARDWARE_HEALTH_FILESYSTEM_V1_0_FILESYSTEM_H 50