1# See docs/devel/tracing.txt for syntax documentation. 2 3# include/hw/xen/xen_common.h 4xen_default_ioreq_server(void) "" 5xen_ioreq_server_create(uint32_t id) "id: %u" 6xen_ioreq_server_destroy(uint32_t id) "id: %u" 7xen_ioreq_server_state(uint32_t id, bool enable) "id: %u: enable: %i" 8xen_map_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64 9xen_unmap_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64 10xen_map_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64 11xen_unmap_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64 12xen_map_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x" 13xen_unmap_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x" 14xen_domid_restrict(int err) "err: %u" 15 16# include/hw/xen/xen-bus.c 17xen_bus_realize(void) "" 18xen_bus_unrealize(void) "" 19xen_bus_add_watch(const char *node, const char *key, char *token) "node: %s key: %s token: %s" 20xen_bus_remove_watch(const char *node, const char *key, char *token) "node: %s key: %s token: %s" 21xen_bus_watch(const char *token) "token: %s" 22xen_device_realize(const char *type, char *name) "type: %s name: %s" 23xen_device_unrealize(const char *type, char *name) "type: %s name: %s" 24xen_device_backend_state(const char *type, char *name, const char *state) "type: %s name: %s -> %s" 25xen_device_backend_online(const char *type, char *name, bool online) "type: %s name: %s -> %u" 26xen_device_backend_changed(const char *type, char *name) "type: %s name: %s" 27xen_device_frontend_state(const char *type, char *name, const char *state) "type: %s name: %s -> %s" 28xen_device_frontend_changed(const char *type, char *name) "type: %s name: %s" 29xen_device_unplug(const char *type, char *name) "type: %s name: %s" 30 31# include/hw/xen/xen-bus-helper.c 32xs_node_create(const char *node) "%s" 33xs_node_destroy(const char *node) "%s" 34xs_node_vprintf(char *path, char *value) "%s %s" 35xs_node_vscanf(char *path, char *value) "%s %s" 36xs_node_watch(char *path) "%s" 37xs_node_unwatch(char *path) "%s" 38