Lines Matching defs:entry
356 * entry in the internal category table.
359 * dsym_cat_t *: the return location for the pointer to the table entry
365 dsym_get_cat_by_name(const char *cat, dsym_cat_t **entry, boolean_t cs)
414 *entry = entryp;
433 dsym_cat_t *entry;
436 ret = dsym_get_cat_by_name(field, &entry, B_TRUE);
443 if (entry->dc_dhcptab) {
444 *cat = entry->dc_id;
498 * Find the category entry from the internal table.
501 dsym_cat_t *entry;
503 entry = &cats[i];
504 if (code < entry->dc_min || code > entry->dc_max) {
539 * entry in the internal type table.
542 * dsym_type_t *: the return location for the pointer to the table entry
548 dsym_get_type_by_name(const char *type, dsym_type_t **entry, boolean_t cs)
563 *entry = &types[i];
583 dsym_type_t *entry;
586 ret = dsym_get_type_by_name(field, &entry, B_TRUE);
593 if (entry->dt_dhcptab) {
594 *type = entry->dt_id;
846 dsym_cat_t *entry;
849 ret = dsym_get_cat_by_name(cat, &entry, cs);
851 *id = entry->dc_id;
873 dsym_cat_t *entry;
876 ret = dsym_get_cat_by_name(cat, &entry, cs);
878 *min = entry->dc_min;
879 *max = entry->dc_max;
898 dsym_type_t *entry;
901 ret = dsym_get_type_by_name(type, &entry, cs);
903 *id = entry->dt_id;