Home | History | Annotate | Download | only in memcheck

Lines Matching refs:address

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.
168 /* Address in guest's virtual space of memory allocation descriptor for the
243 /* Starting address of mmapping of a module in the guest's address space. */
246 /* Ending address of mmapping of a module in the guest's address space. */
364 /* Gets offset for the given address inside a mapped module.
366 * address - Address to get offset for.
368 * Offset of the given address inside a mapped module, represented with the
372 mmrangedesc_get_module_offset(const MMRangeDesc* rdesc, target_ulong address)
374 return address - rdesc->map_start + rdesc->exec_offset;
377 /* Checks if given address is contained in the given address array.
379 * boolean: 1 if address is contained in the array, or zero if it's not.
407 /* Adds an address to the address array.
409 * 1 - Address has been added to the array.
410 * -1 - Address already exists in the array.
434 /* Using binary search find the place where to insert new address. */
466 /* Insert new address. */