Lines Matching full:new_list_entry
164 mtpdevice_list_t *new_list_entry;
166 new_list_entry = (mtpdevice_list_t *) malloc(sizeof(mtpdevice_list_t));
167 if (new_list_entry == NULL) {
171 new_list_entry->libusb_device = newdevice;
172 new_list_entry->bus_location = bus_location;
173 new_list_entry->next = NULL;
176 return new_list_entry;
182 tmp->next = new_list_entry;