HomeSort by relevance Sort by last modified time
    Searched refs:stpcpy (Results 76 - 100 of 137) sorted by null

1 2 34 5 6

  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/
string.h 56 extern char* stpcpy(char* __restrict, const char* __restrict);
113 char* stpcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/
string.h 56 extern char* stpcpy(char* __restrict, const char* __restrict);
113 char* stpcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/
string.h 56 extern char* stpcpy(char* __restrict, const char* __restrict);
113 char* stpcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/
string.h 56 extern char* stpcpy(char* __restrict, const char* __restrict);
113 char* stpcpy(char* __restrict dest, const char* __restrict src) { function
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/
string.h 56 extern char* stpcpy(char* __restrict, const char* __restrict);
113 char* stpcpy(char* __restrict dest, const char* __restrict src) { function
  /external/bison/darwin-lib/
string.h 559 _GL_FUNCDECL_SYS (stpcpy, char *,
563 _GL_CXXALIAS_SYS (stpcpy, char *,
565 _GL_CXXALIASWARN (stpcpy); variable
567 # undef stpcpy macro
569 _GL_WARN_ON_USE (stpcpy, "stpcpy is unportable - "
570 "use gnulib module stpcpy for portability");
    [all...]
  /external/bison/linux-lib/
string.h 559 _GL_FUNCDECL_SYS (stpcpy, char *,
563 _GL_CXXALIAS_SYS (stpcpy, char *,
565 _GL_CXXALIASWARN (stpcpy); variable
567 # undef stpcpy macro
569 _GL_WARN_ON_USE (stpcpy, "stpcpy is unportable - "
570 "use gnulib module stpcpy for portability");
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-wince-glue.c 44 stpcpy (char *dest, const char *src) function
231 strcpy (stpcpy (stpcpy (result, tmp), "\\bin\\"), name);
255 strcpy (stpcpy (stpcpy (result, tmp), "\\"), name);
  /external/strace/
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);
signal.c 174 s = stpcpy(outstr, prefix);
195 s = stpcpy(s, signalent[i] + 3);
util.c 152 stpcpy(char *dst, const char *src) function
331 outptr = stpcpy(outstr, prefix);
342 outptr = stpcpy(outptr, xlat->str);
  /bionic/libc/arch-arm/cortex-a15/bionic/
string_copy.S 56 #if !defined(STPCPY) && !defined(STRCPY)
57 #error "Either STPCPY or STRCPY must be defined."
67 #if defined(STPCPY)
86 #if defined(STPCPY)
102 #if defined(STPCPY)
103 ENTRY(stpcpy) function
120 #if defined(STPCPY)
193 #if defined(STPCPY)
207 #if defined(STPCPY)
219 #if defined(STPCPY)
    [all...]
  /external/elfutils/src/
findtextrel.c 212 *((char *) mempcpy (stpcpy (mempcpy (new_fname, rootdir, rootdir_len),
383 strcpy (mempcpy (stpcpy (mempcpy (mempcpy (difname, rootdir,
ranlib.c 233 strcpy (stpcpy (tmpfname, fname), "XXXXXX");
nm.c 438 cp = stpcpy (cp, prefix);
439 cp = stpcpy (cp, fname);
440 stpcpy (cp, "[");
444 cp = stpcpy (cp, suffix);
445 stpcpy (cp, "]");
    [all...]
ar.c 768 strcpy (stpcpy (tmpfname, arfname), "XXXXXX");
1007 strcpy (stpcpy (tmpfname, arfname), "XXXXXX");
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 248 case LibFunc::stpcpy: case LibFunc::strlen: case LibFunc::strnlen:
  /bionic/tests/
string_test.cpp 312 ASSERT_EQ(buf, stpcpy(buf, orig));
322 ASSERT_EQ(buf+strlen(orig), stpcpy(buf, orig));
336 ASSERT_EQ(buf+strlen(orig), stpcpy(buf, orig));
508 TEST(STRING_TEST, stpcpy) {
526 ASSERT_TRUE(stpcpy(state.ptr2, state.ptr1) == state.ptr2 + strlen(state.ptr1));
    [all...]
  /bionic/libc/arch-arm/cortex-a9/bionic/
string_copy.S 56 #if !defined(STPCPY) && !defined(STRCPY)
57 #error "Either STPCPY or STRCPY must be defined."
67 #if defined(STPCPY)
86 #if defined(STPCPY)
102 #if defined(STPCPY)
103 ENTRY(stpcpy) function
119 #if defined(STPCPY)
160 #if defined(STPCPY)
168 #if defined(STPCPY)
187 #if defined(STPCPY)
    [all...]
  /external/elfutils/libdw/
dwarf_getsrclines.c 381 cp = stpcpy (cp, dirarray[diridx].dir);
561 cp = stpcpy (cp, dirarray[diridx].dir);
  /toolchain/binutils/binutils-2.25/libiberty/
pex-win32.c 64 extern char *stpcpy (char *dst, const char *src);
613 bufptr = stpcpy (bufptr, env_copy[var]) + 1;
  /external/libunwind/tests/
test-coredump-unwind.c 121 p = stpcpy(msg, msg_prefix);
  /external/toybox/toys/posix/
grep.c 299 s = stpcpy(s, al->arg);
  /external/valgrind/shared/
vg_replace_strmem.c 81 20200 STPCPY
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 322 INTERCEPTOR(char *, stpcpy, char *dest, const char *src) { // NOLINT
327 char *res = REAL(stpcpy)(dest, src); // NOLINT
    [all...]

Completed in 1880 milliseconds

1 2 34 5 6