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

1234567891011>>

/external/curl/src/
H A Dtool_strdup.h27 extern char *strdup(const char *str);
H A Dtool_strdup.c25 char *strdup(const char *str) function
/external/clang/test/Analysis/
H A Dredefined_system.c12 char strdup();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
H A Dunions.cpp4 extern "C" char *strdup(const char *s);
65 uu.s = strdup("");
71 uu.s = strdup("");
88 uu.s = strdup("");
/external/bison/lib/
H A Dstrdup.c30 # undef strdup macro
34 # define __strdup strdup
53 weak_alias (__strdup, strdup)
/external/compiler-rt/test/asan/TestCases/
H A Dstrdup_oob_test.cc6 // When built as C on Linux, strdup is transformed to __strdup.
17 char *copy = strdup(kString);
22 // CHECK: #{{[01]}} {{.*}}strdup
H A Dprintf-2.c19 char *p = strdup((const char *)s);
/external/compiler-rt/test/msan/
H A Dc-strdup.c6 // Test that strdup in C programs is intercepted.
7 // GLibC headers translate strdup to __strdup at -O1 and higher.
13 char *p = strdup(buf);
/external/valgrind/none/tests/
H A Dcoolo_strlen.c6 char *b2 = strdup(strcat(buffer, "THis is a very long strings"));
/external/vulkan-validation-layers/include/vulkan/
H A Dvk_sdk_platform.h42 #define strdup _strdup macro
/external/clang/test/Sema/
H A Dbuiltins-gnu-mode.c8 int strdup; variable
/external/syslinux/com32/lib/
H A Dstrdup.c2 * strdup.c
8 char *strdup(const char *s) function
/external/curl/lib/
H A Dgetenv.c42 return (env[0] != '\0')?strdup(env):NULL;
45 return (env && env[0])?strdup(env):NULL;
/external/mdnsresponder/mDNSShared/
H A Ddnsextd_lexer.l42 dup = strdup( string + 1);
75 \* yylval.string = strdup(yytext); return WILDCARD;
76 [0-9]+\.[0-9]+\.[0-9]+\.[0-9]+ yylval.string = strdup(yytext); return DOTTED_DECIMAL_ADDRESS;
78 [a-zA-Z0-9]+(\.[a-zA-Z0-9]+)* yylval.string = strdup(yytext); return HOSTNAME;
79 [a-zA-Z0-9\.]+([a-zA-Z0-9\.]+)* yylval.string = strdup(yytext); return DOMAINNAME;
/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/libchrome/base/strings/
H A Dstring_util_posix.h20 inline char* strdup(const char* str) { function in namespace:base
21 return ::strdup(str);
/external/libogg/macos/compat/sys/
H A Dtypes.h21 #ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options align=power char *strdup(const char *inStr); #pragma options align=reset #if defined(__cplusplus) } #endif #endif /* __S (…)
/external/libvorbis/macos/compat/sys/
H A Dtypes.h21 #ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options align=power char *strdup(const char *inStr); #pragma options align=reset #if defined(__cplusplus) } #endif #endif /* __S (…)
/external/curl/tests/unit/
H A Dunit1304.c32 password = strdup("");
33 login = strdup("");
68 login = strdup("me");
82 login = strdup("me");
97 login = strdup("admi");
112 login = strdup("adminn");
127 login = strdup("");
142 password = strdup("");
157 password = strdup("");
160 login = strdup("");
[all...]
/external/libogg/macos/compat/
H A Dstrdup.c6 char *strdup(const char *inStr) function
/external/libvorbis/macos/compat/
H A Dstrdup.c6 char *strdup(const char *inStr) function
/external/openssh/openbsd-compat/regress/
H A Dstrduptest.c27 b = strdup(a);
/external/tcpdump/missing/
H A Dstrdup.c41 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; }
/external/ltp/testcases/kernel/fs/fs_bind/bin/
H A Dnsclone.c53 child_cmd = (char *)strdup(argv[2]);
54 parent_cmd = (char *)strdup(argv[1]);

Completed in 2389 milliseconds

1234567891011>>