Home | History | Annotate | Download | only in hidl

Lines Matching defs:mPointer

63     hidl_pointer(T* ptr) : hidl_pointer() { mPointer = ptr; }
64 hidl_pointer(const hidl_pointer<T>& other) : hidl_pointer() { mPointer = other.mPointer; }
68 mPointer = other.mPointer;
72 mPointer = other.mPointer;
73 other.mPointer = nullptr;
77 mPointer = ptr;
82 return mPointer;
85 return mPointer;
88 return *mPointer;
91 return mPointer;
94 return mPointer[index];
97 return mPointer[index];
102 T* mPointer;