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

/bionic/libc/bionic/
H A Dlibc_init_common.h36 void (**fini_array)(void); member in struct:__anon5
H A Dlibc_init_common.cpp125 * to run the destructors that are listed in the .fini_array section
128 * 'fini_array' points to a list of function addresses. The first
132 void** fini_array = reinterpret_cast<void**>(array); local
136 if (array == NULL || (size_t)fini_array[0] != minus1) {
141 fini_array += 1;
145 while (fini_array[count] != NULL) {
151 void (*func)() = (void (*)()) fini_array[--count];
/bionic/linker/
H A Dlinker.h169 linker_function_t* fini_array; member in struct:soinfo

Completed in 141 milliseconds