HomeSort by relevance Sort by last modified time
    Searched refs:strcpy (Results 1 - 25 of 731) 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/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/lldb/test/functionalities/data-formatter/data-formatter-smart-array/
main.cpp 29 strcpy(strarr,"Nested Hello world!");
31 strcpy(strptr,"Nested Hello world!");
  /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");
  /external/compiler-rt/SDKs/darwin/usr/include/
string.h 26 char *strcpy(char *, const char *);
  /external/jsoncpp/include/json/
assertions.h 25 #define JSON_FAIL_MESSAGE( message ) { assert(false && message); strcpy(reinterpret_cast<char*>(666), message); exit(123); }
  /external/nanopb-c/tests/alltypes/
encode_alltypes.c 34 strcpy(alltypes.req_string, "1014");
37 strcpy(alltypes.req_submsg.substuff1, "1016");
57 alltypes.rep_string_count = 5; strcpy(alltypes.rep_string[4], "2014");
62 strcpy(alltypes.rep_submsg[4].substuff1, "2016");
114 strcpy(alltypes.opt_string, "3054");
119 strcpy(alltypes.opt_submsg.substuff1, "3056");
  /external/nanopb-c/tests/backwards_compatibility/
encode_legacy.c 37 strcpy(alltypes.req_string, "1014");
40 strcpy(alltypes.req_submsg.substuff1, "1016");
60 alltypes.rep_string_count = 5; strcpy(alltypes.rep_string[4], "2014");
65 strcpy(alltypes.rep_submsg[4].substuff1, "2016");
105 strcpy(alltypes.opt_string, "3054");
110 strcpy(alltypes.opt_submsg.substuff1, "3056");
  /external/bluetooth/bluedroid/gki/ulinux/
data_types.h 53 #define BCM_STRCPY_S(x1,x2,x3) strcpy((x1),(x3))
  /external/chromium_org/base/third_party/xdg_user_dirs/
xdg_user_dir_lookup.cc 71 strcpy (config_file, home_dir);
80 strcpy (config_file, config_home);
140 strcpy (user_dir, home_dir);
211 strcpy (user_dir, home_dir);
  /external/chromium_org/third_party/npapi/npspy/common/
logfile.cpp 57 strcpy(szFileName, filename);

Completed in 2317 milliseconds

1 2 3 4 5 6 7 8 91011>>