HomeSort by relevance Sort by last modified time
    Searched refs:strcpy (Results 1 - 25 of 1021) 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 12 char *strcpy(char *s1, const char *s2);
16 strcpy(a, msg);
alloca.c 5 char *strcpy(char *restrict s1, const char *restrict s2);
9 strcpy(C, argv[0]);
  /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...]
  /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
  /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 136 strcpy(buffer, "MPH");
137 strcpy(&buffer[3], infix);
  /bionic/libc/bionic/
__strcpy_chk.cpp 41 * This strcpy check is called if _FORTIFY_SOURCE is defined and
48 __fortify_chk_fail("strcpy buffer overflow",
52 return strcpy(dest, src);
  /external/compiler-rt/SDKs/darwin/usr/include/
string.h 25 char *strcpy(char *, const char *);
  /external/compiler-rt/SDKs/linux/usr/include/
string.h 25 char *strcpy(char *, const char *);
  /external/compiler-rt/lib/asan/lit_tests/
strncpy-overflow.cc 22 strcpy(hello, "hello");
  /system/core/sh/
mystring.h 45 #define scopy(s1, s2) ((void)strcpy(s2, s1))
  /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");
  /dalvik/vm/compiler/codegen/mips/
ArchUtility.cpp 49 strcpy(tbuf, "!");
56 strcpy(tbuf,"0000");
88 strcpy(tbuf, "eq");
91 strcpy(tbuf, "ne");
94 strcpy(tbuf, "lt");
97 strcpy(tbuf, "ge");
100 strcpy(tbuf, "gt");
103 strcpy(tbuf, "le");
106 strcpy(tbuf, "cs");
109 strcpy(tbuf, "mi")
    [all...]
  /external/libogg/macos/compat/
strdup.c 17 strcpy(outStr, inStr);
  /external/libvorbis/macos/compat/
strdup.c 17 strcpy(outStr, inStr);
  /dalvik/vm/compiler/codegen/arm/
ArchUtility.cpp 92 strcpy(tbuf, "!");
103 strcpy(tbuf,"");
130 strcpy(tbuf, name);
133 strcpy(tbuf,"0000");
169 strcpy(tbuf, "eq");
172 strcpy(tbuf, "ne");
175 strcpy(tbuf, "lt");
178 strcpy(tbuf, "ge");
181 strcpy(tbuf, "gt");
184 strcpy(tbuf, "le")
    [all...]
  /external/ppp/pppd/plugins/
passwordfd.c 44 strcpy (passwd, save_passwd);
67 strcpy (save_passwd, passwd);
  /frameworks/compile/mclinker/lib/ADT/
StringEntry.cpp 37 strcpy(data, pVal.data());
45 strcpy(data, pVal);
  /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)
  /ndk/sources/host-tools/make-3.81/
vmsify.c 140 strcpy (s, reslt);
256 strcpy (vmsname, name);
268 strcpy (vmsname, name);
289 strcpy (vmsname, name);
378 strcpy (vptr, "[.");
396 strcpy (vptr, "[.");
440 strcpy (vptr+1, "[000000]");
475 strcpy (vmsname, s1);
499 strcpy (vptr, "[000000.");
559 strcpy (vptr, "000000")
    [all...]
  /hardware/invensense/libsensors/
SensorBase.cpp 101 strcpy(devname, dirname);
109 strcpy(filename, de->d_name);
117 strcpy(input_name, filename);

Completed in 435 milliseconds

1 2 3 4 5 6 7 8 91011>>