Lines Matching defs:table
523 nwam_get_prop_table_entry(struct nwam_prop_table table, const char *propname)
525 struct nwam_prop_table_entry *cur = table.entries;
526 struct nwam_prop_table_entry *end = cur + table.num_entries;
538 nwam_get_prop_description(struct nwam_prop_table table, const char *propname,
545 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL) {
555 nwam_get_prop_type(struct nwam_prop_table table, const char *propname,
562 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL)
571 nwam_prop_multivalued(struct nwam_prop_table table, const char *propname,
578 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL)
590 nwam_prop_read_only(struct nwam_prop_table table, const char *propname,
597 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL)
606 * Structure used to pass in prop table and errprop string pointer to internal
610 struct nwam_prop_table table;
625 struct nwam_prop_table table = via->table;
640 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL)
676 nwam_validate_prop(struct nwam_prop_table table, struct nwam_handle *hp,
683 via.table = table;
691 nwam_validate(struct nwam_prop_table table, struct nwam_handle *hp,
699 via.table = table;
718 nwam_get_default_proplist(struct nwam_prop_table table,
721 struct nwam_prop_table_entry *cur = table.entries;
722 struct nwam_prop_table_entry *end = cur + table.num_entries;
729 list = calloc(table.num_entries, sizeof (char *));