Symbol: next_field
usr/src/cmd/cmd-inet/common/tftpcommon.h
73
extern char *next_field(const char *, const char *);
usr/src/cmd/cmd-inet/usr.bin/tftp/tftp.c
597
if ((optval = next_field(optname, oackend)) == NULL)
usr/src/cmd/cmd-inet/usr.bin/tftp/tftp.c
599
if ((cp = next_field(optval, oackend)) == NULL)
usr/src/cmd/cmd-inet/usr.bin/tftp/tftp.c
668
if ((mode = next_field(file, tpend)) == NULL) {
usr/src/cmd/cmd-inet/usr.bin/tftp/tftp.c
673
if ((cp = next_field(mode, tpend)) == NULL) {
usr/src/cmd/cmd-inet/usr.bin/tftp/tftpsubs.c
365
if ((optval = next_field(optname, endopts)) == NULL) {
usr/src/cmd/cmd-inet/usr.bin/tftp/tftpsubs.c
374
if ((opts = next_field(optval, endopts)) == NULL) {
usr/src/cmd/cmd-inet/usr.sbin/in.tftpd.c
687
if ((optval = next_field(optname, endopts)) == NULL) {
usr/src/cmd/cmd-inet/usr.sbin/in.tftpd.c
691
if ((opts = next_field(optval, endopts)) == NULL) {
usr/src/cmd/cmd-inet/usr.sbin/in.tftpd.c
785
mode = next_field(filename, &buf.data[size]);
usr/src/cmd/cmd-inet/usr.sbin/in.tftpd.c
786
cp = (mode != NULL) ? next_field(mode, &buf.data[size]) : NULL;
usr/src/cmd/cron/cron.c
1231
if (next_field(0, 59, line, &cursor,
usr/src/cmd/cron/cron.c
1233
next_field(0, 23, line, &cursor, &e->of.ct.hour) != CFOK ||
usr/src/cmd/cron/cron.c
1234
next_field(1, 31, line, &cursor,
usr/src/cmd/cron/cron.c
1236
next_field(1, 12, line, &cursor, &e->of.ct.month) != CFOK ||
usr/src/cmd/cron/cron.c
1237
next_field(0, 6, line, &cursor,
usr/src/cmd/cron/cron.h
125
extern cferror_t next_field(uint_t, uint_t, char *, int *, char **);
usr/src/cmd/cron/crontab.c
531
if ((cferr = next_field(0, 59, line, &cursor, NULL)) != CFOK ||
usr/src/cmd/cron/crontab.c
532
(cferr = next_field(0, 23, line, &cursor, NULL)) != CFOK ||
usr/src/cmd/cron/crontab.c
533
(cferr = next_field(1, 31, line, &cursor, NULL)) != CFOK ||
usr/src/cmd/cron/crontab.c
534
(cferr = next_field(1, 12, line, &cursor, NULL)) != CFOK ||
usr/src/cmd/cron/crontab.c
535
(cferr = next_field(0, 6, line, &cursor, NULL)) != CFOK) {
usr/src/cmd/cron/parse.c
251
switch (next_field(lower, upper, argv[3], &cursor, &ret)) {
usr/src/cmd/syseventadm/syseventadm.c
722
token = next_field(&lp);
usr/src/cmd/syseventadm/syseventadm.c
827
if ((class = next_field(&lp)) != NULL) {
usr/src/cmd/syseventadm/syseventadm.c
828
subclass = next_field(&lp);
usr/src/cmd/syseventadm/syseventadm.c
831
vendor = next_field(&lp);
usr/src/cmd/syseventadm/syseventadm.c
834
publisher = next_field(&lp);
usr/src/cmd/syseventadm/syseventadm.c
837
user = next_field(&lp);
usr/src/cmd/syseventadm/syseventadm.c
840
reserved1 = next_field(&lp);
usr/src/cmd/syseventadm/syseventadm.c
843
reserved2 = next_field(&lp);
usr/src/cmd/syseventadm/syseventadm.c
846
path = next_field(&lp);
usr/src/cmd/syseventadm/syseventadm.h
114
static char *next_field(char **cpp);
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.c
535
if ((class = next_field(&lp)) == NULL)
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.c
537
if ((subclass = next_field(&lp)) == NULL)
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.c
539
if ((vendor = next_field(&lp)) == NULL)
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.c
541
if ((publisher = next_field(&lp)) == NULL)
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.c
543
if ((user = next_field(&lp)) == NULL)
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.c
545
if ((reserved1 = next_field(&lp)) == NULL)
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.c
547
if ((reserved2 = next_field(&lp)) == NULL)
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.c
549
if ((path = next_field(&lp)) == NULL)
usr/src/cmd/syseventd/modules/sysevent_conf_mod/sysevent_conf_mod.h
127
static char *next_field(char **cpp);