Home
last modified time | relevance | path

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

/system/chre/platform/shared/include/chre/platform/shared/
Dlog_buffer.h39 enum class LogBufferNotificationSetting : uint8_t { ALWAYS, NEVER, THRESHOLD }; enum
162 void updateNotificationSetting(LogBufferNotificationSetting setting,
293 LogBufferNotificationSetting mNotificationSetting =
294 LogBufferNotificationSetting::ALWAYS;
/system/chre/platform/shared/
Dlog_buffer.cc74 case LogBufferNotificationSetting::ALWAYS: { in handleLogVa()
78 case LogBufferNotificationSetting::NEVER: { in handleLogVa()
81 case LogBufferNotificationSetting::THRESHOLD: { in handleLogVa()
125 void LogBuffer::updateNotificationSetting(LogBufferNotificationSetting setting, in updateNotificationSetting()