Lines Matching +defs:val +defs:entries
100 * inittab_load(): returns all inittab entries with the specified criteria
104 * size_t *: set to the number of entries returned
105 * output: dhcp_symbol_t *: an array of dynamically allocated entries
148 * inittab_lookup(): returns inittab entries with the specified criteria
156 * size_t *: set to the number of entries returned
166 dhcp_symbol_t *new_entries, *entries = NULL;
227 * validate the values in the entries; skip if invalid.
250 * and if so, throw it onto the set of entries we'll return.
269 new_entries = realloc(entries, (n_entries + 1) *
292 entries = new_entries;
293 entries[n_entries++] = entry;
306 return (entries);
474 int dig, val;
484 dig = val = 0;
491 val = (val << 4) + chr - '0';
493 val = (val << 4) + chr -
504 *outbuf++ = val;
506 dig = val = 0;
600 * figure out the number of entries by counting the spaces
648 int dig, val, inchr;
659 dig = val = 0;
682 val = val * 10 + inchr - '0';
684 *optstart++ = val;
685 dig = val = 0;
696 *optstart++ = val;
697 dig = val = 0;
731 *optstart++ = dig > 0 ? val : '\\';
739 * entries that will be decoded.
899 inittab_msg("inittab_encode: number of entries "
1258 inittab_msg("inittab_decode: number of entries "
1442 inittab_msg("decode_number: number of entries "
1523 inittab_msg("encode_number: number of entries "