Lines Matching full:pending
45 "goldfish-pic.%d: pending=0x%08x enabled=0x%08x\n", in goldfish_pic_print_info()
46 s->idx, s->pending, s->enabled); in goldfish_pic_print_info()
51 if (s->pending & s->enabled) { in goldfish_pic_update()
65 s->pending |= 1 << irq; in goldfish_irq_request()
68 s->pending &= ~(1 << irq); in goldfish_irq_request()
81 /* The number of pending interrupts (0 to 32) */ in goldfish_pic_read()
82 value = ctpop32(s->pending & s->enabled); in goldfish_pic_read()
85 /* The pending interrupt mask */ in goldfish_pic_read()
86 value = s->pending & s->enabled; in goldfish_pic_read()
110 s->pending = 0; in goldfish_pic_write()
142 s->pending = 0; in goldfish_pic_reset()
165 VMSTATE_UINT32(pending, GoldfishPICState),