HomeSort by relevance Sort by last modified time
    Searched refs:ram_list (Results 1 - 3 of 3) sorted by null

  /external/qemu/
arch_init.c 123 block = QTAILQ_FIRST(&ram_list.blocks);
166 block = QTAILQ_FIRST(&ram_list.blocks);
186 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
214 QTAILQ_FOREACH(block, &ram_list.blocks, next)
237 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
242 QTAILQ_FOREACH_SAFE(block, &ram_list.blocks, next, nblock) {
244 QTAILQ_REMOVE(&ram_list.blocks, block, next);
248 QTAILQ_INSERT_HEAD(&ram_list.blocks, blocks[n], next);
278 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
293 QTAILQ_FOREACH(block, &ram_list.blocks, next)
    [all...]
exec.c 58 RAMList ram_list = { .blocks = QTAILQ_HEAD_INITIALIZER(ram_list.blocks) }; variable
113 qemu_mutex_init(&ram_list.mutex);
516 block = ram_list.mru_block;
520 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
530 ram_list.mru_block = block;
808 qemu_mutex_lock(&ram_list.mutex);
813 qemu_mutex_unlock(&ram_list.mutex);
971 if (QTAILQ_EMPTY(&ram_list.blocks))
974 QTAILQ_FOREACH(block, &ram_list.blocks, next)
    [all...]
  /external/qemu/include/exec/
cpu-all.h 480 extern RAMList ram_list;
504 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] == 0xff;
509 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS];
515 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] & dirty_flags;
520 ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] = 0xff;
526 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] |= dirty_flags;
538 p = ram_list.phys_dirty + (start >> TARGET_PAGE_BITS);

Completed in 84 milliseconds