OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:__strcpy_chk
(Results
1 - 5
of
5
) sorted by null
/bionic/libc/bionic/
__strcpy_chk.cpp
44
extern "C" char *
__strcpy_chk
(char *dest, const char *src, size_t dest_len) {
function
/bionic/libc/arch-arm/cortex-a15/bionic/
__strcpy_chk.S
39
ENTRY(
__strcpy_chk
)
function
160
END(
__strcpy_chk
)
/bionic/libc/arch-arm/cortex-a9/bionic/
__strcpy_chk.S
39
ENTRY(
__strcpy_chk
)
function
164
END(
__strcpy_chk
)
/bionic/libc/arch-arm/krait/bionic/
__strcpy_chk.S
39
ENTRY(
__strcpy_chk
)
function
160
END(
__strcpy_chk
)
/external/clang/test/Analysis/
string.c
253
#define
__strcpy_chk
BUILTIN(
__strcpy_chk
)
macro
254
char *
__strcpy_chk
(char *restrict s1, const char *restrict s2, size_t destlen);
256
#define strcpy(a,b)
__strcpy_chk
(a,b,(size_t)-1)
Completed in 994 milliseconds