Lines Matching defs:table
537 nwam_get_prop_table_entry(struct nwam_prop_table table, const char *propname)
539 struct nwam_prop_table_entry *cur = table.entries;
540 struct nwam_prop_table_entry *end = cur + table.num_entries;
552 nwam_get_prop_description(struct nwam_prop_table table, const char *propname,
559 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL) {
569 nwam_get_prop_type(struct nwam_prop_table table, const char *propname,
576 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL)
585 nwam_prop_multivalued(struct nwam_prop_table table, const char *propname,
592 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL)
604 nwam_prop_read_only(struct nwam_prop_table table, const char *propname,
611 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL)
620 * Structure used to pass in prop table and errprop string pointer to internal
624 struct nwam_prop_table table;
639 struct nwam_prop_table table = via->table;
654 if ((pte = nwam_get_prop_table_entry(table, propname)) == NULL) {
656 * Property not found in the property table. There's no way
696 nwam_validate_prop(struct nwam_prop_table table, struct nwam_handle *hp,
703 via.table = table;
711 nwam_validate(struct nwam_prop_table table, struct nwam_handle *hp,
719 via.table = table;
738 nwam_get_default_proplist(struct nwam_prop_table table,
741 struct nwam_prop_table_entry *cur = table.entries;
742 struct nwam_prop_table_entry *end = cur + table.num_entries;
749 list = calloc(table.num_entries, sizeof (char *));