HomeSort by relevance Sort by last modified time
    Searched defs:strcpy (Results 1 - 24 of 24) 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
  /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
64 END(strcpy)
  /external/kernel-headers/original/asm-mips/
string.h 23 static __inline__ char *strcpy(char *__dest, __const__ char *__src) function
  /prebuilts/gcc/linux-x86/host/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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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...]
  /bionic/libc/include/
string.h 53 extern char* strcpy(char *, const char *);
118 char *strcpy(char *dest, const char *src) { function
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
string.h 47 #undef strcpy macro
110 #define strcpy(dest, src) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ssp/
string.h 47 #undef strcpy macro
110 #define strcpy(dest, src) \ macro
  /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 140 #define strcpy(s1,s2) VG_(strcpy) ((Char *)(s1),(Char *)(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);
string.c 248 // strcpy()
256 #define strcpy(a,b) __strcpy_chk(a,b,(size_t)-1) macro
260 #define strcpy BUILTIN(strcpy) macro
261 char *strcpy(char *restrict s1, const char *restrict s2);
267 strcpy(NULL, x); // expected-warning{{Null pointer argument in call to string copy function}}
271 strcpy(x, NULL); // expected-warning{{Null pointer argument in call to string copy function}}
275 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}}
279 strcpy(x, (const 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}}
285 clang_analyzer_eval(strcpy(x, y) == x); // expected-warning{{TRUE}
    [all...]
  /external/wpa_supplicant_8/src/utils/
os.h 536 #define strcpy OS_DO_NOT_USE_strcpy macro
  /external/valgrind/main/coregrind/
m_libcbase.c 267 Char* VG_(strcpy) ( Char* dest, const Char* src ) function
  /external/grub/stage2/
shared.h 373 #define strcpy grub_strcpy macro
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 518 /// char *strcpy(char *s1, const char *s2);
519 strcpy, enumerator in enum:llvm::LibFunc::Func

Completed in 473 milliseconds