Home | History | Annotate | Download | only in libalsa-intf

Lines Matching defs:node

3708  * value - node value that needs to be added
3714 struct snd_ucm_ident_node *temp, *node;
3716 node =
3718 if (node == NULL) {
3719 ALOGE("Failed to allocate memory for new node");
3722 node->next = NULL;
3723 strlcpy(node->ident, value, MAX_STR_LEN);
3724 node->active = 0;
3725 node->capability = 0;
3728 *head = node;
3734 temp->next = node;
3736 ALOGV("add_to_list: head %p, value %s", *head, node->ident);
3762 /* Get the node at particular index
3811 * index - node index value
3812 * Returns node idetifier value at index on sucess, NULL otherwise
3876 * value - node value that needs to be deleted