Searched defs:__bionic_brk (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/bionic/
H A Dbrk.cpp33 static void* __bionic_brk; variable
35 void* __bionic_brk; // Accidentally exported by the NDK. variable
39 __bionic_brk = __brk(end_data);
40 if (__bionic_brk < end_data) {
48 // Initialize __bionic_brk if necessary.
49 if (__bionic_brk == NULL) {
50 __bionic_brk = __brk(NULL);
55 return __bionic_brk;
59 uintptr_t old_brk = reinterpret_cast<uintptr_t>(__bionic_brk);
67 __bionic_brk
[all...]

Completed in 391 milliseconds