Home
last modified time | relevance | path

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

/aosp12/packages/modules/adb/daemon/
H A Dlogging.cpp30 bool enabled[static_cast<size_t>(adb::LogType::COUNT)];
32 bool& operator[](adb::LogType type) { return enabled[static_cast<size_t>(type)]; } in operator []()
50 result[adb::LogType::Connection] = true; in ParseLogStatus()
52 result[adb::LogType::Service] = true; in ParseLogStatus()
54 result[adb::LogType::Shell] = true; in ParseLogStatus()
56 result[adb::LogType::Connection] = true; in ParseLogStatus()
57 result[adb::LogType::Service] = true; in ParseLogStatus()
58 result[adb::LogType::Shell] = true; in ParseLogStatus()
75 bool is_logging_enabled(LogType type) { in is_logging_enabled()
85 bool is_logging_enabled(LogType type) { in is_logging_enabled()
H A Dlogging.h22 enum class LogType { enum
29 bool is_logging_enabled(LogType type);
31 #define ADB_LOG(type) ::adb::is_logging_enabled(::adb::LogType::type) && LOG(INFO)
/aosp12/system/netd/include/binder_utils/
H A DBinderUtil.h61 template <typename LogType>
62 void binderCallLogFn(const LogType& log, const LogFn& logFn) { in binderCallLogFn()