Symbol: newstr
crypto/krb5/src/lib/kadm5/srv/pwqual_hesiod.c
41
reverse(char *str, char *newstr, size_t newstr_size)
crypto/krb5/src/lib/kadm5/srv/pwqual_hesiod.c
50
q = newstr;
crypto/krb5/src/lib/kadm5/srv/pwqual_hesiod.c
55
return newstr;
crypto/krb5/src/lib/krb5/os/localauth_rule.c
145
char *newstr, *rule = NULL, *repl = NULL, *current = NULL;
crypto/krb5/src/lib/krb5/os/localauth_rule.c
184
ret = do_replacement(rule, repl, doglobal, current, &newstr);
crypto/krb5/src/lib/krb5/os/localauth_rule.c
188
current = newstr;
crypto/krb5/src/util/profile/prof_get.c
78
char *newstr, **newlist;
crypto/krb5/src/util/profile/prof_get.c
89
newstr = strdup(str);
crypto/krb5/src/util/profile/prof_get.c
90
if (newstr == 0)
crypto/krb5/src/util/profile/prof_get.c
93
list->list[list->num++] = newstr;
crypto/openssh/openbsd-compat/bsd-asprintf.c
45
char *string, *newstr;
crypto/openssh/openbsd-compat/bsd-asprintf.c
60
if ((newstr = realloc(string, len)) == NULL) {
crypto/openssh/openbsd-compat/bsd-asprintf.c
66
ret = vsnprintf(newstr, len, fmt, ap2);
crypto/openssh/openbsd-compat/bsd-asprintf.c
68
*str = newstr;
crypto/openssh/openbsd-compat/bsd-asprintf.c
70
free(newstr);
sys/dev/hwpmc/hwpmc_mod.c
198
static int pmc_debugflags_parse(char *newstr, char *fence);
sys/dev/hwpmc/hwpmc_mod.c
455
pmc_debugflags_parse(char *newstr, char *fence)
sys/dev/hwpmc/hwpmc_mod.c
466
for (p = newstr; p < fence && (c = *p); p++) {
sys/dev/hwpmc/hwpmc_mod.c
586
char *fence, *newstr;
sys/dev/hwpmc/hwpmc_mod.c
591
newstr = malloc(n, M_PMC, M_WAITOK | M_ZERO);
sys/dev/hwpmc/hwpmc_mod.c
592
strlcpy(newstr, pmc_debugstr, n);
sys/dev/hwpmc/hwpmc_mod.c
594
error = sysctl_handle_string(oidp, newstr, n, req);
sys/dev/hwpmc/hwpmc_mod.c
598
fence = newstr + (n < req->newlen ? n : req->newlen + 1);
sys/dev/hwpmc/hwpmc_mod.c
599
error = pmc_debugflags_parse(newstr, fence);
sys/dev/hwpmc/hwpmc_mod.c
601
strlcpy(pmc_debugstr, newstr, sizeof(pmc_debugstr));
sys/dev/hwpmc/hwpmc_mod.c
603
free(newstr, M_PMC);
usr.bin/env/envopts.c
167
char *dest, **newargv, *newstr, **nextarg, **oldarg;
usr.bin/env/envopts.c
179
newstr = malloc(strlen(str) + 1);
usr.bin/env/envopts.c
194
for (src = str, dest = newstr; *src != '\0'; src++) {
usr.bin/env/envopts.c
392
char *newstr, *vname;
usr.bin/env/envopts.c
458
newstr = malloc(newlen);
usr.bin/env/envopts.c
459
strcpy(newstr, *thisarg_p);
usr.bin/env/envopts.c
460
*thisarg_p = newstr;
usr.bin/env/envopts.c
462
newstr = malloc(newlen);
usr.bin/env/envopts.c
463
*newstr = '\0';
usr.bin/env/envopts.c
465
*dest_p = strchr(newstr, '\0');
usr.bin/patch/backupfile.c
160
char *newstr;
usr.bin/patch/backupfile.c
162
if (asprintf(&newstr, "%s%s", str1, str2) == -1)
usr.bin/patch/backupfile.c
164
return newstr;
usr.bin/sdiff/sdiff.c
931
char *newstr;
usr.bin/sdiff/sdiff.c
965
newstr = realloc(*s, newsiz);
usr.bin/sdiff/sdiff.c
966
if (newstr == NULL)
usr.bin/sdiff/sdiff.c
968
*s = newstr;
usr.sbin/inetd/inetd.c
1634
policy = newstr(p);
usr.sbin/inetd/inetd.c
1707
sep->se_service = newstr(c);
usr.sbin/inetd/inetd.c
1709
sep->se_service = newstr(arg);
usr.sbin/inetd/inetd.c
1728
sep->se_proto = newstr(strsep(&arg, "/"));
usr.sbin/inetd/inetd.c
1739
sep->se_proto = newstr(arg);
usr.sbin/inetd/inetd.c
1909
sep->se_user = newstr(sskip(&cp));
usr.sbin/inetd/inetd.c
1913
sep->se_class = newstr(s + 1);
usr.sbin/inetd/inetd.c
1915
sep->se_class = newstr(RESOURCE_RC);
usr.sbin/inetd/inetd.c
1919
sep->se_group = newstr(s + 1);
usr.sbin/inetd/inetd.c
1922
sep->se_server = newstr(sskip(&cp));
usr.sbin/inetd/inetd.c
1958
sep->se_argv[argc++] = newstr(arg);
usr.sbin/inetd/inetd.c
1970
sep->se_policy = policy ? newstr(policy) : NULL;
usr.sbin/inetd/inetd.c
235
static char *newstr(const char *);
usr.sbin/ppp/command.c
438
subst(char *tgt, const char *oldstr, const char *newstr)
usr.sbin/ppp/command.c
449
lnewstr = strlen(newstr);
usr.sbin/ppp/command.c
463
bcopy(newstr, word, lnewstr);
usr.sbin/pw/pw.h
110
char *newstr(char const * p);
usr.sbin/pw/pw_conf.c
282
? NULL : newstr(q);
usr.sbin/pw/pw_conf.c
286
? NULL : newstr(q);
usr.sbin/pw/pw_conf.c
290
? NULL : newstr(q);
usr.sbin/pw/pw_conf.c
294
? NULL : newstr(q);
usr.sbin/pw/pw_conf.c
298
? "/home" : newstr(q);
usr.sbin/pw/pw_conf.c
308
? "/bin" : newstr(q);
usr.sbin/pw/pw_conf.c
312
system_shells[i] = newstr(q);
usr.sbin/pw/pw_conf.c
319
? (char *) bourne_shell : newstr(q);
usr.sbin/pw/pw_conf.c
324
? NULL : newstr(q);
usr.sbin/pw/pw_conf.c
330
sl_add(config.groups, newstr(q));
usr.sbin/pw/pw_conf.c
335
? NULL : newstr(q);
usr.sbin/pw/pw_user.c
1105
sl_add(*groups, newstr(grp->gr_name));
usr.sbin/pw/pw_user.c
1119
cnf->default_group = newstr(grp->gr_name);