OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MallocDesc
(Results
1 - 4
of
4
) sorted by null
/external/qemu/memcheck/
memcheck_util.h
92
memcheck_get_malloc_descriptor(
MallocDesc
* qemu_address,
95
memcheck_get_guest_buffer(qemu_address, guest_address, sizeof(
MallocDesc
));
107
const
MallocDesc
* qemu_address)
109
memcheck_set_guest_buffer(guest_address, qemu_address, sizeof(
MallocDesc
));
memcheck_common.h
39
* Event's value parameter points to
MallocDesc
instance in the guest's address
82
typedef struct
MallocDesc
{
118
}
MallocDesc
;
119
/* Helpers for addressing field in
MallocDesc
structure, using which emulator
122
#define ALLOC_RES_OFFSET ((uint32_t)(ptrdiff_t)&(((
MallocDesc
*)0)->libc_pid))
201
/* Extends
MallocDesc
structure with additional information, used by memchecker.
205
MallocDesc
malloc_desc;
289
mallocdesc_get_user_ptr(const
MallocDesc
* desc)
301
mallocdesc_get_alloc_size(const
MallocDesc
* desc)
313
mallocdesc_get_alloc_end(const
MallocDesc
* desc
[
all
...]
memcheck_util.c
206
const
MallocDesc
* desc = &desc_ex->malloc_desc;
/bionic/libc/bionic/
malloc_debug_qemu.cpp
82
struct
MallocDesc
{
162
MallocDesc
* desc;
199
* Event's value parameter points to
MallocDesc
instance that contains
232
const
MallocDesc
* desc);
314
/* Logs message dumping
MallocDesc
instance at the end of the message.
317
* desc -
MallocDesc
instance to dump.
367
static inline void* mallocdesc_user_ptr(const
MallocDesc
* desc) {
378
static inline uint32_t mallocdesc_alloc_size(const
MallocDesc
* desc) {
388
static inline void* mallocdesc_alloc_end(const
MallocDesc
* desc) {
424
* desc - Pointer to
MallocDesc
instance containing allocated bloc
[
all
...]
Completed in 1498 milliseconds