HomeSort by relevance Sort by last modified time
    Searched refs:strdup (Results 1 - 25 of 1039) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/curl/src/
tool_strdup.h 27 extern char *strdup(const char *str);
tool_strdup.c 25 char *strdup(const char *str) function
  /external/clang/test/Analysis/
redefined_system.c 12 char strdup();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
unions.cpp 4 extern "C" char *strdup(const char *s);
65 uu.s = strdup("");
71 uu.s = strdup("");
88 uu.s = strdup("");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
strdup.c 0 /* strdup() replacement (from stdwin, if you must know) */
6 strdup(const char *str) function
  /external/compiler-rt/test/asan/TestCases/
strdup_oob_test.cc 6 // When built as C on Linux, strdup is transformed to __strdup.
17 char *copy = strdup(kString);
22 // CHECK: #{{[01]}} {{.*}}strdup
printf-2.c 19 char *p = strdup((const char *)s);
  /external/compiler-rt/test/msan/
c-strdup.c 6 // 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/python/cpython2/Python/
strdup.c 0 /* strdup() replacement (from stdwin, if you must know) */
6 strdup(const char *str) function
  /external/python/cpython3/Python/
strdup.c 0 /* strdup() replacement (from stdwin, if you must know) */
6 strdup(const char *str) function
  /external/valgrind/none/tests/
coolo_strlen.c 6 char *b2 = strdup(strcat(buffer, "THis is a very long strings"));
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/include/vulkan/
vk_sdk_platform.h 42 #define strdup _strdup macro
  /bionic/libc/upstream-openbsd/lib/libc/string/
strdup.c 1 /* $OpenBSD: strdup.c,v 1.7 2015/08/31 02:53:57 guenther Exp $ */
39 strdup(const char *str) function
50 DEF_WEAK(strdup); variable
  /external/clang/test/Sema/
builtins-gnu-mode.c 8 int strdup; variable
  /external/syslinux/com32/lib/
strdup.c 2 * strdup.c
8 char *strdup(const char *s) function
  /external/curl/lib/
getenv.c 43 return (env[0] != '\0')?strdup(env):NULL;
46 return (env && env[0])?strdup(env):NULL;
  /toolchain/binutils/binutils-2.27/libiberty/
lrealpath.c 88 return strdup (rp);
99 return strdup (filename);
124 ret = strdup (rp ? rp : filename);
143 return strdup (filename);
150 return strdup (buf);
156 return strdup (filename);
  /external/mdnsresponder/mDNSShared/
dnsextd_lexer.l 42 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;
  /system/tools/hidl/c2hal/
c2hal_l.ll 73 yylval->str = strdup(yytext); \
111 \/\*([^*]|\*+[^*\/])*\*+\/ { last_comment = strdup(yytext); }
133 <INCLUDE_STATE>{PATH} { yylval->str = strdup(yytext); return INCLUDE_FILE; }
138 functionText = strdup(yytext);
151 yylval->str = strdup(functionText.c_str());
160 yylval->str = strdup(yytext);
172 yylval->str = strdup(defineText.c_str());
176 "using" { BEGIN(COPY_DECL_STATE); otherText = strdup(yytext); }
177 "#"{S}*{L}+ { BEGIN(COPY_DECL_STATE); otherText = strdup(yytext); }
185 yylval->str = strdup(otherText.c_str())
    [all...]
  /external/clang/test/SemaCXX/
__try.cpp 10 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/
string_util_posix.h 20 inline char* strdup(const char* str) { function in namespace:base
21 return ::strdup(str);
  /external/libogg/macos/compat/sys/
types.h 21 #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/
unit1304.c 32 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/
strdup.c 6 char *strdup(const char *inStr) function
  /external/python/cpython3/Modules/_decimal/libmpdec/
vccompat.h 50 #define strdup _strdup macro

Completed in 474 milliseconds

1 2 3 4 5 6 7 8 91011>>