Lines Matching +refs:val +refs:entries
102 * inittab_load(): returns all inittab entries with the specified criteria
106 * size_t *: set to the number of entries returned
107 * output: dhcp_symbol_t *: an array of dynamically allocated entries
150 * inittab_lookup(): returns inittab entries with the specified criteria
158 * size_t *: set to the number of entries returned
168 dhcp_symbol_t *new_entries, *entries = NULL;
229 * validate the values in the entries; skip if invalid.
252 * and if so, throw it onto the set of entries we'll return.
271 new_entries = realloc(entries, (n_entries + 1) *
294 entries = new_entries;
295 entries[n_entries++] = entry;
308 return (entries);
476 int dig, val;
486 dig = val = 0;
493 val = (val << 4) + chr - '0';
495 val = (val << 4) + chr -
506 *outbuf++ = val;
508 dig = val = 0;
601 * figure out the number of entries by counting the spaces
649 int dig, val, inchr;
660 dig = val = 0;
683 val = val * 10 + inchr - '0';
685 *optstart++ = val;
686 dig = val = 0;
697 *optstart++ = val;
698 dig = val = 0;
732 *optstart++ = dig > 0 ? val : '\\';
740 * entries that will be decoded.
900 inittab_msg("inittab_encode: number of entries "
1312 inittab_msg("inittab_decode: number of entries "
1496 inittab_msg("decode_number: number of entries "
1577 inittab_msg("encode_number: number of entries "