Searched defs:strcpy (Results 1 - 12 of 12) sorted by relevance

/external/gptfdisk/
H A Dsupport.h38 #define strcpy strcpy_s macro
/external/clang/test/CodeGen/
H A Dobject-size.c3 #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((cha
[all...]
H A D2002-07-14-MiscTests3.c157 void strcpy(char *s1, char *s2) { function
/external/valgrind/coregrind/m_demangle/
H A Dvg_libciface.h58 #define strcpy(_dd,_ss) VG_(strcpy)((_dd),(_ss)) macro
/external/valgrind/coregrind/m_gdbserver/
H A Dserver.h143 #define strcpy(s1,s2) VG_(strcpy) ((s1),(s2)) macro
/external/clang/test/Analysis/
H A Dtaint-generic.c15 #define strcpy(dest, src) \ macro
83 // Test taint propagation through strcpy and family.
85 strcpy(scpy, s);
H A Dstring.c248 // 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(
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc382 INTERCEPT_LIBRARY_FUNCTION(strcpy); // NOLINT variable
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h653 #define strcpy OS_DO_NOT_USE_strcpy macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h653 #define strcpy OS_DO_NOT_USE_strcpy macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h653 #define strcpy OS_DO_NOT_USE_strcpy macro
/external/valgrind/coregrind/
H A Dm_libcbase.c300 HChar* VG_(strcpy) ( HChar* dest, const HChar* src ) function
539 VG_(strcpy) (tok_input, input);
557 VG_(strcpy) (tok_tokens, tokens);

Completed in 1660 milliseconds