Searched refs:strdup (Results 51 - 75 of 967) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/openpam/lib/libpam/
H A Dpam_putenv.c73 if ((p = strdup(namevalue)) == NULL)
91 if ((pamh->env[pamh->env_count] = strdup(namevalue)) == NULL)
H A Dpam_getenvlist.c72 if ((envlist[i] = strdup(pamh->env[i])) == NULL) {
/freebsd-9.3-release/crypto/heimdal/lib/gssapi/ntlm/
H A Dimport_name.c86 n->user = strdup(name);
87 n->domain = strdup(p);
/freebsd-9.3-release/sbin/devd/
H A Dparse.y139 { $$ = new_match(strdup("device-name"), $2); }
141 { $$ = new_media(strdup("media-type"), $2); }
143 { $$ = new_match(strdup("class"), $2); }
145 { $$ = new_match(strdup("subdevice"), $2); }
/freebsd-9.3-release/sys/cddl/compat/opensolaris/sys/
H A Dsunddi.h38 #define strdup(ptr) strdup((ptr), M_SOLARIS) macro
/freebsd-9.3-release/usr.bin/ldd/
H A Dldd.c92 argv[i++] = strdup(_PATH_LDD32);
94 argv[i++] = strdup("-a");
96 argv[i++] = strdup("-v");
98 argv[i++] = strdup("-f");
99 argv[i++] = strdup(fmt1);
102 argv[i++] = strdup("-f");
103 argv[i++] = strdup(fmt2);
105 argv[i++] = strdup(file);
/freebsd-9.3-release/crypto/heimdal/appl/afsutil/
H A Dpagsh.c145 typename_arg = strdup(name);
147 errx(1, "strdup");
198 path = strdup(pw->pw_shell);
201 path = strdup(*argv++);
208 args[i] = strdup(p+1);
210 args[i] = strdup(path);
/freebsd-9.3-release/tools/regression/lib/libc/nss/
H A Dtest-getpw.c87 dest->pw_name = strdup(src->pw_name);
89 dest->pw_passwd = strdup(src->pw_passwd);
91 dest->pw_class = strdup(src->pw_class);
93 dest->pw_gecos = strdup(src->pw_gecos);
95 dest->pw_dir = strdup(src->pw_dir);
97 dest->pw_shell = strdup(dest->pw_shell);
172 pwd->pw_name = strdup(s);
176 pwd->pw_passwd = strdup(s);
195 pwd->pw_class = strdup(s);
199 pwd->pw_gecos = strdup(
[all...]
/freebsd-9.3-release/contrib/amd/amd/
H A Dconf.c369 gopt.arch = strdup((char *)val);
389 gopt.auto_dir = strdup((char *)val);
442 gopt.cluster = strdup((char *)val);
450 gopt.debug_mtab_file = strdup((char*)val);
550 gopt.op_sys_full = strdup((char *)val);
575 gopt.hesiod_base = strdup((char *)val);
587 gopt.karch = strdup((char *)val);
595 gopt.pid_file = strdup((char *)val);
603 gopt.sub_domain = strdup((char *)val);
611 gopt.localhost_address = strdup((cha
[all...]
H A Damfs_error.c95 return strdup("(error-hook)");
H A Drestart.c67 mo.opt_rhost = strdup(me->mnt_fsname);
68 mo.opt_rfs = strdup(cp + 1);
75 mo.opt_rhost = strdup(me->mnt_fsname);
76 mo.opt_rfs = strdup("/");
/freebsd-9.3-release/contrib/amd/fsinfo/
H A Dwr_fstab.c105 char *hp = strdup(dp->d_host->h_hostname);
126 char *h = strdup(fp->f_ref->m_dk->d_host->h_hostname);
127 char *hp = strdup(h);
175 char *h = strdup(fp->f_ref->m_dk->d_host->h_hostname);
209 char *h = strdup(fp->f_ref->m_dk->d_host->h_hostname);
246 h = strdup(fp->f_ref->m_dk->d_host->h_hostname);
248 h = strdup(fp->f_from);
/freebsd-9.3-release/contrib/libstdc++/config/locale/generic/
H A Dc_locale.cc56 char* __old = strdup(setlocale(LC_ALL, NULL));
93 char* __old = strdup(setlocale(LC_ALL, NULL));
112 char* __old = strdup(setlocale(LC_ALL, NULL));
/freebsd-9.3-release/usr.sbin/cron/lib/
H A Denv.c66 if ((p[i] = strdup(envp[i])) == NULL) {
104 if ((envp[found] = strdup(envstr)) == NULL) {
127 if ((p[count-1] = strdup(envstr)) == NULL) {
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/common/
H A Dmemory.c74 if ((newstr = strdup(str)) == NULL)
/freebsd-9.3-release/contrib/ipfilter/lib/
H A Dvar.c78 s = strdup(v->v_value);
159 v->v_value = strdup(value);
175 v->v_name = strdup(name);
176 v->v_value = strdup(value);
/freebsd-9.3-release/contrib/telnet/libtelnet/
H A Dmisc.c90 UserNameRequested = name ? strdup(name) : 0;
/freebsd-9.3-release/contrib/telnet/telnet/
H A Dmain.c329 ipsec_policy_in = strdup(optarg);
331 ipsec_policy_out = strdup(optarg);
355 *argp++ = strdup("-l");
359 *argp++ = strdup("-s");
/freebsd-9.3-release/crypto/heimdal/appl/telnet/libtelnet/
H A Dmisc.c78 UserNameRequested = name ? strdup(name) : 0;
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dcopy_host_realm.c70 (*to)[i] = strdup(*p);
H A Dget_default_realm.c77 res = strdup (context->default_realms[0]);
H A Dset_default_realm.c52 (*list)[0] = strdup (s);
/freebsd-9.3-release/crypto/heimdal/lib/sl/
H A Dslc-lex.l55 yylval.string = strdup ((const char *)yytext);
155 return strdup(x);
H A Dtest_sl.c75 char *buf = strdup(lines[i].line);
/freebsd-9.3-release/lib/libdisk/
H A Dchunk.c125 c2->name = strdup(c2->name);
127 c2->sname = strdup(c2->sname);
152 ct->sname = strdup(sname);
153 ct->name = strdup(name);
172 cs->sname = strdup(sname);
173 cs->name = strdup("-");
187 cs->sname = strdup(c2->sname);
189 cs->name = strdup(c2->name);
237 c1->sname = strdup(sname);
238 c2->sname = strdup("
[all...]

Completed in 291 milliseconds

1234567891011>>