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:__anon9
H A Dlibc_init_common.cpp131 * to run the destructors that are listed in the .fini_array section
134 * 'fini_array' points to a list of function addresses. The first
138 void** fini_array = reinterpret_cast<void**>(array); local
142 if (array == NULL || (size_t)fini_array[0] != minus1) {
147 fini_array += 1;
151 while (fini_array[count] != NULL) {
157 void (*func)() = (void (*)()) fini_array[--count];
/bionic/linker/
H A Dlinker.h140 linker_function_t* fini_array; member in struct:soinfo

Completed in 1735 milliseconds