Lines Matching defs:aref
6746 ipqos_conf_act_ref_t *aref;
6750 /* allocate zero'd aref */
6752 aref = malloc(sizeof (ipqos_conf_act_ref_t));
6753 if (aref == NULL) {
6757 (void) bzero(aref, sizeof (ipqos_conf_act_ref_t));
6762 (void) strlcpy(aref->field, field, IPQOS_CONF_PNAME_LEN);
6765 (void) strlcpy(aref->name, action_name, IPQOS_CONF_NAME_LEN);
6769 aref->next = *arefs;
6770 *arefs = aref;
6783 ipqos_conf_act_ref_t *aref = arefs;
6786 while (aref) {
6787 nvlist_free(aref->nvlist);
6788 next = aref->next;
6789 free(aref);
6790 aref = next;
8148 ipqos_conf_act_ref_t *aref;
8167 for (aref = action->params->actions; aref != NULL; aref = aref->next) {
8171 if (virtual_action(aref->name)) {
8175 if (in_cycle(aref->action)) {
8182 aref = c->alist;
8184 if (virtual_action(aref->name)) {
8188 if (in_cycle(aref->action)) {
8227 ipqos_conf_act_ref_t *aref;
8327 for (aref = params->actions; aref; aref = aref->next) {
8331 if (virtual_action(aref->name)) {
8339 aref->action = actionexist(aref->name, actions);
8340 if (aref->action == NULL) {
8344 SHORT_NAME(aref->field), act->name);
8350 dact = aref->action;