/external/qemu/memcheck/ |
memcheck_proc_management.c | 78 new_thread->call_stack = NULL; 293 if (thread->call_stack != NULL) { 295 if (thread->call_stack[indx].module_path != NULL) { 296 qemu_free(thread->call_stack[indx].module_path); 299 qemu_free(thread->call_stack); 393 memcpy(new_array, thread->call_stack, 396 if (thread->call_stack != NULL) { 397 qemu_free(thread->call_stack); 399 thread->call_stack = new_array; 401 thread->call_stack[thread->call_stack_count].call_address = from [all...] |
memcheck_malloc_map.c | 240 new_entry->desc.call_stack = 242 memcpy(new_entry->desc.call_stack, entry->desc.call_stack, 245 new_entry->desc.call_stack = NULL; 258 if (new_entry->desc.call_stack != NULL) { 259 qemu_free(new_entry->desc.call_stack); 277 if (pulled.call_stack != NULL) { 278 qemu_free(pulled.call_stack);
|
memcheck.c | 409 desc.call_stack = NULL; 428 desc.call_stack = qemu_malloc(desc.call_stack_count * sizeof(target_ulong)); 429 if (desc.call_stack == NULL) { 441 desc.call_stack[indx] = 442 thread->call_stack[thread->call_stack_count - 1 - indx].call_address; 464 if (replaced.call_stack != NULL) { 465 qemu_free(replaced.call_stack); 519 if (pulled.call_stack != NULL) { 520 qemu_free(pulled.call_stack);
|
memcheck_proc_management.h | 98 ThreadCallStackEntry* call_stack; member in struct:ThreadDesc 100 /* Number of entries in the call_stack array. */ 103 /* Maximum number of entries that can fit into call_stack buffer. */
|
memcheck_common.h | 210 target_ulong* call_stack; member in struct:MallocDescEx 212 /* Number of entries in call_stack array. */
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
functional.rb | 118 call = call_stack.find { |call| call.file != __FILE__ } 159 klass.test_path = call_stack[ 0 ].file 175 call = call_stack.find { |call| call.file != __FILE__ }
|
grammar.rb | 272 host = call_stack.find { |call| call.file != __FILE__ }
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
heap-profile-table.h | 80 const void* const* call_stack; // call stack that made the allocation call member in struct:HeapProfileTable::AllocInfo 81 int stack_depth; // depth of call_stack 91 const void* const* call_stack; // Stack trace member in struct:HeapProfileTable::AllocContextInfo 113 // and 'call_stack' identifying the function that requested the 116 int stack_depth, const void* const call_stack[]); 381 info.call_stack = v->bucket()->stack;
|
memory_region_map.h | 140 const void* call_stack[kMaxStackDepth]; // caller address stack array member in struct:MemoryRegionMap::Region 145 // Convenience accessor for call_stack[0], 154 ? call_stack[0] : NULL); 205 // Note: call_stack[kMaxStackDepth] as a member lets us make Region 209 // only one call_stack element out of kMaxStackDepth is actually needed. 210 // Making the storage for call_stack variable-sized,
|
memory_region_map.cc | 562 // together with the contents of its call_stack, 591 ? MallocHook::GetCallerStackTrace(const_cast<void**>(region.call_stack), 604 // from region.call_stack_data_ that is pointed by region.call_stack(). 606 HeapProfileBucket* b = GetBucket(depth, region.call_stack); 633 RecordRegionRemovalInBucket(r.call_stack_depth, r.call_stack, size); 678 RecordRegionRemovalInBucket(region->call_stack_depth, region->call_stack, 689 RecordRegionRemovalInBucket(region->call_stack_depth, region->call_stack, 704 RecordRegionRemovalInBucket(region->call_stack_depth, region->call_stack, 712 RecordRegionRemovalInBucket(region->call_stack_depth, region->call_stack, [all...] |
heap-profile-table.cc | 217 const void* const call_stack[]) { 218 Bucket* b = GetBucket(stack_depth, call_stack); 252 info->call_stack = alloc_value->bucket()->stack; 394 info.call_stack = list[i]->stack;
|
heap-checker.cc | 747 uintptr_t addr = AsInt(info.call_stack[depth]); [all...] |
deep-heap-profile.cc | [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
heap-profile-table.h | 77 const void* const* call_stack; // call stack that made the allocation call member in struct:HeapProfileTable::AllocInfo 78 int stack_depth; // depth of call_stack 88 const void* const* call_stack; // Stack trace member in struct:HeapProfileTable::AllocContextInfo 110 // and 'call_stack' identifying the function that requested the 113 int stack_depth, const void* const call_stack[]); 296 info.call_stack = v->bucket()->stack;
|
memory_region_map.h | 128 const void* call_stack[kMaxStackDepth]; // caller address stack array member in struct:MemoryRegionMap::Region 133 // Convenience accessor for call_stack[0], 142 ? call_stack[0] : NULL); 193 // Note: call_stack[kMaxStackDepth] as a member lets us make Region 197 // only one call_stack element out of kMaxStackDepth is actually needed. 198 // Making the storage for call_stack variable-sized,
|
heap-profile-table.cc | 226 const void* const call_stack[]) { 227 Bucket* b = GetBucket(stack_depth, call_stack, alloc_table_, 262 info->call_stack = alloc_value->bucket()->stack; 376 GetBucket(r->call_stack_depth, r->call_stack, mmap_table_, NULL); 406 info.call_stack = list[i]->stack;
|
memory_region_map.cc | 422 // together with the contents of its call_stack, 457 ? MallocHook::GetCallerStackTrace(const_cast<void**>(region.call_stack), 470 // from region.call_stack_data_ that is pointed by region.call_stack().
|
heap-checker.cc | 747 uintptr_t addr = AsInt(info.call_stack[depth]); [all...] |
/external/valgrind/main/callgrind/ |
callstack.c | 39 * Array call_stack and call_stack_esp have same size and grow on demand. 46 call_stack CLG_(current_call_stack); 48 void CLG_(init_call_stack)(call_stack* s) 69 void CLG_(copy_current_call_stack)(call_stack* dst) 78 void CLG_(set_current_call_stack)(call_stack* s) 92 call_stack *cs = &CLG_(current_call_stack);
|
global.h | 570 typedef struct _call_stack call_stack; typedef in typeref:struct:_call_stack 607 call_stack calls; /* context call arc stack */ 777 void CLG_(init_call_stack)(call_stack*); 778 void CLG_(copy_current_call_stack)(call_stack* dst); 779 void CLG_(set_current_call_stack)(call_stack*); 833 extern call_stack CLG_(current_call_stack);
|
context.c | 283 call_stack* cs = &CLG_(current_call_stack);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_tgsi.h | 264 } call_stack[LP_MAX_TGSI_NESTING]; member in struct:lp_exec_mask
|
lp_bld_tgsi_soa.c | 339 mask->call_stack[mask->call_stack_size].pc = *pc; 340 mask->call_stack[mask->call_stack_size].ret_mask = mask->ret_mask; 374 *pc = mask->call_stack[mask->call_stack_size].pc; 375 mask->ret_mask = mask->call_stack[mask->call_stack_size].ret_mask; [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_tgsi.h | 264 } call_stack[LP_MAX_TGSI_NESTING]; member in struct:lp_exec_mask
|
lp_bld_tgsi_soa.c | 339 mask->call_stack[mask->call_stack_size].pc = *pc; 340 mask->call_stack[mask->call_stack_size].ret_mask = mask->ret_mask; 374 *pc = mask->call_stack[mask->call_stack_size].pc; 375 mask->ret_mask = mask->call_stack[mask->call_stack_size].ret_mask; [all...] |