Home | History | Annotate | Download | only in qemu

Lines Matching full:void

28 typedef void CPUWriteMemoryFunc(void *opaque, target_phys_addr_t addr, uint32_t value);
29 typedef uint32_t CPUReadMemoryFunc(void *opaque, target_phys_addr_t addr);
31 void cpu_register_physical_memory_log(target_phys_addr_t start_addr,
37 static inline void cpu_register_physical_memory_offset(target_phys_addr_t start_addr,
46 static inline void cpu_register_physical_memory(target_phys_addr_t start_addr,
55 ram_addr_t size, void *host);
57 void qemu_ram_free(ram_addr_t addr);
58 void qemu_ram_remap(ram_addr_t addr, ram_addr_t length);
60 void *qemu_get_ram_ptr(ram_addr_t addr);
63 void *qemu_safe_ram_ptr(ram_addr_t addr);
65 int qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr);
66 ram_addr_t qemu_ram_addr_from_host_nofail(void *ptr);
70 void *opaque);
71 void cpu_unregister_io_memory(int table_address);
73 void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf,
75 static inline void cpu_physical_memory_read(target_phys_addr_t addr,
80 static inline void cpu_physical_memory_write(target_phys_addr_t addr,
85 void *cpu_physical_memory_map(target_phys_addr_t addr,
88 void cpu_physical_memory_unmap(void *buffer, target_phys_addr_t len,
90 void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque));
91 void cpu_unregister_map_client(void *cookie);
97 void stl_phys_notdirty(target_phys_addr_t addr, uint32_t val);
98 void stq_phys_notdirty(target_phys_addr_t addr, uint64_t val);
99 void stb_phys(target_phys_addr_t addr, uint32_t val);
100 void stw_phys(target_phys_addr_t addr, uint32_t val);
101 void stl_phys(target_phys_addr_t addr, uint32_t val);
102 void stq_phys(target_phys_addr_t addr, uint64_t val);
104 void cpu_physical_memory_write_rom(target_phys_addr_t addr,