Home
last modified time | relevance | path

Searched refs:mBase (Results 1 – 9 of 9) sorted by relevance

/system/chre/util/include/chre/util/
Darray_queue.h177 : mPointer(pointer), mBase(base), mTail(tail) {} in ArrayQueueIterator()
196 if (mPointer == (mBase + mTail)) {
198 mPointer = mBase + kCapacity;
199 } else if (mPointer == (mBase + kCapacity - 1)) {
201 mPointer = mBase;
219 ValueType *mBase; variable
/system/core/libutils/
DRefBase.cpp164 RefBase* const mBase; member in android::RefBase::weakref_impl
172 , mBase(base) in weakref_impl()
191 , mBase(base) in weakref_impl()
291 mBase, this); in printRefs()
296 mBase, this); in printRefs()
365 id, mBase, this); in removeRef()
443 refs->mBase->onFirstRef(); in incStrong()
472 refs->mBase->onLastStrongRef(id); in decStrong()
514 refs->mBase->onFirstRef(); in forceIncStrong()
526 return static_cast<const weakref_impl*>(this)->mBase; in refBase()
[all …]
/system/libhidl/transport/token/1.0/utils/include/hidl/
DHybridInterface.h202 H2BConverter(const sp<HalInterface>& base) : mBase{base} {} in H2BConverter()
214 virtual HalVariant getHalVariant() const override { return { mBase }; } in getHalVariant()
215 HalInterface* getBase() { return mBase.get(); } in getBase()
218 sp<HalInterface> mBase;
283 BaseInterface* getBase() { return mBase.get(); } in getBase()
289 sp<BaseInterface> mBase; variable
328 mBase = converter; in _castFromHalBaseAndConvert()
431 result = createHalToken(mBase, &token); in onTransact()
464 if (!mBase->linkToDeath(mObituaries.back(), 0)) { in linkToDeath()
485 bool success = mBase->unlinkToDeath(*i); in unlinkToDeath()
[all …]
/system/incremental_delivery/incfs/include/
DMountRegistry.h60 Mount(std::vector<Root>::const_iterator base) : mBase(base) {} in Mount()
62 std::string_view root() const { return mBase->path; } in root()
63 std::string_view backingDir() const { return mBase->backing; } in backingDir()
67 std::vector<Root>::const_iterator mBase;
/system/netd/libnetdutils/include/netdutils/
DSlice.h45 Slice(void* base, void* limit) : mBase(toUint8(base)), mLimit(toUint8(limit)) {} in Slice()
51 uint8_t* base() const { return mBase; } in base()
65 uint8_t* mBase = nullptr; variable
/system/libhidl/transport/
DHidlBinderSupport.cpp41 mRecipient(recipient), mCookie(cookie), mBase(base) { in hidl_binder_death_recipient()
46 if (recipient != nullptr && mBase != nullptr) { in binderDied()
47 recipient->serviceDied(mCookie, mBase); in binderDied()
49 mBase = nullptr; in binderDied()
/system/libhidl/base/include/hidl/
DHidlSupport.h637 : mBase(base) {
642 &mBase[index * product<SIZES...>::value]);
653 T *mBase;
662 : mBase(base) {
666 return mBase[index];
677 T *mBase;
686 : mBase(base) {
691 &mBase[index * product<SIZES...>::value]);
703 const T *mBase;
712 : mBase(base) {
[all …]
/system/incremental_delivery/incfs/
DMountRegistry.cpp70 result.reserve(mBase->binds.size()); in binds()
71 for (auto it : mBase->binds) { in binds()
/system/libhidl/transport/include/hidl/
DHidlBinderSupport.h48 wp<::android::hidl::base::V1_0::IBase> mBase; member