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

1 2 3 4 5 6 7 8 91011>>

  /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/clang/test/CodeGen/
stack-protector.c 16 char *strcpy(char *s1, const char *s2);
21 strcpy(a, msg);
alloca.c 5 char *strcpy(char *restrict s1, const char *restrict s2);
9 strcpy(C, argv[0]);
  /external/syslinux/com32/lib/
strcat.c 9 strcpy(strchr(dst, '\0'), src);
strcpy.c 2 * strcpy.c
4 * strcpy()
9 char *strcpy(char *dst, const char *src) function
  /toolchain/binutils/binutils-2.27/opcodes/
ia64-dis.c 200 case 16: strcpy (regname, "ar.rsc"); break;
201 case 17: strcpy (regname, "ar.bsp"); break;
202 case 18: strcpy (regname, "ar.bspstore"); break;
203 case 19: strcpy (regname, "ar.rnat"); break;
204 case 21: strcpy (regname, "ar.fcr"); break;
205 case 24: strcpy (regname, "ar.eflag"); break;
206 case 25: strcpy (regname, "ar.csd"); break;
207 case 26: strcpy (regname, "ar.ssd"); break;
208 case 27: strcpy (regname, "ar.cflg"); break;
209 case 28: strcpy (regname, "ar.fsr"); break
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
strdup.c 11 return strcpy(copy, str);
  /external/elfutils/lib/
xstrdup.c 41 return strcpy (xmalloc (strlen (string) + 1), string);
  /external/python/cpython2/Python/
strdup.c 11 return strcpy(copy, str);
  /external/python/cpython3/Python/
strdup.c 11 return strcpy(copy, str);
  /external/valgrind/memcheck/tests/
memcmptest.c 11 s1 = malloc(10); strcpy(s1,"fooble");
12 s2 = malloc(10); strcpy(s2,"fooble");
str_tester.c 135 it = "strcpy";
136 check (strcpy (one, "abcd") == one, 1); /* Returned value. */
139 (void) strcpy (one, "x");
143 (void) strcpy (two, "hi there");
144 (void) strcpy (one, two);
148 (void) strcpy (one, "");
153 (void) strcpy (one + i, "hi there"); /* Unaligned destination. */
155 (void) strcpy (two, one + i); /* Unaligned source. */
159 SIMPLE_COPY(strcpy, 0, "", 41);
160 SIMPLE_COPY(strcpy, 1, "1", 42)
    [all...]
overlap.c 18 strcpy(b, "ABCDEFG");
27 /* testing memcpy/strcpy overlap */
33 // because of the errors, the strcpy's will overrun, so put some
50 strcpy(x, x+20); // ok
54 strcpy(x, x+20); // overlap
57 strcpy(x+20, x); // ok
62 strcpy(x+20, x); // overlap, but runs forever (or until it seg faults)
65 /* testing strcpy, strncpy() */
70 strcpy(b, a);
120 strcpy( src, "short" )
    [all...]
  /frameworks/wilhelm/src/
interfaces.cpp 141 strcpy(buffer, "MPH");
142 strcpy(&buffer[3], infix);
  /external/compiler-rt/test/asan/TestCases/Darwin/
suppressions-darwin.cc 24 strcpy(a, "hello");
suppressions-sandbox.cc 15 strcpy(a, "hello");
  /external/compiler-rt/test/asan/TestCases/
strncpy-overflow.cc 14 strcpy(hello, "hello");
  /external/compiler-rt/test/esan/TestCases/
libc-intercept.c 9 strcpy(Buf, Str);
  /external/swiftshader/third_party/subzero/tests_lit/asan_tests/Input/
calloc.c 7 strcpy(buf, "Hello, world!");
  /toolchain/binutils/binutils-2.27/libiberty/
choose-temp.c 68 strcpy (temp_filename, base);
69 strcpy (temp_filename + len, TEMP_FILE);
  /external/valgrind/none/tests/x86/
bug126147-x86.c 149 (void) strcpy (one, "abcdefgh");
153 (void) strcpy (one, "abcdefgh");
157 (void) strcpy (one, "abcdefgh");
162 (void) strcpy (one, "abcdefgh");
168 (void) strcpy (one, "abc");
177 (void) strcpy (one, "hi there");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
charptr.c 57 strcpy(*a, text);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
charptr.c 57 strcpy(*a, text);
  /external/icu/icu4c/source/tools/tzcode/
ialloc.c 24 (void) strcpy(result + oldsize, new);
  /external/libogg/macos/compat/
strdup.c 17 strcpy(outStr, inStr);

Completed in 286 milliseconds

1 2 3 4 5 6 7 8 91011>>