/freebsd/sbin/dhclient/ |
H A D | parse.c | 75 token = next_token(&val, cfile); in skip_to_semi() 83 token = next_token(&val, cfile); in skip_to_semi() 92 token = next_token(&val, cfile); in skip_to_semi() 95 token = next_token(&val, cfile); in skip_to_semi() 105 token = next_token(&val, cfile); in parse_semi() 124 token = next_token(&val, cfile); in parse_string() 165 token = next_token(&val, cfile); in parse_hardware_param() 208 token = next_token(&val, cfile); in parse_hardware_param() 224 token = next_token(&val, cfile); in parse_lease_time() 270 token = next_token(&val, cfile); in parse_numeric_aggregate() [all …]
|
H A D | clparse.c | 115 token = next_token(&val, cfile); /* Clear the peek buffer */ in read_client_conf() 163 token = next_token(&val, cfile); in read_client_leases() 205 switch (next_token(&val, cfile)) { in parse_client_statement() 312 token = next_token(&val, cfile); in parse_X() 326 token = next_token(&val, cfile); in parse_X() 330 token = next_token(&val, cfile); in parse_X() 359 token = next_token(&val, cfile); in parse_option_list() 380 token = next_token(&val, cfile); in parse_option_list() 401 token = next_token(&val, cfile); in parse_interface_declaration() 416 token = next_token(&val, cfile); in parse_interface_declaration() [all …]
|
H A D | dhcpd.h | 281 int next_token(char **, FILE *);
|
H A D | conflex.c | 167 next_token(char **rval, FILE *cfile) in next_token() function
|
/freebsd/crypto/openssh/ |
H A D | sftp-realpath.c | 65 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in sftp_realpath() local 116 if (s - left >= (ptrdiff_t)sizeof(next_token)) { in sftp_realpath() 120 memcpy(next_token, left, s - left); in sftp_realpath() 121 next_token[s - left] = '\0'; in sftp_realpath() 133 if (next_token[0] == '\0') in sftp_realpath() 135 else if (strcmp(next_token, ".") == 0) in sftp_realpath() 137 else if (strcmp(next_token, "..") == 0) { in sftp_realpath() 156 resolved_len = strlcat(resolved, next_token, PATH_MAX); in sftp_realpath()
|
/freebsd/lib/libc/stdlib/ |
H A D | realpath.c | 60 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in realpath1() local 95 memcpy(next_token, left, next_token_len); in realpath1() 96 next_token[next_token_len] = '\0'; in realpath1() 114 if (next_token[0] == '\0') { in realpath1() 117 } else if (strcmp(next_token, ".") == 0) { in realpath1() 119 } else if (strcmp(next_token, "..") == 0) { in realpath1() 136 resolved_len = strlcat(resolved, next_token, PATH_MAX); in realpath1()
|
/freebsd/contrib/ntp/libntp/ |
H A D | ntp_realpath.c | 106 char left[NTP_PATH_MAX], next_token[NTP_PATH_MAX], link_tgt[NTP_PATH_MAX]; in realpath1() local 141 memcpy(next_token, left, next_token_len); in realpath1() 142 next_token[next_token_len] = '\0'; in realpath1() 160 if ('\0' == next_token[0]) { in realpath1() 163 } else if (strcmp(next_token, ".") == 0) { in realpath1() 165 } else if (strcmp(next_token, "..") == 0) { in realpath1() 182 resolved_len = strlcat(resolved, next_token, NTP_PATH_MAX); in realpath1()
|
/freebsd/usr.bin/dtc/ |
H A D | fdt.cc | 286 input.next_token(); in parse_cells() 289 input.next_token(); in parse_cells() 300 input.next_token(); in parse_cells() 317 input.next_token(); in parse_cells() 376 input.next_token(); in parse_cells() 392 input.next_token(); in parse_bytes() 407 input.next_token(); in parse_bytes() 418 input.next_token(); in parse_reference() 501 input.next_token(); in property() 544 input.next_token(); in property() [all …]
|
H A D | input_buffer.cc | 205 next_token(); in handle_include() 213 next_token(); in handle_include() 720 next_token(); in parse_binary_expression() 827 next_token(); in parse_binary_expression() 844 next_token(); in parse_binary_expression() 871 next_token(); in parse_expression() 995 text_input_buffer::next_token() in next_token() function in dtc::text_input_buffer
|
H A D | input_buffer.hh | 482 text_input_buffer &next_token();
|
/freebsd/lib/libc/posix1e/ |
H A D | mac.c | 154 next_token(char **string) in next_token() function 202 statement = next_token(&parse); in mac_init_internal() 209 name = next_token(&parse); in mac_init_internal() 210 labels = next_token(&parse); in mac_init_internal() 212 next_token(&parse) != NULL) { in mac_init_internal() 239 labels = next_token(&parse); in mac_init_internal() 240 if (labels == NULL || next_token(&parse) != NULL) { in mac_init_internal()
|
/freebsd/contrib/ofed/opensm/opensm/ |
H A D | osm_console.c | 83 static char *next_token(char **p_last) in next_token() function 301 p_cmd = next_token(p_last); in help_parse() 324 p_cmd = next_token(p_last); in loglevel_parse() 378 p_cmd = next_token(p_last); in priority_parse() 545 p_cmd = next_token(p_last); in status_parse() 565 p_cmd = next_token(p_last); in resweep_parse() 587 p_cmd = next_token(p_last); in sweep_parse() 604 p_cmd = next_token(p_last); in logflush_parse() 623 char *p_cmd = next_token(p_last); in querylid_parse() 937 p_cmd = next_token(p_last); in portstatus_parse() [all …]
|