Lines Matching defs:entry

116  * inittab_getbyname(): returns an inittab entry with the specified criteria
120 * char *: the name of the inittab entry the consumer wants
132 * inittab_getbycode(): returns an inittab entry with the specified criteria
136 * uint16_t: the code of the inittab entry the consumer wants
152 * const char *: the name of the entry the caller is interested
167 dhcp_symbol_t entry;
218 * parse the entry out into fields.
249 * find out whether this entry of interest to our consumer,
267 * looks like a match. allocate an entry and fill it in
281 entry.ds_max = atoi(fields[ITAB_MAX]);
282 entry.ds_code = atoi(fields[ITAB_CODE]);
283 entry.ds_type = type;
284 entry.ds_gran = atoi(fields[ITAB_GRAN]);
285 entry.ds_category = itabcode_to_dsymcode(category_code);
286 entry.ds_classes.dc_cnt = 0;
287 entry.ds_classes.dc_names = NULL;
288 (void) strlcpy(entry.ds_name, fields[ITAB_NAME],
289 sizeof (entry.ds_name));
290 entry.ds_dhcpv6 = (categories & ITAB_CAT_V6) ? 1 : 0;
293 entries[n_entries++] = entry;
310 * parse_entry(): parses an entry out into its constituent fields
312 * input: char *: the entry
314 * pointers into the entry on upon return
319 parse_entry(char *entry, char **fields)
326 * each entry are not separated by a comma, but rather by
330 n_fields = bufsplit(entry, ITAB_FIELDS - 1, fields);
340 * then the entry is malformed.
385 * inittab_verify(): verifies that a given inittab entry matches an internal
388 * input: dhcp_symbol_t *: the inittab entry to verify
390 * inittab entry upon return
538 * input: const dhcp_symbol_t *: the entry describing the value option
738 * single zero byte to end the entry, if there are more
1001 * input: dhcp_symbol_t *: the entry describing the payload option
1083 * offending list entry entirely. Note that we ignore the 255
1331 * input: dhcp_symbol_t *: the entry describing the value option
1352 * input: dhcp_symbol_t *: the entry describing the payload option
1602 * inittab_type_to_size(): given an inittab entry, returns size of one entry of
1605 * input: dhcp_symbol_t *: an entry of the given type
1606 * output: uint8_t: the size in bytes of an entry of that type