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 35 ENTRY(strcpy) function
133 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
512 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
534 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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
string3.h 34 # undef strcpy macro
105 __NTH (strcpy (char *__restrict __dest, __const char *__restrict __src)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
string3.h 34 # undef strcpy macro
105 __NTH (strcpy (char *__restrict __dest, __const char *__restrict __src)) function
  /bionic/libc/include/
string.h 57 extern char* strcpy(char* __restrict, const char* __restrict);
120 char* strcpy(char* __restrict dest, const char* __restrict src) { function
  /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...]
  /development/ndk/platforms/android-L/include/
string.h 56 extern char* strcpy(char* __restrict, const char* __restrict);
125 char* strcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/lib/gcc/x86_64-linux/4.6/include/ssp/
string.h 47 #undef strcpy macro
110 #define strcpy(dest, src) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/
string.h 57 extern char* strcpy(char* __restrict, const char* __restrict);
118 char* strcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/
string.h 57 extern char* strcpy(char* __restrict, const char* __restrict);
118 char* strcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/
string.h 57 extern char* strcpy(char* __restrict, const char* __restrict);
118 char* strcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/
string.h 57 extern char* strcpy(char* __restrict, const char* __restrict);
118 char* strcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/
string.h 57 extern char* strcpy(char* __restrict, const char* __restrict);
118 char* strcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/
string.h 57 extern char* strcpy(char* __restrict, const char* __restrict);
118 char* strcpy(char* __restrict dest, const char* __restrict src) { 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/valgrind/main/coregrind/m_demangle/
vg_libciface.h 58 #define strcpy(_dd,_ss) VG_(strcpy)((_dd),(_ss)) macro
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 145 #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_dll_thunk.cc 320 INTERCEPT_LIBRARY_FUNCTION(strcpy); // NOLINT variable
  /external/wpa_supplicant_8/src/utils/
os.h 640 #define strcpy OS_DO_NOT_USE_strcpy macro

Completed in 617 milliseconds

1 2