Searched refs:next_field (Results 1 – 10 of 10) sorted by relevance
/titanic_41/usr/src/cmd/cron/ |
H A D | crontab.c | 111 static int next_field(int, int); 492 if (next_field(0, 59)) continue; 493 if (next_field(0, 23)) continue; 494 if (next_field(1, 31)) continue; 495 if (next_field(1, 12)) continue; 496 if (next_field(0, 06)) continue; 527 next_field(lower, upper) in next_field() function
|
H A D | cron.c | 317 static char *next_field(int, int); 1213 if (!(((e->of.ct.minute = next_field(0, 59)) != NULL) && in readcron() 1214 ((e->of.ct.hour = next_field(0, 23)) != NULL) && in readcron() 1215 ((e->of.ct.daymon = next_field(1, 31)) != NULL) && in readcron() 1216 ((e->of.ct.month = next_field(1, 12)) != NULL) && in readcron() 1217 ((e->of.ct.dayweek = next_field(0, 6)) != NULL))) { in readcron() 1447 next_field(int lower, int upper) in next_field() function
|
/titanic_41/usr/src/cmd/syseventadm/ |
H A D | syseventadm.c | 722 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 D | syseventadm.h | 114 static char *next_field(char **cpp);
|
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/tftp/ |
H A D | tftpsubs.c | 335 next_field(const char *s, const char *end) in next_field() function 367 if ((optval = next_field(optname, endopts)) == NULL) { in print_options() 376 if ((opts = next_field(optval, endopts)) == NULL) { in print_options()
|
H A D | tftp.c | 596 if ((optval = next_field(optname, oackend)) == NULL) in process_oack() 598 if ((cp = next_field(optval, oackend)) == NULL) in process_oack() 666 if ((mode = next_field(file, tpend)) == NULL) { in tpacket() 671 if ((cp = next_field(mode, tpend)) == NULL) { in tpacket()
|
/titanic_41/usr/src/cmd/cmd-inet/common/ |
H A D | tftpcommon.h | 75 extern char *next_field(const char *, const char *);
|
/titanic_41/usr/src/cmd/syseventd/modules/sysevent_conf_mod/ |
H A D | sysevent_conf_mod.c | 195 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 D | sysevent_conf_mod.h | 127 static char *next_field(char **cpp);
|
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/ |
H A D | in.tftpd.c | 686 if ((optval = next_field(optname, endopts)) == NULL) { in process_options() 690 if ((opts = next_field(optval, endopts)) == NULL) { in process_options() 784 mode = next_field(filename, &buf.data[size]); in tftp() 785 cp = (mode != NULL) ? next_field(mode, &buf.data[size]) : NULL; in tftp()
|