Home | History | Annotate | Download | only in item

Lines Matching defs:CATEGORY

53         public static final String CATEGORY = "CATEGORY";
58 NAME, INTERRUPT_COUNT, CATEGORY));
65 * @param category The {@link InterruptCategory} of the interrupt
68 InterruptCategory category) {
73 setAttribute(CATEGORY, category);
94 return (InterruptCategory) getAttribute(CATEGORY);
103 * @param category The {@link InterruptCategory} of the interrupt.
106 InterruptCategory category) {
107 mInterrupts.add(new InterruptInfoItem(name, interruptCount, category));
113 public List<InterruptInfoItem> getInterrupts(InterruptCategory category) {
115 if (category == null) {
120 if (category.equals(interrupt.getCategory())) {