Home
last modified time | relevance | path

Searched refs:sCountByUidEnabled (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/libs/binder/
DBpBinder.cpp39 std::atomic_bool BpBinder::sCountByUidEnabled(false);
111 if (sCountByUidEnabled) { in create()
456 void BpBinder::enableCountByUid() { sCountByUidEnabled.store(true); } in enableCountByUid()
457 void BpBinder::disableCountByUid() { sCountByUidEnabled.store(false); } in disableCountByUid()
458 void BpBinder::setCountByUidEnabled(bool enable) { sCountByUidEnabled.store(enable); } in setCountByUidEnabled()
/frameworks/native/libs/binder/include/binder/
DBpBinder.h141 static std::atomic_bool sCountByUidEnabled; variable