Home | History | Annotate | Download | only in hidl

Lines Matching defs:mPointer

47     hidl_pointer(T* ptr) : hidl_pointer() { mPointer = ptr; }
48 hidl_pointer(const hidl_pointer<T>& other) : hidl_pointer() { mPointer = other.mPointer; }
52 mPointer = other.mPointer;
56 mPointer = other.mPointer;
57 other.mPointer = nullptr;
61 mPointer = ptr;
66 return mPointer;
69 return mPointer;
72 return *mPointer;
75 return mPointer;
78 return mPointer[index];
81 return mPointer[index];
86 T* mPointer;