HomeSort by relevance Sort by last modified time
    Searched defs:mWeak (Results 1 - 2 of 2) sorted by null

  /frameworks/base/tools/aapt2/
ResourceValues.h 50 return mWeak;
54 mWeak = val;
105 bool mWeak = false;
170 Id() { mWeak = true; }
  /system/core/libutils/
RefBase.cpp 75 // mStrong is the strong reference count. mWeak is the weak reference count.
76 // Between calls, and ignoring memory ordering effects, mWeak includes strong
97 // performance cost for this code. All accesses to mStrong, mWeak, and mFlags
129 std::atomic<int32_t> mWeak;
137 , mWeak(0)
156 , mWeak(0)
226 addRef(&mWeakRefs, id, mWeak.load(std::memory_order_relaxed));
233 addRef(&mWeakRefs, id, -mWeak.load(std::memory_order_relaxed));
429 // mRefs itself, or it's running entirely before the final mWeak decrement.
473 const int32_t c __unused = impl->mWeak.fetch_add(1
    [all...]

Completed in 70 milliseconds