HomeSort by relevance Sort by last modified time
    Searched full:guest (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/qemu/memcheck/
memcheck_util.h 34 // Transfering data between guest and emulator address spaces.
37 /* Copies buffer residing in the guest's virtual address space to a buffer
40 * guest_address - Address of the bufer in guest's virtual address space.
42 * buffer_size - Byte size of the guest's buffer.
49 * guest's virtual address space.
52 * guest_address - Address of the bufer in guest's virtual address space.
59 /* Copies zero-terminated string residing in the guest's virtual address space
63 * guest_str - Address of the string in guest's virtual address space.
72 /* Copies zero-terminated string residing in the guest's kernel address space
76 * guest_str - Address of the string in guest's kernel address space
    [all...]
memcheck.h 39 * for the emulator and guest systems.
44 // Handlers for memory allocation events, generated by the guest system.
47 /* Libc.so has been initialized by a process in guest's system.
49 * fired up by the guest system on /dev/qemu_trace mapped page.
55 /* Guest system has allocated memory from heap.
57 * fired up by the guest system on /dev/qemu_trace mapped page.
62 * emulator reports failure back to the guest by zeroing out libc_pid field
67 /* Guest system is freeing memory to heap.
69 * fired up by the guest system on /dev/qemu_trace mapped page.
74 * emulator reports failure back to the guest by zeroing out libc_pid fiel
    [all...]
memcheck_api.h 43 * array is used to obtain guest PC address from a translated PC address.
65 * addr - Virtual address in the guest space where memory is read.
79 * addr - Virtual address in the guest space where memory is written.
96 * pc - Guest address where call has been made.
97 * ret - Guest address where called routine will return.
103 * pc - Guest address where routine has returned.
memcheck_common.h 35 // Events generated by the guest system.
45 * Event's value parameter points to MallocDesc instance in the guest's address
55 * guest's address space that contains information about block that's being
64 * guest's address space that contains query parameters. Note that 'libc_pid'
73 * that this string is located in the guest's address space.
84 * structure is initialized by the guest system before event is fired up. It is
126 * reports an error back to the guest.
138 * by the guest system before event is fired up It is important to remember that
168 /* Address in guest's virtual space of memory allocation descriptor for the
175 * emulator reports an error back to the guest
    [all...]
memcheck_malloc_map.h 15 * tree (a map) of memory blocks allocated by the guest system. The map is
17 * address range that belongs to a memory block allocated in the guest's space.
21 * each process running on the guest system.
83 * address - Virtual address in the guest's user space to find matching
100 * address - Virtual address in the guest's user space to find matching
memcheck.c 35 /* Controls what messages from the guest should be printed to emulator's
114 /* Convert host address to guest address. */
177 /* Validates access to a guest address.
179 * addr - Virtual address in the guest space where memory is accessed.
188 * 0 if access to the given guest address range doesn't violate anything, or
189 * 1 if given guest address range doesn't match any entry in the current
314 // Enable guest process staring tracing.
318 // Enable guest process exiting tracing.
412 // Copy allocation descriptor from guest to emulator.
491 // Copy free descriptor from guest to emulator
    [all...]
memcheck_logging.h 50 /* Enables guest process starting tracing. */
52 /* Enables guest process exiting tracing. */
memcheck_proc_management.h 78 /* Guest PC where call has been made. */
80 /* Guest PC where call has been made, relative to the beginning of the
83 /* Guest PC where call will return. */
85 /* Guest PC where call will return, relative to the beginning of the
282 * addr - Address in the guest space for which to find an entry.
296 * addr - Address in the guest space for which to find a module descriptor.
311 * addr - Address in the guest space for which to find a module.
memcheck_util.c 90 // Transfering data between guest and emulator address spaces.
98 /* Byte-by-byte copying back and forth between guest's and emulator's memory
100 * memchecker), so there is no real need to optimize it by aligning guest
102 * read / write guest's memory. */
memcheck_mmrange_map.h 15 * tree (a map) of module memory mapping ranges in the guest system. The map is
17 * address range that belongs to a mapped execution module in the guest system.
memcheck_malloc_map.c 15 * memory blocks allocated by the guest system.
139 * address - Virtual address in the guest's user space to find matching
  /external/qemu/
translate-all.c 54 * Memchecker code in this module copies TB PC <-> Guest PC map to the TB
55 * descriptor after guest code has been translated in cpu_gen_init routine.
60 * array is used to obtain guest PC address from a translated PC address.
146 /* Save translated PC -> guest PC map into TB. */
exec-all.h 163 /* Maps PCs in this translation block to corresponding PCs in guest address
166 * guest PC corresponding to that PC in the translation block. This
168 * when performing guest code translation. */
198 /* Gets translated PC for a given (translated PC, guest PC) pair.
209 /* Gets guest PC for a given (translated PC, guest PC) pair.
211 * Guest PC, or NULL if pair index was too large.
220 /* Gets guest PC for a given translated PC.
222 * Guest PC for a given translated PC, or NULL if there was no pair, matching
qemu-options.hx 133 will be sent to the guest only when the data has been reported as written by
138 If your host crashes or loses power, then the guest may experience data
323 "-usbdevice name add the host or guest USB device 'name'\n")
365 "-name string set the name of the guest\n")
368 Sets the @var{name} of the guest.
477 performances, use 16 bit color depth in the guest and the host OS.
480 Standard VGA card with Bochs VBE extensions. If your guest OS
486 recent XFree86/XOrg server or Windows guest with a driver for this
650 processed by the Windows guest and will re-inject them.
670 it if your guest OS complains about ACPI problems (PC target machin
    [all...]
vnc-android.c 273 struct VncSurface *s = &vs->guest;
354 /* guest surface */
355 if (!vs->guest.ds)
356 vs->guest.ds = qemu_mallocz(sizeof(*vs->guest.ds));
357 if (ds_get_bytes_per_pixel(ds) != vs->guest.ds->pf.bytes_per_pixel)
360 size_changed = ds_get_width(ds) != vs->guest.ds->width ||
361 ds_get_height(ds) != vs->guest.ds->height;
362 *(vs->guest.ds) = *(ds->surface);
373 memset(vs->guest.dirty, 0xFF, sizeof(vs->guest.dirty))
    [all...]
vnc.c 267 struct VncSurface *s = &vs->guest;
348 /* guest surface */
349 if (!vs->guest.ds)
350 vs->guest.ds = qemu_mallocz(sizeof(*vs->guest.ds));
351 if (ds_get_bytes_per_pixel(ds) != vs->guest.ds->pf.bytes_per_pixel)
354 size_changed = ds_get_width(ds) != vs->guest.ds->width ||
355 ds_get_height(ds) != vs->guest.ds->height;
356 *(vs->guest.ds) = *(ds->surface);
367 memset(vs->guest.dirty, 0xFF, sizeof(vs->guest.dirty))
    [all...]
vnc.h 119 struct VncSurface guest; /* guest visible surface (aka ds->surface) */ member in struct:VncState
softmmu_template.h 128 /* We only validate access to the guest's user space, for which
147 /* We only validate access to the guest's user space, for which
305 /* We only validate access to the guest's user space, for which
324 /* We only validate access to the guest's user space, for which
qemu-monitor.hx 77 show guest PCMCIA status
79 show which guest mouse is receiving events
540 "[tcp|udp]:host-port:[guest-host]:guest-port", "redirect TCP or UDP connections from host to guest (requires -net user)\n"
546 Redirect TCP or UDP connections from host to guest (requires -net user).
curses.c 293 * by the guest system */
  /external/qemu/distrib/
README 38 the guest system is idle. This is now disabled since Linux 2.6.21 and beyond use
  /bionic/libc/bionic/
malloc_debug_qemu.c 76 * structure is initialized by the guest system before event is fired up. It is
127 * initialized by the guest system before event is fired up. It is important to
167 * initialized by the guest system before event is fired up. It is important to
656 * contains abbreviation for guest events that are enabled for tracing.
665 /* Parse -memcheck parameter for the guest tracing flags. */
669 // Enable all messages from the guest.
673 // Enable debug messages from the guest.
677 // Enable error messages from the guest.
681 // Enable info messages from the guest.
    [all...]
  /external/qemu/target-arm/
helpers.h 473 * First pointer contains guest PC where BL/BLX has been found.
474 * Second pointer contains guest PC where BL/BLX will return.
480 * Pointer contains guest PC where BL/BLX will return.
  /external/qemu/android/
help.c     [all...]
  /external/kernel-headers/original/asm-x86/
cmpxchg_32.h 148 * hypervisor, since the system may be SMP even if the guest kernel

Completed in 194 milliseconds

1 2 3