OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:chunk_to_free
(Results
1 - 2
of
2
) sorted by null
/external/qemu/elff/
elf_alloc.cc
26
ElfAllocatorChunk*
chunk_to_free
= current_chunk_;
local
27
while (
chunk_to_free
!= NULL) {
28
ElfAllocatorChunk* next_chunk =
chunk_to_free
->prev;
29
free(
chunk_to_free
);
30
chunk_to_free
= next_chunk;
/ndk/sources/host-tools/ndk-stack/elff/
elf_alloc.cc
26
ElfAllocatorChunk*
chunk_to_free
= current_chunk_;
local
27
while (
chunk_to_free
!= NULL) {
28
ElfAllocatorChunk* next_chunk =
chunk_to_free
->prev;
29
free(
chunk_to_free
);
30
chunk_to_free
= next_chunk;
Completed in 227 milliseconds