OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BusState
(Results
1 - 4
of
4
) sorted by null
/external/qemu/hw/
qdev.h
11
typedef struct
BusState
BusState
;
17
BusState
*parent_bus;
23
QLIST_HEAD(,
BusState
) child_bus;
36
struct
BusState
{
41
QLIST_ENTRY(
BusState
) sibling;
46
DeviceState *qdev_create(
BusState
*bus, const char *name);
59
BusState
*qdev_get_child_bus(DeviceState *dev, const char *name);
101
BusState
*qdev_get_parent_bus(DeviceState *dev);
119
BusState
*qbus_create(BusType type, size_t size
[
all
...]
qdev.c
51
static
BusState
*main_system_bus;
71
DeviceState *qdev_create(
BusState
*bus, const char *name)
91
main_system_bus = qbus_create(BUS_TYPE_SYSTEM, sizeof(
BusState
),
159
BusState
*bus;
293
BusState
*qdev_get_parent_bus(DeviceState *dev)
406
BusState
*qdev_get_child_bus(DeviceState *dev, const char *name)
408
BusState
*bus;
437
BusState
*qbus_create(BusType type, size_t size,
440
BusState
*bus;
462
static void qbus_print(Monitor *mon,
BusState
*bus, int indent)
[
all
...]
pc.c
[
all
...]
pci.c
33
BusState
qbus;
Completed in 45 milliseconds