Lines Matching refs:uc
161 struct ucall uc;
184 switch (get_ucall(vcpu, &uc)) {
186 REPORT_GUEST_ASSERT(uc);
193 TEST_FAIL("Unknown ucall %lu", uc.cmd);
197 TEST_ASSERT(!strcmp((const char *)uc.args[0], "hello") &&
198 uc.args[1] == stage, "Stage %d: Unexpected register values vmexit, got %lx",
199 stage, (ulong)uc.args[1]);
211 stage, uc.args[2], uc.args[3]);
214 stage, uc.args[4], uc.args[5]);
216 TEST_ASSERT(uc.args[2] >= uc.args[3],
218 stage, uc.args[2], uc.args[3]);
220 TEST_ASSERT(uc.args[4] < uc.args[5],
222 stage, uc.args[4], uc.args[5]);