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

  /bionic/libc/arch-arm/bionic/
strcpy.S 35 ENTRY(strcpy) function
133 END(strcpy)
  /bionic/libc/string/
strcpy.c 1 /* $OpenBSD: strcpy.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */
35 strcpy(char *to, const char *from) function
  /bootable/bootloader/legacy/libc/
strcpy.c 29 char *strcpy(char *dst, const char *src) function
  /bionic/libc/arch-x86/string/
strcpy.S 1 /* $OpenBSD: strcpy.S,v 1.8 2005/08/07 11:30:38 espie Exp $ */
11 .section .gnu.warning.strcpy
12 .ascii "warning: strcpy() is almost always misused, please use strlcpy()"
22 ENTRY(strcpy) function
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 34 # undef strcpy macro
104 __NTH (strcpy (char *__restrict __dest, __const char *__restrict __src)) function
string2.h 414 # define strcpy(dest, src) \ macro
420 : strcpy (dest, src)))
    [all...]
  /external/clang/test/CodeGen/
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");
60 strcpy((++i, gbuf), "Hi there");
68 strcpy(buf[++gi], "Hi there");
75 strcpy((char *)((++gi) + gj), "Hi there")
    [all...]
2002-07-14-MiscTests3.c 157 void strcpy(char *s1, char *s2) { function
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
string.h 47 #undef strcpy macro
110 #define strcpy(dest, src) \ macro
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 58 #define strcpy(_dd,_ss) VG_(strcpy)((_dd),(_ss)) macro
  /external/wpa_supplicant/
os.h 485 #define strcpy OS_DO_NOT_USE_strcpy macro
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os.h 498 #define strcpy OS_DO_NOT_USE_strcpy macro
  /external/wpa_supplicant_8/src/utils/
os.h 505 #define strcpy OS_DO_NOT_USE_strcpy macro
  /external/valgrind/main/coregrind/
m_libcbase.c 209 Char* VG_(strcpy) ( Char* dest, const Char* src ) function
  /external/clang/test/Analysis/
string.c 257 // strcpy()
265 #define strcpy(a,b) __strcpy_chk(a,b,(size_t)-1) macro
269 #define strcpy BUILTIN(strcpy) macro
270 char *strcpy(char *restrict s1, const char *restrict s2);
276 strcpy(NULL, x); // expected-warning{{Null pointer argument in call to string copy function}}
280 strcpy(x, NULL); // expected-warning{{Null pointer argument in call to string copy function}}
284 strcpy(x, (char*)&strcpy_fn); // expected-warning{{Argument to string copy function is the address of the function 'strcpy_fn', which is not a null-terminated string}}
290 if (strcpy(x, y) != x)
303 strcpy(x, y); // expected-warning{{String copy function overflows destination buffer}
    [all...]
  /external/grub/stage2/
shared.h 373 #define strcpy grub_strcpy macro

Completed in 700 milliseconds