/bionic/libc/bionic/ |
D | dlmalloc.c | 22 static void __bionic_heap_corruption_error(const char* function); 23 static void __bionic_heap_usage_error(const char* function, void* address); 31 static void __bionic_heap_corruption_error(const char* function) { in __bionic_heap_corruption_error() argument 32 __libc_fatal("@@@ ABORTING: heap corruption detected by %s", function); in __bionic_heap_corruption_error() 35 static void __bionic_heap_usage_error(const char* function, void* address) { in __bionic_heap_usage_error() argument 37 address, function); in __bionic_heap_usage_error()
|
D | assert.cpp | 40 void __assert2(const char* file, int line, const char* function, const char* failed_expression) { in __assert2() argument 41 __libc_fatal("%s:%d: %s: assertion \"%s\" failed", file, line, function, failed_expression); in __assert2()
|
/bionic/libc/stdio/ |
D | fwalk.c | 40 _fwalk(int (*function)(FILE *)) in _fwalk() 50 ret |= (*function)(fp); in _fwalk()
|
/bionic/libc/kernel/common/linux/ |
D | timer.h | 30 void (*function)(unsigned long); member 35 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_e…
|
D | linkage.h | 55 #define ENDPROC(name) .type name, @function; END(name)
|
/bionic/libc/arch-mips/bionic/ |
D | futex_mips.S | 38 .type __futex_wait, @function 66 .type __futex_wake, @function 93 .type __futex_syscall3, @function 120 .type __futex_syscall4, @function
|
D | __get_sp.S | 32 .type __get_sp, @function
|
D | bzero.S | 33 .type bzero, @function
|
D | crtbegin.S | 30 .type __start,@function
|
D | _exit_with_stack_teardown.S | 35 .type _exit_with_stack_teardown, @function
|
D | atexit.S | 31 .type atexit, @function
|
D | vfork.S | 35 .type vfork, @function
|
D | pipe.S | 41 .type pipe,@function
|
D | memcmp16.S | 33 .type __memcmp16, @function
|
D | clone.S | 34 .type __pthread_clone, @function
|
D | ffs.S | 44 .type ffs, @function
|
D | crtbegin_so.S | 46 .type __do_global_dtors_aux, @function
|
/bionic/linker/arch/arm/ |
D | begin.S | 31 .type _start,#function
|
/bionic/libc/arch-x86/include/machine/ |
D | asm.h | 97 .text; _ALIGN_TEXT; .globl x; .type x,@function; x: 109 ALIGN_TEXT; .globl X ## name; .type X ## name,@function; X ## name: 114 ALIGN_TEXT; .globl X/**/name; .type X/**/name,@function; X/**/name: 121 ALIGN_TEXT; .globl _X ## name; .type _X ## name,@function; _X ## name: 126 ALIGN_TEXT; .globl _X/**/name; .type _X/**/name,@function; _X/**/name:
|
/bionic/libc/kernel/arch-mips/asm/ |
D | asm.h | 44 #define LEAF(symbol) .globl symbol; .align 2; .type symbol, @function; .ent symbol, 0; sym… 45 #define NESTED(symbol, framesize, rpc) .globl symbol; .align 2; .type symbol, @function; .e… 46 #define END(function) .end function; .size function, .-function argument 49 #define FEXPORT(symbol) .globl symbol; .type symbol, @function; symbol:
|
/bionic/libc/arch-arm/bionic/ |
D | clone.S | 57 # pick the function arg and call address off the stack and jump 58 # to the C __thread_entry function which does some setup and then
|
/bionic/libc/ |
D | CAVEATS | 16 - pthread_once() doesn't support C++ exceptions thrown from the init function, or the init 17 function doing a fork().
|
/bionic/linker/arch/mips/ |
D | begin.S | 31 .type __start,@function
|
/bionic/tests/ |
D | dlfcn_test.cpp | 44 void (*function)() = reinterpret_cast<void(*)()>(sym); in TEST() local 47 function(); in TEST()
|
/bionic/libc/arch-arm/include/machine/ |
D | asm.h | 70 #define _ASM_TYPE_FUNCTION #function
|