Lines Matching refs:pName

3969 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL loader_gpdpa_instance_terminator(VkInstance inst, const char *pName) {
3986 void *addr = loader_lookup_instance_dispatch_table(disp_table, pName, &found_name);
3992 addr = loader_phys_dev_ext_gpa_term(loader_get_instance(inst), pName);
3996 loader_log(NULL, VULKAN_LOADER_DEBUG_BIT, 0, "loader_gpdpa_instance_terminator() unrecognized name %s", pName);
4000 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL loader_gpa_instance_terminator(VkInstance inst, const char *pName) {
4002 if (!strcmp(pName, "vkGetInstanceProcAddr")) {
4005 if (!strcmp(pName, "vk_layerGetPhysicalDeviceProcAddr")) {
4008 if (!strcmp(pName, "vkCreateInstance")) {
4017 if (!strcmp(pName, "vkCreateDevice")) {
4036 if (!strcmp(pName, "vkSetDebugUtilsObjectNameEXT")) {
4040 if (!strcmp(pName, "vkSetDebugUtilsObjectTagEXT")) {
4044 if (!strcmp(pName, "vkQueueBeginDebugUtilsLabelEXT")) {
4048 if (!strcmp(pName, "vkQueueEndDebugUtilsLabelEXT")) {
4052 if (!strcmp(pName, "vkQueueInsertDebugUtilsLabelEXT")) {
4056 if (!strcmp(pName, "vkCmdBeginDebugUtilsLabelEXT")) {
4060 if (!strcmp(pName, "vkCmdEndDebugUtilsLabelEXT")) {
4064 if (!strcmp(pName, "vkCmdInsertDebugUtilsLabelEXT")) {
4074 void *addr = loader_lookup_instance_dispatch_table(disp_table, pName, &found_name);
4080 addr = loader_phys_dev_ext_gpa_term(loader_get_instance(inst), pName);
4086 addr = loader_dev_ext_gpa_term(loader_get_instance(inst), pName);
4092 loader_log(NULL, VULKAN_LOADER_DEBUG_BIT, 0, "loader_gpa_instance_terminator() unrecognized name %s", pName);
4096 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL loader_gpa_device_terminator(VkDevice device, const char *pName) {
4102 if (!strcmp(pName, "vkGetDeviceProcAddr")) {
4114 // If the pName is for a 'known' function but isn't available, due to
4119 PFN_vkVoidFunction addr = get_extension_device_proc_terminator(dev, pName, &found_name);
4129 return icd_term->dispatch.GetDeviceProcAddr(device, pName);