Lines Matching refs:entry

118  * inittab_getbyname(): returns an inittab entry with the specified criteria
122 * char *: the name of the inittab entry the consumer wants
134 * inittab_getbycode(): returns an inittab entry with the specified criteria
138 * uint16_t: the code of the inittab entry the consumer wants
154 * const char *: the name of the entry the caller is interested
169 dhcp_symbol_t entry;
220 * parse the entry out into fields.
251 * find out whether this entry of interest to our consumer,
269 * looks like a match. allocate an entry and fill it in
283 entry.ds_max = atoi(fields[ITAB_MAX]);
284 entry.ds_code = atoi(fields[ITAB_CODE]);
285 entry.ds_type = type;
286 entry.ds_gran = atoi(fields[ITAB_GRAN]);
287 entry.ds_category = itabcode_to_dsymcode(category_code);
288 entry.ds_classes.dc_cnt = 0;
289 entry.ds_classes.dc_names = NULL;
290 (void) strlcpy(entry.ds_name, fields[ITAB_NAME],
291 sizeof (entry.ds_name));
292 entry.ds_dhcpv6 = (categories & ITAB_CAT_V6) ? 1 : 0;
295 entries[n_entries++] = entry;
312 * parse_entry(): parses an entry out into its constituent fields
314 * input: char *: the entry
316 * pointers into the entry on upon return
321 parse_entry(char *entry, char **fields)
328 * each entry are not separated by a comma, but rather by
332 n_fields = bufsplit(entry, ITAB_FIELDS - 1, fields);
342 * then the entry is malformed.
387 * inittab_verify(): verifies that a given inittab entry matches an internal
390 * input: dhcp_symbol_t *: the inittab entry to verify
392 * inittab entry upon return
539 * input: const dhcp_symbol_t *: the entry describing the value option
739 * single zero byte to end the entry, if there are more
1047 * input: dhcp_symbol_t *: the entry describing the payload option
1137 * offending list entry entirely. Note that we ignore the 255
1385 * input: dhcp_symbol_t *: the entry describing the value option
1406 * input: dhcp_symbol_t *: the entry describing the payload option
1656 * inittab_type_to_size(): given an inittab entry, returns size of one entry of
1659 * input: dhcp_symbol_t *: an entry of the given type
1660 * output: uint8_t: the size in bytes of an entry of that type