OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:call_stack
(Results
1 - 10
of
10
) sorted by null
/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/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);
Completed in 48 milliseconds