OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:raw_args
(Results
1 - 5
of
5
) sorted by null
/bionic/linker/arch/x86/
begin.c
32
extern unsigned __linker_init(void*
raw_args
);
37
void*
raw_args
= (void*) ((uintptr_t) __builtin_frame_address(0) + sizeof(void*));
local
38
start = (void(*)(void))__linker_init(
raw_args
);
41
/* entry point expects sp to point to
raw_args
*/
46
: : "r"(
raw_args
), "r"(start) :
/bionic/libc/arch-arm/bionic/
crtbegin.c
48
void*
raw_args
= (void*) ((uintptr_t) __builtin_frame_address(0) + sizeof(void*));
local
49
__libc_init(
raw_args
, NULL, &main, &array);
/bionic/libc/arch-x86/bionic/
crtbegin.c
50
void*
raw_args
= (void*) ((uintptr_t) __builtin_frame_address(0) + sizeof(void*));
local
51
__libc_init(
raw_args
, NULL, &main, &array);
/development/ndk/platforms/android-9/arch-x86/src/
crtbegin.c
50
void*
raw_args
= (void*) ((uintptr_t) __builtin_frame_address(0) + sizeof(void*));
local
51
__libc_init(
raw_args
, NULL, &main, &array);
/system/core/toolbox/
cat.c
187
raw_args
(char **argv)
function
284
raw_args
(argv);
Completed in 179 milliseconds