Searched defs:hidl_handle (Results 1 – 3 of 3) sorted by relevance
97 struct hidl_handle { struct110 hidl_handle &operator=(const hidl_handle &other); argument112 hidl_handle &operator=(const native_handle_t *native_handle); argument114 hidl_handle &operator=(hidl_handle &&other) noexcept; argument127 static const size_t kOffsetOfNativeHandle;132 details::hidl_pointer<const native_handle_t> mHandle;133 bool mOwnsHandle;134 uint8_t mPad[7];
38 hidl_handle::hidl_handle() : mHandle(nullptr), mOwnsHandle(false) { in hidl_handle() function in android::hardware::hidl_handle46 hidl_handle::hidl_handle(const native_handle_t* handle) : hidl_handle() { in hidl_handle() function in android::hardware::hidl_handle52 hidl_handle::hidl_handle(const hidl_handle& other) : hidl_handle() { in hidl_handle() function in android::hardware::hidl_handle58 hidl_handle::hidl_handle(hidl_handle&& other) noexcept : hidl_handle() { in hidl_handle() function in android::hardware::hidl_handle
56 status_t readEmbeddedFromParcel(const hidl_handle& /* handle */, in readEmbeddedFromParcel()