Searched defs:stpcpy (Results 1 - 7 of 7) sorted by relevance

/external/bison/lib/
H A Dstpcpy.c0 /* stpcpy.c -- copy a string and return pointer to end of new string
29 #undef stpcpy macro
32 # define __stpcpy stpcpy
49 weak_alias (__stpcpy, stpcpy)
/external/clang/INPUTS/
H A Dstpcpy-test.c4 #define stpcpy(dest, src) __stpcpy (dest, src) macro
15 stpcpy (stpcpy (stpcpy (stpcpy (a, b), c), d), e)
16 stpcpy (stpcpy (stpcpy (stpcpy (a, b), c), d), e)
17 stpcpy (stpcp
[all...]
/external/elfutils/bionic-fixup/
H A DAndroidFixup.h73 /* workaround for stpcpy */
74 static inline char *stpcpy(char *dst, const char *src) function
/external/e2fsprogs/intl/
H A Dl10nflist.c19 /* Tell glibc's <string.h> to provide a prototype for stpcpy().
56 # ifndef stpcpy
57 # define stpcpy(dest, src) __stpcpy(dest, src) macro
61 #define stpcpy(dest, src) my_stpcpy(dest, src) macro
62 static char *stpcpy (char *dest, const char *src);
226 cp = stpcpy (cp, language);
231 cp = stpcpy (cp, territory);
236 cp = stpcpy (cp, codeset);
241 cp = stpcpy (cp, normalized_codeset);
248 cp = stpcpy (c
416 stpcpy (char *dest, const char *src) function
[all...]
H A Ddcigettext.c142 # ifndef stpcpy
143 # define stpcpy __stpcpy macro
158 #define stpcpy(dest, src) my_stpcpy(dest, src) macro
159 static char *stpcpy (char *dest, const char *src);
558 stpcpy (stpcpy (strchr (dirname, '\0'), "/"), binding->dirname);
570 stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"),
1167 avoid the non-standard function stpcpy
1172 stpcpy (char *dest, const char *src) function
[all...]
/external/clang/test/Analysis/
H A Dstring.c303 // stpcpy()
311 #define stpcpy(a,b) __stpcpy_chk(a,b,(size_t)-1) macro
315 #define stpcpy BUILTIN(stpcpy) macro
316 char *stpcpy(char *restrict s1, const char *restrict s2);
324 clang_analyzer_eval(stpcpy(x, y) == &x[strlen(y)]); // expected-warning{{TRUE}}
332 stpcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
338 stpcpy(x, y); // no-warning
/external/dbus/dbus/
H A Ddbus-sysdeps-wince-glue.c44 stpcpy (char *dest, const char *src) function
231 strcpy (stpcpy (stpcpy (result, tmp), "\\bin\\"), name);
255 strcpy (stpcpy (stpcpy (result, tmp), "\\"), name);

Completed in 144 milliseconds