HomeSort by relevance Sort by last modified time
    Searched full:call_stack (Results 1 - 11 of 11) sorted by null

  /external/valgrind/main/memcheck/perf/
many-loss-records.c 82 void call_stack (int level) function
115 call_stack (level + 1);
119 call_stack (level + 1);
123 call_stack (level + 1);
127 call_stack (level + 1);
131 call_stack (level + 1);
135 call_stack (level + 1);
139 call_stack (level + 1);
143 call_stack (level + 1);
147 call_stack (level + 1)
    [all...]
  /external/qemu/memcheck/
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_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.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/valgrind/tsan/
ts_valgrind.cc 203 vector<CallStackRecord> call_stack; member in struct:ValgrindThread
232 call_stack.clear();
371 size_t n = thr->call_stack.size();
374 Printf("{pc=%p sp=%p}, ", thr->call_stack[i].pc, thr->call_stack[i].sp);
382 vector<CallStackRecord> &call_stack = thr->call_stack; local
383 while (!call_stack.empty()) {
384 CallStackRecord &record = call_stack.back();
387 call_stack.pop_back()
489 vector<CallStackRecord> &call_stack = thr->call_stack; local
    [all...]
thread_sanitizer.cc     [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 563 typedef struct _call_stack call_stack; typedef in typeref:struct:_call_stack
600 call_stack calls; /* context call arc stack */
775 void CLG_(init_call_stack)(call_stack*);
776 void CLG_(copy_current_call_stack)(call_stack* dst);
777 void CLG_(set_current_call_stack)(call_stack*);
829 extern call_stack CLG_(current_call_stack);
context.c 283 call_stack* cs = &CLG_(current_call_stack);

Completed in 386 milliseconds