Searched refs:strdup (Results 1 - 25 of 313) sorted by relevance

1234567891011>>

/external/bison/lib/
H A Dstrdup.h0 /* strdup.h -- duplicate a string
21 /* Get strdup declaration, if available. */
24 #if defined HAVE_DECL_STRDUP && !HAVE_DECL_STRDUP && !defined strdup
26 extern char *strdup (const char *s);
H A Dstrdup.c26 # include "strdup.h"
33 #undef strdup macro
36 # define __strdup strdup
55 weak_alias (__strdup, strdup)
H A Dhard-locale.c30 #include "strdup.h"
55 char *locale = strdup (p);
/external/srec/seti/setiUtils/include/
H A Dplatform_utils.h39 /* C54 and WinCE does not have strdup */
41 char * strdup(char *in_string);
/external/valgrind/main/none/tests/
H A Dcoolo_strlen.c6 char *b2 = strdup(strcat(buffer, "THis is a very long strings"));
/external/clang/test/SemaCXX/
H A D__try.cpp10 const char * strdup(const char *);
19 Exception(const char* s = "Unknown"){what = strdup(s); }
20 Exception(const Exception& e ){what = strdup(e.what); }
/external/tcpdump/missing/
H A Dstrdup.c36 "@(#) $Header: /tcpdump/master/tcpdump/missing/strdup.c,v 1.1 2001/01/20 07:26:08 guy Exp $ (LBL)";
46 strdup(str) function
/external/ipsec-tools/src/racoon/
H A Dprsa_tok.l70 prsalval.chr = strdup(prsatext);
84 {addr4} { prsalval.chr = strdup(prsatext); return ADDR4; }
85 {addr6} { prsalval.chr = strdup(prsatext); return ADDR6; }
H A Dsainfo.c91 dloc = strdup("ANONYMOUS");
96 drmt = strdup("ANONYMOUS");
98 drmt = strdup("CLIENTADDR");
103 dpeer = strdup("NULL");
108 dclient = strdup("NULL");
370 idloc = strdup("ANONYMOUS");
375 idrmt = strdup("ANONYMOUS");
377 idrmt = strdup("CLIENTADDR");
382 id_i = strdup("ANY");
H A Dgcmalloc.h84 strdup(const char *str) function
123 #define racoon_strdup(s) strdup((s))
/external/qemu/android/utils/
H A Ddll.c100 *pError = strdup("NULL library pointer");
104 *pError = strdup("NULL or empty symbolName");
150 *pError = strdup(dlerror());
171 *pError = strdup("NULL library pointer");
175 *pError = strdup("NULL or empty symbolName");
180 *pError = strdup(dlerror());
/external/chromium/base/
H A Dstring_util_posix.h20 inline char* strdup(const char* str) { function in namespace:base
21 return ::strdup(str);
/external/valgrind/main/exp-ptrcheck/tests/
H A Dstrcpy.c23 char* p1 = strdup(h);
24 char* p2 = strdup(h);
H A Dstrlen.c14 char* p = strdup(h);
H A Dunaligned.c8 char* x = strdup("hello");
/external/valgrind/main/helgrind/
H A Dhg_basics.c61 Char* HG_(strdup) ( HChar* cc, const Char* s ) function
63 return VG_(strdup)( cc, s );
H A Dhg_basics.h44 Char* HG_(strdup) ( HChar* cc, const Char* s );
/external/e2fsprogs/intl/
H A Dtextdomain.c66 # ifndef strdup
67 # define strdup(str) __strdup (str) macro
110 new_domain = strdup (domainname);
/external/oprofile/libutil/
H A Dop_libiberty.h69 #define xstrdup(str) strdup(str)
/external/valgrind/main/include/
H A Dpub_tool_mallocfree.h44 extern Char* VG_(strdup) ( HChar* cc, const Char* s );
/external/webkit/Source/WebKit/android/wds/client/
H A DDevice.h46 , m_name(strdup(name))
/external/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp38 *OutMessage = strdup(Message.c_str());
58 *OutMessage = strdup(Message.c_str());
/external/dbus/test/name-test/
H A Dtest-shutdown.c24 session_addr_no_guid = strdup (getenv ("DBUS_SESSION_BUS_ADDRESS"));
/external/oprofile/libpopt/
H A Dsystem.h74 #define xstrdup(_str) strdup(_str)
/external/webkit/Source/WebCore/platform/chromium/
H A DTraceEvent.h62 m_extra = adoptPtr(strdup(extra));

Completed in 402 milliseconds

1234567891011>>