Searched refs:NativeHandle (Results 1 – 3 of 3) sorted by relevance
27 class NativeHandle : public LightRefBase<NativeHandle> {33 static sp<NativeHandle> create(native_handle_t* handle, bool ownsHandle);41 friend class LightRefBase<NativeHandle>;43 NativeHandle(native_handle_t* handle, bool ownsHandle);44 ~NativeHandle();50 NativeHandle(const NativeHandle&);51 NativeHandle& operator=(const NativeHandle&);
22 sp<NativeHandle> NativeHandle::create(native_handle_t* handle, bool ownsHandle) { in create()23 return handle ? new NativeHandle(handle, ownsHandle) : NULL; in create()26 NativeHandle::NativeHandle(native_handle_t* handle, bool ownsHandle) in NativeHandle() function in android::NativeHandle31 NativeHandle::~NativeHandle() { in ~NativeHandle()
48 "NativeHandle.cpp",