Home
last modified time | relevance | path

Searched refs:sv_entry (Results 1 – 1 of 1) sorted by relevance

/titanic_44/usr/src/cmd/cmd-inet/usr.sbin/ipqosconf/
H A Dipqosconf.c4099 str_val_nd_t *sv_entry; in add_str_val_entry() local
4106 sv_entry = malloc(sizeof (str_val_nd_t)); in add_str_val_entry()
4107 if (sv_entry == NULL) { in add_str_val_entry()
4113 sv_entry->sv.string = malloc(strlen(string) + 1); in add_str_val_entry()
4114 if (sv_entry->sv.string == NULL) { in add_str_val_entry()
4115 free(sv_entry); in add_str_val_entry()
4119 (void) strcpy(sv_entry->sv.string, string); in add_str_val_entry()
4121 sv_entry->sv.value = val; in add_str_val_entry()
4125 sv_entry->next = *sv_entrys; in add_str_val_entry()
4126 *sv_entrys = sv_entry; in add_str_val_entry()