Searched refs:sCountByUidEnabled (Results 1 – 2 of 2) sorted by relevance
41 std::atomic_bool BpBinder::sCountByUidEnabled(false);112 if (sCountByUidEnabled) { in create()543 void BpBinder::enableCountByUid() { sCountByUidEnabled.store(true); } in enableCountByUid()544 void BpBinder::disableCountByUid() { sCountByUidEnabled.store(false); } in disableCountByUid()545 void BpBinder::setCountByUidEnabled(bool enable) { sCountByUidEnabled.store(enable); } in setCountByUidEnabled()
195 static std::atomic_bool sCountByUidEnabled; variable