HidlInternal.h | 53 // hidl_pointer wraps a pointer without taking ownership, 59 struct hidl_pointer { struct in namespace:android::hardware::details 60 hidl_pointer() function in struct:android::hardware::details::hidl_pointer 63 hidl_pointer(T* ptr) : hidl_pointer() { mPointer = ptr; } function in struct:android::hardware::details::hidl_pointer 64 hidl_pointer(const hidl_pointer<T>& other) : hidl_pointer() { mPointer = other.mPointer; } function in struct:android::hardware::details::hidl_pointer 65 hidl_pointer(hidl_pointer<T>&& other) : hidl_pointer() { *this = std::move(other); function in struct:android::hardware::details::hidl_pointer [all...] |