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

12

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.11-4.8/sysroot/usr/include/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...]
  /external/strace/
util.c 154 stpcpy(char *dst, const char *src) function
309 outptr = stpcpy(outstr, prefix);
315 outptr = stpcpy(outptr, xlat->str);
    [all...]
defs.h 75 /* Some libc have stpcpy, some don't. Sigh...
78 #undef stpcpy macro
79 #define stpcpy strace_stpcpy macro
80 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
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 557 /// char *stpcpy(char *s1, const char *s2);
558 stpcpy, enumerator in enum:llvm::LibFunc::Func
746 case LibFunc::stpcpy: case LibFunc::strlen: case LibFunc::strnlen:

Completed in 505 milliseconds

12