Searched refs:call_stack_count (Results 1 - 5 of 5) sorted by relevance

/external/qemu/memcheck/
H A Dmemcheck_proc_management.c79 new_thread->call_stack_count = 0;
294 for (indx = 0; indx < thread->call_stack_count; indx++) {
371 if (thread->call_stack_count >= max_stack) {
376 thread->call_stack_count);
381 if (thread->call_stack_count >= thread->call_stack_max) {
392 if (thread->call_stack_count != 0) {
394 thread->call_stack_count * sizeof(ThreadCallStackEntry));
401 thread->call_stack[thread->call_stack_count].call_address = from;
402 thread->call_stack[thread->call_stack_count].call_address_rel =
404 thread->call_stack[thread->call_stack_count]
[all...]
H A Dmemcheck.c410 desc.call_stack_count = 0;
426 desc.call_stack_count = thread->call_stack_count;
427 if (desc.call_stack_count) {
428 desc.call_stack = qemu_malloc(desc.call_stack_count * sizeof(target_ulong));
431 desc.call_stack_count * sizeof(target_ulong));
440 for (indx = 0; indx < thread->call_stack_count; indx++) {
442 thread->call_stack[thread->call_stack_count - 1 - indx].call_address;
H A Dmemcheck_malloc_map.c239 if (entry->desc.call_stack_count) {
241 qemu_malloc(entry->desc.call_stack_count * sizeof(target_ulong));
243 entry->desc.call_stack_count * sizeof(target_ulong));
247 new_entry->desc.call_stack_count = entry->desc.call_stack_count;
H A Dmemcheck_proc_management.h101 uint32_t call_stack_count; member in struct:ThreadDesc
H A Dmemcheck_common.h213 uint32_t call_stack_count; member in struct:MallocDescEx

Completed in 53 milliseconds