HomeSort by relevance Sort by last modified time
    Searched refs:InterruptCategory (Results 1 - 6 of 6) sorted by null

  /tools/loganalysis/src/com/android/loganalysis/parser/
InterruptParser.java 19 import com.android.loganalysis.item.InterruptItem.InterruptCategory;
72 private InterruptCategory getInterruptCategory(String interruptName) {
74 return InterruptCategory.WIFI_INTERRUPT;
77 return InterruptCategory.MODEM_INTERRUPT;
79 return InterruptCategory.ADSP_INTERRUPT;
83 return InterruptCategory.ALARM_INTERRUPT;
86 return InterruptCategory.UNKNOWN_INTERRUPT;
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
InterruptParserTest.java 49 InterruptItem.InterruptCategory.WIFI_INTERRUPT).size());
52 InterruptItem.InterruptCategory.WIFI_INTERRUPT).get(0).getName());
55 InterruptItem.InterruptCategory.MODEM_INTERRUPT).size());
57 assertEquals(5, interrupt.getInterrupts(InterruptItem.InterruptCategory.MODEM_INTERRUPT).
  /tools/loganalysis/tests/src/com/android/loganalysis/rule/
InterruptRuleTest.java 23 import com.android.loganalysis.item.InterruptItem.InterruptCategory;
58 InterruptCategory.WIFI_INTERRUPT);
60 InterruptCategory.UNKNOWN_INTERRUPT);
77 InterruptCategory.WIFI_INTERRUPT);
79 InterruptCategory.UNKNOWN_INTERRUPT);
  /tools/loganalysis/src/com/android/loganalysis/item/
InterruptItem.java 41 public enum InterruptCategory {
65 * @param category The {@link InterruptCategory} of the interrupt
68 InterruptCategory category) {
91 * Get the {@link InterruptCategory} of the wake lock.
93 public InterruptCategory getCategory() {
94 return (InterruptCategory) getAttribute(CATEGORY);
103 * @param category The {@link InterruptCategory} of the interrupt.
106 InterruptCategory category) {
111 * Get a list of {@link InterruptInfoItem} objects matching a given {@link InterruptCategory}.
113 public List<InterruptInfoItem> getInterrupts(InterruptCategory category)
    [all...]
  /tools/loganalysis/tests/src/com/android/loganalysis/item/
InterruptItemTest.java 37 item.addInterrupt("smd-modem",25, InterruptItem.InterruptCategory.ALARM_INTERRUPT);
  /tools/loganalysis/src/com/android/loganalysis/rule/
InterruptRule.java 22 import com.android.loganalysis.item.InterruptItem.InterruptCategory;
70 if (interrupts.getCategory() != InterruptCategory.UNKNOWN_INTERRUPT) {

Completed in 1283 milliseconds