HomeSort by relevance Sort by last modified time
    Searched defs:strcpy (Results 1 - 25 of 32) sorted by null

1 2

  /bionic/libc/arch-arm/generic/bionic/
strcpy.S 36 ENTRY(strcpy) function
134 END(strcpy)
  /bionic/libc/arch-arm/cortex-a15/bionic/
string_copy.S 56 #if !defined(STPCPY) && !defined(STRCPY)
57 #error "Either STPCPY or STRCPY must be defined."
105 ENTRY(strcpy) function
519 END(strcpy)
  /bionic/libc/arch-arm/cortex-a9/bionic/
string_copy.S 56 #if !defined(STPCPY) && !defined(STRCPY)
57 #error "Either STPCPY or STRCPY must be defined."
105 ENTRY(strcpy) function
541 END(strcpy)
  /bionic/libc/upstream-openbsd/lib/libc/string/
strcpy.c 1 /* $OpenBSD: strcpy.c,v 1.9 2014/06/10 04:17:37 deraadt Exp $ */
35 __warn_references(strcpy,
36 "warning: strcpy() is almost always misused, please use strlcpy()");
40 strcpy(char *to, const char *from) function
  /external/syslinux/com32/lib/
strcpy.c 2 * strcpy.c
4 * strcpy()
9 char *strcpy(char *dst, const char *src) function
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Copying.c 63 /** The strcpy function copies the string pointed to by s2 (including the
67 @return The strcpy function returns the value of s1.
70 strcpy(char * __restrict s1, const char * __restrict s2) function
  /external/syslinux/dos/
string.h 12 #define strcpy(a,b) __builtin_strcpy(a,b) macro
  /external/gptfdisk/
support.h 38 #define strcpy strcpy_s macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string3.h 34 # undef strcpy macro
103 __NTH (strcpy (char *__restrict __dest, __const char *__restrict __src)) function
string2.h 414 # define strcpy(dest, src) \ macro
420 : strcpy (dest, src)))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string3.h 34 # undef strcpy macro
103 __NTH (strcpy (char *__restrict __dest, __const char *__restrict __src)) function
  /external/mesa3d/src/amd/addrlib/inc/
lnx_common_defs.h 121 #define strcpy(_d, _s) __ke_strcpy(_d, _s) macro
  /bionic/libc/arch-arm64/generic/bionic/
string_copy.S 62 #if !defined(STPCPY) && !defined(STRCPY)
63 #error "Either STPCPY or STRCPY must be defined."
71 #elif defined(STRCPY)
77 #if defined(STRCPY)
101 #elif defined(STRCPY)
102 ENTRY(strcpy) function
105 #if defined(STRCPY)
139 #elif defined(STRCPY)
173 #elif defined(STRCPY)
243 #elif defined(STRCPY)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
string.h 47 #undef strcpy macro
110 #define strcpy(dest, src) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
string.h 47 #undef strcpy macro
110 #define strcpy(dest, src) \ macro
  /bionic/libc/arch-mips/string/
strcpy.c 170 strcpy (char *to, const char *from) function
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 157 void strcpy(char *s1, char *s2) { function
object-size.c 3 #define strcpy(dest, src) \ macro
19 strcpy(&gbuf[4], "Hi there");
25 strcpy(gbuf, "Hi there");
31 strcpy(&gbuf[100], "Hi there");
37 strcpy((char*)(void*)&gbuf[-1], "Hi there");
44 strcpy(gp, "Hi there");
52 strcpy(&buf[4], "Hi there");
62 strcpy((++i, gbuf), "Hi there");
70 strcpy(buf[++gi], "Hi there");
77 strcpy((char *)((++gi) + gj), "Hi there")
    [all...]
  /external/syslinux/gpxe/src/core/
string.c 35 * strcpy - Copy a %NUL terminated string
39 char * strcpy(char * dest,const char *src) function
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 58 #define strcpy(_dd,_ss) VG_(strcpy)((_dd),(_ss)) macro
  /external/valgrind/coregrind/m_gdbserver/
server.h 151 #define strcpy(s1,s2) VG_(strcpy) ((s1),(s2)) macro
  /external/clang/test/Analysis/
taint-generic.c 15 #define strcpy(dest, src) \ macro
83 // Test taint propagation through strcpy and family.
85 strcpy(scpy, s);
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 401 INTERCEPT_LIBRARY_FUNCTION(strcpy); // NOLINT variable
  /external/syslinux/memdisk/
memdisk.h 87 #define strcpy(a,b) __builtin_strcpy(a,b) macro
  /external/wpa_supplicant_8/src/utils/
os.h 665 #define strcpy OS_DO_NOT_USE_strcpy macro

Completed in 2646 milliseconds

1 2