Symbol: cgetstr
include/stdlib.h
289
int cgetstr(char *, const char *, char **);
lib/libc/gen/disklabel.c
122
cgetstr(buf, "b0", &dp->d_boot0);
lib/libc/gen/disklabel.c
123
cgetstr(buf, "b1", &dp->d_boot1);
lib/libc/gen/disklabel.c
125
if (cgetstr(buf, "ty", &cq) >= 0) {
lib/libc/gen/disklabel.c
145
if (cgetstr(buf, "dt", &cq) >= 0) {
lib/libc/gen/disklabel.c
188
if (cgetstr(buf, ptype, &cq) >= 0) {
lib/libc/gen/getcap.c
77
__weak_alias(cgetstr,_cgetstr)
lib/libtelnet/getent.c
71
return((cgetstr(area, id, &answer) > 0) ? answer : 0);
lib/libutil/login_cap.c
166
switch (status = cgetstr(lc->lc_cap, cap, &res)) {
lib/libutil/login_cap.c
202
switch (status = cgetstr(lc->lc_cap, cap, &res)) {
lib/libutil/login_cap.c
288
switch (status = cgetstr(lc->lc_cap, cap, &res)) {
lib/libutil/login_cap.c
343
switch (status = cgetstr(lc->lc_cap, cap, &res)) {
libexec/getty/subr.c
81
(void)cgetstr(buf, sp->field, &sp->value);
tools/compat/compat_defs.h
1116
int cgetstr(char *, const char *, char **);
usr.bin/getent/getent.c
581
if (!recurse || cgetstr(b, "tc", &tc) <= 0)
usr.bin/tip/remote.c
121
(void)cgetstr(bp, *p, *q);
usr.sbin/lpr/common_source/common.c
450
LP = cgetstr(bp, DEFLP, &cp) == -1 ? _PATH_DEFDEVLP : cp;
usr.sbin/lpr/common_source/common.c
451
RP = cgetstr(bp, "rp", &cp) == -1 ? DEFLP : cp;
usr.sbin/lpr/common_source/common.c
452
SD = cgetstr(bp, "sd", &cp) == -1 ? _PATH_DEFSPOOL : cp;
usr.sbin/lpr/common_source/common.c
453
LO = cgetstr(bp, "lo", &cp) == -1 ? DEFLOCK : cp;
usr.sbin/lpr/common_source/common.c
454
ST = cgetstr(bp, "st", &cp) == -1 ? DEFSTAT : cp;
usr.sbin/lpr/common_source/common.c
455
RM = cgetstr(bp, "rm", &cp) == -1 ? NULL : cp;
usr.sbin/lpr/common_source/common.c
458
LF = cgetstr(bp, "lf", &cp) == -1 ? _PATH_CONSOLE : cp;
usr.sbin/lpr/common_source/common.c
473
spooldir = cgetstr(cap, "sd", &sd) == -1 ? _PATH_DEFSPOOL : sd;
usr.sbin/lpr/lpc/cmds.c
519
SD = cgetstr(bp, "sd", &cp) == -1 ? _PATH_DEFSPOOL : cp;
usr.sbin/lpr/lpc/cmds.c
520
LO = cgetstr(bp, "lo", &cp) == -1 ? DEFLOCK : cp;
usr.sbin/lpr/lpc/cmds.c
521
ST = cgetstr(bp, "st", &cp) == -1 ? DEFSTAT : cp;
usr.sbin/lpr/lpd/printjob.c
1268
FF = cgetstr(bp, "ff", &s) == -1 ? DEFFF : s;
usr.sbin/lpr/lpd/printjob.c
1285
AF = cgetstr(bp, "af", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1286
OF = cgetstr(bp, "of", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1287
IF = cgetstr(bp, "if", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1288
RF = cgetstr(bp, "rf", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1289
TF = cgetstr(bp, "tf", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1290
NF = cgetstr(bp, "nf", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1291
DF = cgetstr(bp, "df", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1292
GF = cgetstr(bp, "gf", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1293
VF = cgetstr(bp, "vf", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1294
CF = cgetstr(bp, "cf", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1295
PF = cgetstr(bp, "pf", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1296
TR = cgetstr(bp, "tr", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpd/printjob.c
1314
MS = cgetstr(bp, "ms", &s) == -1 ? NULL : s;
usr.sbin/lpr/lpr/lpr.c
679
RG = cgetstr(bp, "rg", &cp) == -1 ? NULL : cp;
usr.sbin/lpr/pac/pac.c
426
if (cgetstr(bp, "af", &acctfile) == -1) {