Home | History | Annotate | Download | only in src

Lines Matching refs:new_buf

1331         mm_channel_queue_node_t *new_buf = NULL;
1334 new_buf = (mm_channel_queue_node_t*)malloc(sizeof(mm_channel_queue_node_t));
1336 if (NULL != new_buf && NULL != new_node) {
1337 memset(new_buf, 0, sizeof(mm_channel_queue_node_t));
1339 new_node->data = (void *)new_buf;
1340 new_buf->num_of_bufs = queue->num_streams;
1341 memcpy(&new_buf->super_buf[buf_s_idx], buf_info, sizeof(mm_camera_buf_info_t));
1350 new_buf->matched = 1;
1352 if (new_buf->matched) {
1359 if (NULL != new_buf) {
1360 free(new_buf);