Searched refs:is_present (Results 1 – 9 of 9) sorted by relevance
/qemu/contrib/elf2dmp/ |
H A D | addrspace.c | 180 static bool is_present(uint64_t entry) in is_present() function 204 if (!get_pml4e(vs, va, &pml4e) || !is_present(pml4e)) { in va_space_va2pa() 208 if (!get_pdpi(vs, va, pml4e, &pdpe) || !is_present(pdpe)) { in va_space_va2pa() 216 if (!get_pgd(vs, va, pdpe, &pgd) || !is_present(pgd)) { in va_space_va2pa() 224 if (!get_pte(vs, va, pgd, &pte) || !is_present(pte)) { in va_space_va2pa()
|
/qemu/hw/vfio/ |
H A D | migration-multifd.c | 44 bool is_present; member 65 if (!lb->is_present) { in vfio_state_buffer_clear() 70 lb->is_present = false; in vfio_state_buffer_clear() 122 if (lb->is_present) { in vfio_load_state_buffer_insert() 132 lb->is_present = true; in vfio_load_state_buffer_insert() 213 assert(lb->is_present); in vfio_load_bufs_thread_load_config() 264 if (!lb->is_present) { in vfio_load_state_buffer_get()
|
/qemu/docs/sphinx/ |
H A D | qapidoc_legacy.py | 132 if member.ifcond.is_present(): 147 if variant.ifcond.is_present(): 192 if section.member.ifcond.is_present(): 265 if ifcond.is_present():
|
H A D | qapidoc.py | 284 if ent.ifcond.is_present():
|
/qemu/scripts/qapi/ |
H A D | introspect.py | 121 if obj.ifcond.is_present(): 124 if obj.ifcond.is_present():
|
H A D | commands.py | 69 assert not memb.ifcond.is_present()
|
H A D | schema.py | 68 def is_present(self) -> bool: member in QAPISchemaIfCond 618 return any(m.ifcond.is_present() for m in self.members) 782 if tag_member.ifcond.is_present(): 843 assert not self.tag_member.ifcond.is_present()
|
H A D | gen.py | 124 assert not memb.ifcond.is_present()
|
/qemu/tests/qapi-schema/ |
H A D | test-qapi.py | 99 if ifcond.is_present():
|