Home
last modified time | relevance | path

Searched defs:hidl_handle (Results 1 – 3 of 3) sorted by relevance

/system/libhidl/base/include/hidl/
DHidlSupport.h97 struct hidl_handle { struct
110 hidl_handle &operator=(const hidl_handle &other); argument
112 hidl_handle &operator=(const native_handle_t *native_handle); argument
114 hidl_handle &operator=(hidl_handle &&other) noexcept; argument
127 static const size_t kOffsetOfNativeHandle;
132 details::hidl_pointer<const native_handle_t> mHandle;
133 bool mOwnsHandle;
134 uint8_t mPad[7];
/system/libhidl/base/
DHidlSupport.cpp38 hidl_handle::hidl_handle() : mHandle(nullptr), mOwnsHandle(false) { in hidl_handle() function in android::hardware::hidl_handle
46 hidl_handle::hidl_handle(const native_handle_t* handle) : hidl_handle() { in hidl_handle() function in android::hardware::hidl_handle
52 hidl_handle::hidl_handle(const hidl_handle& other) : hidl_handle() { in hidl_handle() function in android::hardware::hidl_handle
58 hidl_handle::hidl_handle(hidl_handle&& other) noexcept : hidl_handle() { in hidl_handle() function in android::hardware::hidl_handle
/system/libhidl/transport/
DHidlBinderSupport.cpp59 status_t readEmbeddedFromParcel(const hidl_handle& /* handle */, in readEmbeddedFromParcel()