Home | Sort by relevance Sort by last modified time |
/system/core/base/include/android-base/ | |
unique_fd.h | 53 class unique_fd_impl final { 55 unique_fd_impl() : value_(-1) {} function in class:android::base::final 57 explicit unique_fd_impl(int value) : value_(value) {} function in class:android::base::final 58 ~unique_fd_impl() { clear(); } 60 unique_fd_impl(unique_fd_impl&& other) : value_(other.release()) {} function in class:android::base::final 61 unique_fd_impl& operator=(unique_fd_impl&& s) { 89 unique_fd_impl(const unique_fd_impl&) [all...] |
/system/core/adb/ | |
adb_utils.h | 60 using unique_fd = android::base::unique_fd_impl<AdbCloser>; |