Lines Matching defs:next
1240 for (struct loader_instance *inst = loader.instances; inst; inst = inst->next) {
1242 for (struct loader_icd_term *icd_term = inst->icd_terms; icd_term; icd_term = icd_term->next) {
1243 for (struct loader_device *dev = icd_term->logical_device_list; dev; dev = dev->next) {
1288 dev->next = icd_term->logical_device_list;
1302 dev = dev->next;
1306 prev_dev->next = found_dev->next;
1308 icd_term->logical_device_list = found_dev->next;
1316 struct loader_device *next_dev = dev->next;
1336 icd_term->next = ptr_inst->icd_terms;
1899 // Get next file or dirname given a string list or registry key path
1902 // A pointer to first char in the next path.
1903 // The next path (or NULL) in the list is returned in next_path.
1907 char *next;
1910 next = strchr(path, PATH_SEPARATOR);
1911 if (next == NULL) {
1913 next = path + len;
1915 *next = '\0';
1916 next++;
1919 return next;
2729 tempNode = tempNode->next;
2744 layer_node = layer_node->next;
4143 for (struct loader_instance *inst = loader.instances; inst; inst = inst->next) {
4288 // Add any layers specified via environment variable next
4449 icd_term->logical_device_list = cur_dev->next;
4451 prev_dev->next = cur_dev->next;
4458 cur_dev = cur_dev->next;
4460 icd_term = icd_term->next;
4496 // get function pointers to the next layer down.
4883 // physical devices) with the next layer (or possibly even the terminator) physical device values.
4963 // and once we don't want to continue any further as the next layer will be the calling layer
5374 // next.
5375 ptr_instance->icd_terms = icd_term->next;
5376 icd_term->next = NULL;
5389 // Something bad happened with this ICD, so free it and try the next.
5390 ptr_instance->icd_terms = icd_term->next;
5391 icd_term->next = NULL;
5509 ptr_instance->icd_terms = icd_term->next;
5510 icd_term->next = NULL;
5519 ptr_instance->icd_terms = icd_term->next;
5520 icd_term->next = NULL;
5567 icd_term = icd_term->next;
5593 ptr_instance->icd_terms = icd_term->next;
5626 struct loader_instance *next = loader.instances;
5627 while (next != NULL) {
5628 if (next == ptr_instance) {
5631 prev->next = next->next;
5633 loader.instances = next->next;
5636 prev = next;
5637 next = next->next;
5645 next_icd_term = icd_terms->next;
6286 icd_term = icd_term->next;
6345 // current next element in new_phys_devs and passing in a `count` of currently unwritten elements
6900 for (uint32_t icd_idx = 0; NULL != icd_term; icd_term = icd_term->next, icd_idx++) {
6971 for (uint8_t icd_idx = 0; NULL != icd_term; icd_term = icd_term->next, icd_idx++) {