Home
last modified time | relevance | path

Searched refs:mPointer (Results 1 – 2 of 2) sorted by relevance

/system/libhidl/base/include/hidl/
DHidlInternal.h76 hidl_pointer(T* ptr) : hidl_pointer() { mPointer = ptr; } in hidl_pointer()
77 hidl_pointer(const hidl_pointer<T>& other) : hidl_pointer() { mPointer = other.mPointer; } in hidl_pointer()
81 mPointer = other.mPointer;
85 mPointer = other.mPointer;
86 other.mPointer = nullptr;
90 mPointer = ptr;
95 return mPointer;
98 return mPointer;
101 return *mPointer;
104 return mPointer;
[all …]
/system/chre/util/include/chre/util/
Darray_queue.h378 : mPointer(start), mBase(base), mTail(tail), mCapacity(capacity) {} in ArrayQueueIterator()
381 return (mPointer == right.mPointer);
385 return (mPointer != right.mPointer);
389 return *mPointer;
393 return mPointer;
397 if (mPointer == (mBase + mTail)) {
399 mPointer = mBase + mCapacity;
400 } else if (mPointer == (mBase + mCapacity - 1)) {
402 mPointer = mBase;
404 mPointer++;
[all …]