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

1234567891011>>

/macosx-10.9.5/text_cmds-87/sort/
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);
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/interpose-basic-prebound/
H A Dfoo.c7 const char* x = strdup("123");
8 const char* y = strdup("456");
H A Dmystrdup.c32 DYLD_INTERPOSE(mystrdup, strdup)
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/interpose-basic/
H A Dwrap.c26 // make a pointer statically initiallized to strdup()
29 static char* (*proc)(const char*) = strdup;
H A Dmystrdup.c32 DYLD_INTERPOSE(mystrdup, strdup)
/macosx-10.9.5/ntp-88/libntp/
H A Dstrdup.c7 char *strdup(const char *s);
10 strdup( function
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dstrdup.c31 # undef strdup macro
35 # define __strdup strdup
54 weak_alias (__strdup, strdup)
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c/
H A Dutils_test.c52 array[0] = strdup("first");
53 array[1] = strdup("second");
54 array[2] = strdup("third");
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/saslauthd/
H A Dauth_sia.c70 return strdup("OK");
73 return strdup("NO");
78 return strdup("NO (possible system error)");
H A Dauth_krb5.c192 return strdup("NO saslauthd internal NULL password or username");
197 return strdup("NO saslauthd internal krb5_init_context error");
202 return strdup("NO saslauthd principal name error");
208 return strdup("NO saslauthd internal krb5_parse_name error");
213 return strdup("NO saslauthd internal error");
220 return strdup("NO saslauthd internal error");
229 return strdup("NO saslauthd internal error");
241 result = strdup("NO krb5_verify_user_opt failed");
243 result = strdup("OK");
359 return strdup("N
[all...]
H A Dauth_krb4.c197 return strdup("NO saslauthd internal error");
202 return strdup("NO saslauthd internal error");
223 return strdup("NO saslauthd principal name error");
247 return strdup("NO");
252 return strdup("NO saslauthd internal error");
262 return strdup("NO saslauthd internal error");
272 return strdup("NO saslauthd internal error");
277 return strdup("OK");
/macosx-10.9.5/BerkeleyDB-21/db/clib/
H A Dstrdup.c33 * $Id: strdup.c,v 12.1 2006/05/05 14:53:08 bostic Exp $
41 * strdup --
44 * PUBLIC: char *strdup __P((const char *));
48 strdup(str) function
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/digest/
H A Dduplicate_name.c48 *dest_name = (gss_name_t)strdup(sn);
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Destrdup.c42 * Like strdup but never fails.
48 char *tmp = strdup (str);
51 errx (1, "strdup failed");
H A Dstrdup.c40 strdup(const char *old) function
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/astsa/
H A Dstrdup.c31 strdup(register const char* s) function
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dstrdup.c1 /* $NetBSD: strdup.c,v 1.4 2005/05/16 06:40:04 lukem Exp $ */
2 /* from NetBSD: strdup.c,v 1.13 2003/08/07 16:43:50 agc Exp */
36 strdup(const char *str) function
/macosx-10.9.5/ntp-88/libopts/compat/
H A Dstrdup.c2 * Platforms without strdup ?!?!?!
6 strdup( char const *s ) function
13 cp = (char *) AGALOC((unsigned) (strlen(s)+1), "strdup");
/macosx-10.9.5/ntp-88/sntp/libopts/compat/
H A Dstrdup.c2 * Platforms without strdup ?!?!?!
6 strdup( char const *s ) function
13 cp = (char *) AGALOC((unsigned) (strlen(s)+1), "strdup");
/macosx-10.9.5/uucp-11/uucp/lib/
H A Dstrdup.c0 /* strdup.c
7 strdup (z) function
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dgetenv.c42 return (env[0] != '\0')?strdup(env):NULL;
45 return (env && env[0])?strdup(env):NULL;
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dlrealpath.c88 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);
/macosx-10.9.5/mDNSResponder-522.92.1/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;
/macosx-10.9.5/Libc-997.90.3/string/FreeBSD/
H A Dstrdup.c31 static char sccsid[] = "@(#)strdup.c 8.1 (Berkeley) 6/4/93";
34 __FBSDID("$FreeBSD: src/lib/libc/string/strdup.c,v 1.6 2009/02/03 17:58:20 danger Exp $");
41 strdup(const char *str) function
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/regress/
H A Dstrduptest.c27 b = strdup(a);

Completed in 482 milliseconds

1234567891011>>