Home
last modified time | relevance | path

Searched refs:mConstructed (Results 1 – 3 of 3) sorted by relevance

/hardware/google/aemu/base/include/aemu/base/memory/
DOnDemand.h135 bool inNoObjectState() const { return !mConstructed; } in inNoObjectState()
136 bool needConstruction() { return !mConstructed; } in needConstruction()
137 void doneConstructing() { mConstructed = true; } in doneConstructing()
139 bool needDestruction() { return mConstructed; } in needDestruction()
140 void doneDestroying() { mConstructed = false; } in doneDestroying()
142 bool mConstructed = false; member
/hardware/google/gfxstream/guest/android-emu/aemu/base/
DOptional.h112 void setConstructed(bool constructed) { mConstructed = constructed; } in setConstructed()
113 constexpr bool constructed() const { return mConstructed; } in constructed()
118 : mConstructed(constructed) {} in mConstructed() function
121 bool mConstructed = false;
/hardware/google/aemu/base/include/aemu/base/
DOptional.h116 void setConstructed(bool constructed) { mConstructed = constructed; } in setConstructed()
117 constexpr bool constructed() const { return mConstructed; } in constructed()
122 : mConstructed(constructed) {} in mConstructed() function
125 bool mConstructed = false;