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

  /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
  /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
  /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/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}}
288 clang_analyzer_eval(strcpy(x, y) == x); // expected-warning{{TRUE}
    [all...]
  /external/compiler-rt/lib/asan/
asan_dll_thunk.cc 320 INTERCEPT_LIBRARY_FUNCTION(strcpy); // NOLINT variable
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 571 /// char *strcpy(char *s1, const char *s2);
572 strcpy, enumerator in enum:llvm::LibFunc::Func
745 case LibFunc::memcmp: case LibFunc::strcmp: case LibFunc::strcpy:
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
mandreel.js 107157 function strcpy(sp) function
    [all...]

Completed in 613 milliseconds