Home
last modified time | relevance | path

Searched refs:found_name (Results 1 - 7 of 7) sorted by relevance

/third_party/vulkan-loader/loader/generated/
H A Dvk_loader_extensions.h51 PFN_vkVoidFunction get_extension_device_proc_terminator(struct loader_device *dev, const char *name, bool* found_name);
86 bool *found_name);
H A Dvk_loader_extensions.c1544 VKAPI_ATTR void* VKAPI_CALL loader_lookup_device_dispatch_table(const VkLayerDispatchTable *table, const char *name, bool* found_name) { in loader_lookup_device_dispatch_table() argument
1546 *found_name = false; in loader_lookup_device_dispatch_table()
1551 *found_name = true; in loader_lookup_device_dispatch_table()
2992 *found_name = false; in loader_lookup_device_dispatch_table()
2998 bool *found_name) { in loader_lookup_instance_dispatch_table()
3000 *found_name = false; in loader_lookup_instance_dispatch_table()
3004 *found_name = true; in loader_lookup_instance_dispatch_table()
3260 *found_name = false; in loader_lookup_instance_dispatch_table()
11973 PFN_vkVoidFunction get_extension_device_proc_terminator(struct loader_device *dev, const char *name, bool* found_name) { in get_extension_device_proc_terminator() argument
11974 *found_name in get_extension_device_proc_terminator()
2997 loader_lookup_instance_dispatch_table(const VkLayerInstanceDispatchTable *table, const char *name, bool *found_name) loader_lookup_instance_dispatch_table() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_ndis.c2126 int num_name, num_desc, i, found_name, found_desc; in wpa_driver_ndis_get_names()
2237 found_name = found_desc = -1; in wpa_driver_ndis_get_names()
2241 if (found_name == -1 && os_strstr(name[i], drv->ifname)) in wpa_driver_ndis_get_names()
2242 found_name = i; in wpa_driver_ndis_get_names()
2249 if (found_name < 0 && found_desc >= 0) { in wpa_driver_ndis_get_names()
2253 found_name = found_desc; in wpa_driver_ndis_get_names()
2260 if (found_name < 0) { in wpa_driver_ndis_get_names()
2267 i = found_name; in wpa_driver_ndis_get_names()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_ndis.c2138 int num_name, num_desc, i, found_name, found_desc; in wpa_driver_ndis_get_names()
2249 found_name = found_desc = -1; in wpa_driver_ndis_get_names()
2253 if (found_name == -1 && os_strstr(name[i], drv->ifname)) in wpa_driver_ndis_get_names()
2254 found_name = i; in wpa_driver_ndis_get_names()
2261 if (found_name < 0 && found_desc >= 0) { in wpa_driver_ndis_get_names()
2265 found_name = found_desc; in wpa_driver_ndis_get_names()
2272 if (found_name < 0) { in wpa_driver_ndis_get_names()
2279 i = found_name; in wpa_driver_ndis_get_names()
/third_party/node/deps/v8/src/torque/
H A Dimplementation-visitor.h471 Identifier* found_name = initializers[i].name; in CheckInitializersWellformed() local
472 if (field_name != found_name->value) { in CheckInitializersWellformed()
474 found_name->value, "\"") in CheckInitializersWellformed()
475 .Position(found_name->pos) in CheckInitializersWellformed()
/third_party/vulkan-loader/loader/
H A Dloader.c3985 bool found_name;
3986 void *addr = loader_lookup_instance_dispatch_table(disp_table, pName, &found_name);
3987 if (found_name) {
4073 bool found_name;
4074 void *addr = loader_lookup_instance_dispatch_table(disp_table, pName, &found_name);
4075 if (found_name) {
4118 bool found_name = false;
4119 PFN_vkVoidFunction addr = get_extension_device_proc_terminator(dev, pName, &found_name);
4120 if (found_name) {
H A Dtrampoline.c157 bool found_name = false; in vkGetDeviceProcAddr()
158 void *addr = loader_lookup_device_dispatch_table(disp_table, pName, &found_name); in vkGetDeviceProcAddr()
159 if (found_name) return addr; in vkGetDeviceProcAddr()

Completed in 46 milliseconds