Home
last modified time | relevance | path

Searched refs:next_field (Results 1 – 12 of 12) sorted by relevance

/illumos-gate/usr/src/cmd/syseventadm/
H A Dsyseventadm.c722 token = next_field(&lp); in matches_serecord()
827 if ((class = next_field(&lp)) != NULL) { in parse_line()
828 subclass = next_field(&lp); in parse_line()
831 vendor = next_field(&lp); in parse_line()
834 publisher = next_field(&lp); in parse_line()
837 user = next_field(&lp); in parse_line()
840 reserved1 = next_field(&lp); in parse_line()
843 reserved2 = next_field(&lp); in parse_line()
846 path = next_field(&lp); in parse_line()
908 next_field(char **cpp) in next_field() function
H A Dsyseventadm.h114 static char *next_field(char **cpp);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/tftp/
H A Dtftpsubs.c333 next_field(const char *s, const char *end) in next_field() function
365 if ((optval = next_field(optname, endopts)) == NULL) { in print_options()
374 if ((opts = next_field(optval, endopts)) == NULL) { in print_options()
H A Dtftp.c597 if ((optval = next_field(optname, oackend)) == NULL) in process_oack()
599 if ((cp = next_field(optval, oackend)) == NULL) in process_oack()
668 if ((mode = next_field(file, tpend)) == NULL) { in tpacket()
673 if ((cp = next_field(mode, tpend)) == NULL) { in tpacket()
/illumos-gate/usr/src/cmd/cron/
H A Dcrontab.c531 if ((cferr = next_field(0, 59, line, &cursor, NULL)) != CFOK || in copycron()
532 (cferr = next_field(0, 23, line, &cursor, NULL)) != CFOK || in copycron()
533 (cferr = next_field(1, 31, line, &cursor, NULL)) != CFOK || in copycron()
534 (cferr = next_field(1, 12, line, &cursor, NULL)) != CFOK || in copycron()
535 (cferr = next_field(0, 6, line, &cursor, NULL)) != CFOK) { in copycron()
H A Dparse.c73 next_field(uint_t lower, uint_t upper, char *line, int *cursorp, char **ret) in next_field() function
251 switch (next_field(lower, upper, argv[3], &cursor, &ret)) { in main()
H A Dcron.h125 extern cferror_t next_field(uint_t, uint_t, char *, int *, char **);
H A Dcron.c1231 if (next_field(0, 59, line, &cursor, in readcron()
1233 next_field(0, 23, line, &cursor, &e->of.ct.hour) != CFOK || in readcron()
1234 next_field(1, 31, line, &cursor, in readcron()
1236 next_field(1, 12, line, &cursor, &e->of.ct.month) != CFOK || in readcron()
1237 next_field(0, 6, line, &cursor, in readcron()
/illumos-gate/usr/src/cmd/cmd-inet/common/
H A Dtftpcommon.h73 extern char *next_field(const char *, const char *);
/illumos-gate/usr/src/cmd/syseventd/modules/sysevent_conf_mod/
H A Dsysevent_conf_mod.c195 next_field(char **cpp) in next_field() function
535 if ((class = next_field(&lp)) == NULL) in parse_conf_file()
537 if ((subclass = next_field(&lp)) == NULL) in parse_conf_file()
539 if ((vendor = next_field(&lp)) == NULL) in parse_conf_file()
541 if ((publisher = next_field(&lp)) == NULL) in parse_conf_file()
543 if ((user = next_field(&lp)) == NULL) in parse_conf_file()
545 if ((reserved1 = next_field(&lp)) == NULL) in parse_conf_file()
547 if ((reserved2 = next_field(&lp)) == NULL) in parse_conf_file()
549 if ((path = next_field(&lp)) == NULL) in parse_conf_file()
H A Dsysevent_conf_mod.h127 static char *next_field(char **cpp);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.tftpd.c687 if ((optval = next_field(optname, endopts)) == NULL) { in process_options()
691 if ((opts = next_field(optval, endopts)) == NULL) { in process_options()
785 mode = next_field(filename, &buf.data[size]); in tftp()
786 cp = (mode != NULL) ? next_field(mode, &buf.data[size]) : NULL; in tftp()