Home
last modified time | relevance | path

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

/system/chre/util/include/chre/util/
Darray_queue.h378 : mPointer(start), mBase(base), mTail(tail), mCapacity(capacity) {} in ArrayQueueIterator()
397 if (mPointer == (mBase + mTail)) {
399 mPointer = mBase + mCapacity;
400 } else if (mPointer == (mBase + mCapacity - 1)) {
402 mPointer = mBase;
420 ValueType *mBase; variable
/system/core/libutils/binder/
DRefBase.cpp189 RefBase* const mBase; member in android::RefBase::weakref_impl
197 , mBase(base) in weakref_impl()
216 , mBase(base) in weakref_impl()
316 mBase, this); in printRefs()
321 mBase, this); in printRefs()
390 id, mBase, this); in removeRef()
470 refs->mBase->onFirstRef(); in incStrong()
499 refs->mBase->onLastStrongRef(id); in decStrong()
541 refs->mBase->onFirstRef(); in forceIncStrong()
553 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/media/audio_utils/
DPowerLog.cpp233 size_t processFrames = mBase[0]->framesToProcess(frames); in log()
234 for (size_t i = 1; i < std::size(mBase); ++i) { in log()
235 processFrames = std::min(processFrames, mBase[i]->framesToProcess(frames)); in log()
239 for (const auto& base : mBase) { in log()
253 const size_t logs = mBase.size(); in dumpToString()
281 std::string s = mBase[logs - 1 - start]->dumpToString( in dumpToString()
284 s.append(mBase[logs - 1 - i]->dumpToString( in dumpToString()
/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/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/media/audio_utils/include/audio_utils/
DPowerLog.h112 , mBase{[=]() { in mChannelCount()
166 const std::vector<std::shared_ptr<PowerLogBase>> mBase; variable
/system/libhidl/base/include/hidl/
DHidlSupport.h632 : mBase(base) {
637 &mBase[index * product<SIZES...>::value]);
648 T *mBase;
657 : mBase(base) {
661 return mBase[index];
672 T *mBase;
681 : mBase(base) {
686 &mBase[index * product<SIZES...>::value]);
698 const T *mBase;
707 : 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