Home | History | Annotate | Download | only in loader

Lines Matching full:entrypoints

86 // all entrypoints on the instance chain need to be locked except GPA
534 loader_heap_free(inst, dev_ext_list->list->entrypoints[j]);
536 loader_heap_free(inst, dev_ext_list->list->entrypoints);
753 * Append one extension property defined in props with entrypoints
791 ext_list->list[idx].entrypoints =
794 if (ext_list->list[idx].entrypoints == NULL)
797 ext_list->list[idx].entrypoints[i] = loader_heap_alloc(
799 if (ext_list->list[idx].entrypoints[i] == NULL)
801 strcpy(ext_list->list[idx].entrypoints[i], entrys[i]);
1617 dst->device_extension_list.list->entrypoints = loader_heap_alloc(
1620 dst->device_extension_list.list->entrypoints[i] = loader_heap_alloc(
1622 strlen(src->device_extension_list.list->entrypoints[i]) + 1,
1624 strcpy(dst->device_extension_list.list->entrypoints[i],
1625 src->device_extension_list.list->entrypoints[i]);
2033 cJSON *entrypoints;
2039 entrypoints = NULL;
2090 * entrypoints
2106 // entrypoints = cJSON_GetObjectItem(ext_item, "entrypoints");
2107 GET_JSON_OBJECT(ext_item, entrypoints)
2109 if (entrypoints == NULL) {
2115 entry_count = cJSON_GetArraySize(entrypoints);
2120 ext_item = cJSON_GetArrayItem(entrypoints, j);
2674 * for dev for each of those extension entrypoints found in hash table.
2713 if(strcmp(property->entrypoints[entry], funcName) == 0)
2843 * extension entrypoints. A hash table is used to keep a list of unknown entry
3701 "entrypoints with ICD");