OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:call_stack_count
(Results
1 - 5
of
5
) sorted by null
/external/qemu/memcheck/
memcheck_proc_management.c
79
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
].ret_address = ret
[
all
...]
memcheck.c
410
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;
memcheck_malloc_map.c
239
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
;
memcheck_proc_management.h
101
uint32_t
call_stack_count
;
member in struct:ThreadDesc
memcheck_common.h
213
uint32_t
call_stack_count
;
member in struct:MallocDescEx
Completed in 51 milliseconds