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

1 2 3 4 5 6 7 8 91011>>

  /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");
62 strcpy((++i, gbuf), "Hi there");
70 strcpy(buf[++gi], "Hi there");
77 strcpy((char *)((++gi) + gj), "Hi there")
    [all...]
stack-protector.c 14 char *strcpy(char *s1, const char *s2);
18 strcpy(a, msg);
alloca.c 5 char *strcpy(char *restrict s1, const char *restrict s2);
9 strcpy(C, argv[0]);
  /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/chromium_org/third_party/npapi/npspy/windows/
winentry.cpp 52 strcpy(szReason, "DLL_PROCESS_ATTACH");
55 strcpy(szReason, "DLL_THREAD_ATTACH");
58 strcpy(szReason, "DLL_PROCESS_DETACH");
61 strcpy(szReason, "DLL_THREAD_DETACH");
  /external/chromium_org/tools/gyp/test/win/compiler-flags/
buffer-security.cc 10 strcpy(stuff, "blah");
  /external/oprofile/libop/
op_config.c 49 strcpy(op_session_dir, session_dir);
51 strcpy(op_samples_dir, op_session_dir);
54 strcpy(op_samples_current_dir, op_samples_dir);
57 strcpy(op_lock_file, op_session_dir);
60 strcpy(op_pipe_file, op_session_dir);
63 strcpy(op_log_file, op_samples_dir);
66 strcpy(op_dump_status, op_session_dir);
69 strcpy(op_device, op_session_dir);
72 strcpy(op_note_device, op_session_dir);
75 strcpy(op_hash_device, op_session_dir)
    [all...]
  /external/elfutils/0.153/lib/
xstrdup.c 39 return strcpy (xmalloc (strlen (string) + 1), string);
  /external/valgrind/main/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.c 141 strcpy(buffer, "MPH");
142 strcpy(&buffer[3], infix);
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglstring.c 47 strcpy(s2, s);
  /external/compiler-rt/SDKs/linux/usr/include/
string.h 26 char *strcpy(char *, const char *);
  /external/compiler-rt/test/asan/TestCases/
strncpy-overflow.cc 13 strcpy(hello, "hello");
  /external/libpcap/
fad-sita.c 45 strcpy(errbuf, "");
  /external/mesa3d/src/egl/main/
eglstring.c 47 strcpy(s2, s);
  /external/svox/pico/tts/
svox_ssml_parser.cpp 135 strcpy(m_docLanguage, attributes[i+1]);
220 strcpy(xsampastr, phonstr);
293 strcpy(time, attributes[i+1]);
308 strcpy(time, SSML_BREAK_WEAK); /* if no time or strength attributes are specified, default to weak break */
342 strcpy(svoxpitch, "100");
380 strcpy(svoxrate, "100");
423 strcpy(svoxvol, "100");
605 strcpy(converted, SSML_PITCH_XLOW);
615 strcpy(converted, SSML_PITCH_LOW);
625 strcpy(converted, SSML_PITCH_MEDIUM)
    [all...]
  /external/valgrind/main/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");
  /external/lldb/test/functionalities/data-formatter/data-formatter-smart-array/
main.cpp 29 strcpy(strarr,"Nested Hello world!");
31 strcpy(strptr,"Nested Hello world!");
  /external/strace/test/
skodic.c 27 strcpy(c, "/etc/passwd");
28 strcpy(c, "/etc/shadow");
  /bionic/libc/bionic/
__strcpy_chk.cpp 43 * This strcpy check is called if _FORTIFY_SOURCE is defined and
50 __fortify_chk_fail("strcpy: prevented write past end of buffer",
54 return strcpy(dest, src);
  /external/libogg/macos/compat/
strdup.c 17 strcpy(outStr, inStr);
  /external/libvorbis/macos/compat/
strdup.c 17 strcpy(outStr, inStr);
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
codec_before_streaming_test.cc 35 strcpy(codec_instance_.plname, "SomeInvalidCodecName");
42 strcpy(codec_instance_.plname, "iSAC");
44 strcpy(codec_instance_.plname, "ISAC");
49 strcpy(codec_instance_.plname, "ISAC");
64 strcpy(codec_instance_.plname, "iLBC");

Completed in 1614 milliseconds

1 2 3 4 5 6 7 8 91011>>