Lines Matching refs:async_context
59 static struct AsyncContext *async_context = &(struct AsyncContext) { 0 }; variable
68 new->parent = async_context; in async_context_push()
69 new->id = async_context->id + 1; in async_context_push()
70 async_context = new; in async_context_push()
87 struct AsyncContext *old = async_context; in async_context_pop()
94 async_context = async_context->parent; in async_context_pop()
97 if (async_context == NULL) { in async_context_pop()
112 return async_context->id; in get_async_context_id()
133 bh->next = async_context->first_bh; in qemu_bh_new()
134 async_context->first_bh = bh; in qemu_bh_new()
144 for (bh = async_context->first_bh; bh; bh = bh->next) { in qemu_bh_poll()
155 bhp = &async_context->first_bh; in qemu_bh_poll()
201 for (bh = async_context->first_bh; bh; bh = bh->next) { in qemu_bh_update_timeout()