Home
last modified time | relevance | path

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

/frameworks/base/cmds/incident_helper/java/com/android/commands/incident/sections/
DPersistLogSection.java57 private static final Map<String, Long> SECTION_NAME_TO_ID = new HashMap<>(); field in PersistLogSection
62 SECTION_NAME_TO_ID.put("main", PersistedLogProto.MAIN_LOGS);
63 SECTION_NAME_TO_ID.put("radio", PersistedLogProto.RADIO_LOGS);
64 SECTION_NAME_TO_ID.put("events", PersistedLogProto.EVENTS_LOGS);
65 SECTION_NAME_TO_ID.put("system", PersistedLogProto.SYSTEM_LOGS);
66 SECTION_NAME_TO_ID.put("crash", PersistedLogProto.CRASH_LOGS);
67 SECTION_NAME_TO_ID.put("kernel", PersistedLogProto.KERNEL_LOGS);
173 Long sectionId = SECTION_NAME_TO_ID.get(sectionName); in setCurrentSection()
176 sectionId = SECTION_NAME_TO_ID.get(DEFAULT_BUFFER); in setCurrentSection()