HomeSort by relevance Sort by last modified time
    Searched defs:stpcpy (Results 51 - 59 of 59) sorted by null

1 23

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
string2.h 598 # define stpcpy(dest, src) __stpcpy (dest, src) macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string2.h 598 # define stpcpy(dest, src) __stpcpy (dest, src) macro
    [all...]
string.h 676 # define stpcpy(dest, src) __stpcpy ((dest), (src)) macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string2.h 598 # define stpcpy(dest, src) __stpcpy (dest, src) macro
    [all...]
  /external/e2fsprogs/intl/
dcigettext.c 142 # 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. In GNU C Library thi
1172 stpcpy (char *dest, const char *src) function
    [all...]
  /toolchain/binutils/binutils-2.25/intl/
dcigettext.c 142 # ifndef stpcpy
143 # define stpcpy __stpcpy macro
154 static char *stpcpy PARAMS ((char *dest, const char *src));
562 stpcpy (stpcpy (strchr (dirname, '\0'), "/"), binding->dirname);
574 stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"),
1178 avoid the non-standard function stpcpy. In GNU C Library this
1183 stpcpy (dest, src function
    [all...]
  /external/strace/
util.c 171 stpcpy(char *dst, const char *src) function
386 outptr = stpcpy(outstr, prefix);
397 outptr = stpcpy(outptr, xlat->str);
    [all...]
defs.h 64 /* Some libc have stpcpy, some don't. Sigh...
67 #undef stpcpy macro
68 #define stpcpy strace_stpcpy macro
69 extern char *stpcpy(char *dst, const char *src);
  /external/clang/test/Analysis/
string.c 307 // stpcpy()
315 #define stpcpy(a,b) __stpcpy_chk(a,b,(size_t)-1) macro
319 #define stpcpy BUILTIN(stpcpy) macro
320 char *stpcpy(char *restrict s1, const char *restrict s2);
328 clang_analyzer_eval(stpcpy(x, y) == &x[strlen(y)]); // expected-warning{{TRUE}}
336 stpcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
342 stpcpy(x, y); // no-warning
    [all...]

Completed in 619 milliseconds

1 23