HomeSort by: relevance | last modified time | path
    Searched refs:fptr_t (Results 1 - 5 of 5) sorted by relevancy

  /src/lib/csu/common/
crtbegin.c 34 typedef void (*fptr_t)(void); typedef in typeref:typename:void (*)(void)
36 __dso_hidden const fptr_t __JCR_LIST__[0] __section(".jcr");
38 __weakref_visible void Jv_RegisterClasses(const fptr_t *)
42 extern __dso_hidden const fptr_t __CTOR_LIST__start __asm("__CTOR_LIST__");
44 __dso_hidden const fptr_t __aligned(sizeof(void *)) __CTOR_LIST__[] __section(".ctors") = {
45 (fptr_t) -1,
47 __dso_hidden extern const fptr_t __CTOR_LIST_END__[];
91 for (const fptr_t *p = __CTOR_LIST_END__; p > &__CTOR_LIST__start + 1; ) {
99 extern __dso_hidden const fptr_t __DTOR_LIST__start __asm("__DTOR_LIST__");
101 __dso_hidden const fptr_t __aligned(sizeof(void *)) __DTOR_LIST__[] __section(".dtors") =
    [all...]
crt0-common.c 56 typedef void (*fptr_t)(void); typedef in typeref:typename:void (*)(void)
100 extern const fptr_t __preinit_array_start[] __dso_hidden;
101 extern const fptr_t __preinit_array_end[] __dso_hidden __weak;
102 extern const fptr_t __init_array_start[] __dso_hidden;
103 extern const fptr_t __init_array_end[] __dso_hidden __weak;
104 extern const fptr_t __fini_array_start[] __dso_hidden;
105 extern const fptr_t __fini_array_end[] __dso_hidden __weak;
110 for (const fptr_t *f = __preinit_array_start; f < __preinit_array_end; f++) {
118 for (const fptr_t *f = __init_array_start; f < __init_array_end; f++) {
126 for (const fptr_t *f = __fini_array_start; f < __fini_array_end; f++)
    [all...]
  /src/libexec/ld.elf_so/
rtld.h 147 typedef void (*fptr_t)(void); typedef in typeref:typename:void (*)(void)
196 fptr_t init; /* Initialization function to call */
197 fptr_t fini; /* Termination function to call */
307 fptr_t *init_array; /* start of init array */
309 fptr_t *fini_array; /* start of fini array */
headers.c 315 (fptr_t *)(obj->relocbase + dynp->d_un.d_ptr);
321 obj->init_arraysz = dynp->d_un.d_val / sizeof(fptr_t);
336 (fptr_t *)(obj->relocbase + dynp->d_un.d_ptr);
342 obj->fini_arraysz = dynp->d_un.d_val / sizeof(fptr_t);
rtld.c 149 _rtld_call_initfini_function(fptr_t func, sigset_t *mask)
177 fptr_t fini = *obj->fini_array++;
262 fptr_t init = *obj->init_array++;

Completed in 16 milliseconds