Home
last modified time | relevance | path

Searched refs:phy (Results 1 – 25 of 50) sorted by relevance

12

/external/autotest/server/
Dsite_linux_system.py102 phy=interface.phy))
130 for phy in self._phy_list:
131 if phy.name == phy_name:
132 return phy
154 for phy in self.phy_list:
155 phy_list.append(phy.name)
156 for band in phy.bands:
159 phys_for_frequency[mhz] = [phy.name]
161 phys_for_frequency[mhz].append(phy.name)
164 for phy in phy_list:
[all …]
Dsite_linux_router.py275 interface, self.iw_runner.get_interface(interface).phy,
736 return interface.phy
1090 self.iw_runner.get_interface(interface).phy)
/external/vulkan-validation-layers/demos/smoke/
DHelpers.h55 inline VkResult enumerate(VkPhysicalDevice phy, const char *layer, std::vector<VkExtensionPropertie… in enumerate() argument
58 vk::EnumerateDeviceExtensionProperties(phy, layer, &count, nullptr); in enumerate()
61 return vk::EnumerateDeviceExtensionProperties(phy, layer, &count, exts.data()); in enumerate()
82 inline VkResult enumerate(VkPhysicalDevice phy, std::vector<VkLayerProperties> &layer_props) in enumerate() argument
85 vk::EnumerateDeviceLayerProperties(phy, &count, nullptr); in enumerate()
88 return vk::EnumerateDeviceLayerProperties(phy, &count, layer_props.data()); in enumerate()
91 inline VkResult get(VkPhysicalDevice phy, std::vector<VkQueueFamilyProperties> &queues) in get() argument
94 vk::GetPhysicalDeviceQueueFamilyProperties(phy, &count, nullptr); in get()
97 vk::GetPhysicalDeviceQueueFamilyProperties(phy, &count, queues.data()); in get()
102 inline VkResult get(VkPhysicalDevice phy, VkSurfaceKHR surface, std::vector<VkSurfaceFormatKHR> &fo… in get() argument
[all …]
DShell.cpp141 bool Shell::has_all_device_layers(VkPhysicalDevice phy) const in has_all_device_layers()
145 vk::enumerate(phy, layers); in has_all_device_layers()
160 bool Shell::has_all_device_extensions(VkPhysicalDevice phy) const in has_all_device_extensions()
164 vk::enumerate(phy, nullptr, exts); in has_all_device_extensions()
231 for (auto phy : phys) { in init_physical_dev() local
232 if (!has_all_device_layers(phy) || !has_all_device_extensions(phy)) in init_physical_dev()
237 vk::get(phy, queues); in init_physical_dev()
250 if (present_queue_family < 0 && can_present(phy, i)) in init_physical_dev()
258 ctx_.physical_dev = phy; in init_physical_dev()
DShell.h136 bool has_all_device_layers(VkPhysicalDevice phy) const;
137 bool has_all_device_extensions(VkPhysicalDevice phy) const;
141 virtual bool can_present(VkPhysicalDevice phy, uint32_t queue_family) = 0;
DShellWin32.cpp141 bool ShellWin32::can_present(VkPhysicalDevice phy, uint32_t queue_family) in can_present() argument
143 return vk::GetPhysicalDeviceWin32PresentationSupportKHR(phy, queue_family); in can_present()
DShellXcb.h41 bool can_present(VkPhysicalDevice phy, uint32_t queue_family);
DShellWin32.h40 bool can_present(VkPhysicalDevice phy, uint32_t queue_family);
DShellAndroid.h41 bool can_present(VkPhysicalDevice phy, uint32_t queue_family) { return true; } in can_present() argument
DShellXcb.cpp191 bool ShellXcb::can_present(VkPhysicalDevice phy, uint32_t queue_family) in can_present() argument
193 return vk::GetPhysicalDeviceXcbPresentationSupportKHR(phy, in can_present()
/external/autotest/client/site_tests/network_WiFiCaps/
Dnetwork_WiFiCaps.py35 def __run_iwcap(self, phy, caps): argument
37 iwcap = utils.run(dir + ' ' + phy + ' ' + string.join(caps))
41 phy = utils.system_output("iw list | awk '/^Wiphy/ {print $2}'")
42 if not phy or 'phy' not in phy:
64 results = self.__run_iwcap(phy, requiredCaps.keys())
/external/wpa_supplicant_8/src/drivers/
Drfkill.c108 char *phy = NULL, *rfk_phy; in rfkill_init() local
119 phy = realpath(buf, NULL); in rfkill_init()
120 if (!phy) { in rfkill_init()
163 found = os_strcmp(phy, rfk_phy) == 0; in rfkill_init()
188 free(phy); in rfkill_init()
198 free(phy); in rfkill_init()
/external/autotest/client/common_lib/cros/network/
Diw_runner.py180 def add_interface(self, phy, interface, interface_type): argument
190 (self._command_iw, phy, interface, interface_type))
337 phy = None
343 phy = 'phy%d' % int(m.group(1))
347 if not phy:
359 interfaces.append(IwNetDev(phy=phy, if_name=if_name,
748 def set_antenna_bitmap(self, phy, tx_bitmap, rx_bitmap): argument
760 command = '%s phy %s set antenna %d %d' % (self._command_iw, phy,
792 for phy in phys:
793 for band in phy.bands:
/external/vulkan-validation-layers/tests/
Dvktestframeworkandroid.cpp37 …vkGetPhysicalDeviceFormatProperties(device->phy().handle(), VK_FORMAT_B8G8R8A8_UNORM, &format_prop… in GetFormat()
43 …vkGetPhysicalDeviceFormatProperties(device->phy().handle(), VK_FORMAT_R8G8B8A8_UNORM, &format_prop… in GetFormat()
Dvktestbinding.h119 explicit PhysicalDevice(VkPhysicalDevice phy) : Handle(phy) { in PhysicalDevice() argument
152 explicit Device(VkPhysicalDevice phy) : phy_(phy) {} in Device() argument
166 const PhysicalDevice &phy() const { return phy_; } in phy() function
Dvkrenderframework.cpp302 vkGetPhysicalDeviceFormatProperties(m_device->phy().handle(), in InitRenderTarget()
399 props = phy().properties(); in VkDeviceObj()
400 queue_props = phy().queue_properties().data(); in VkDeviceObj()
409 props = phy().properties(); in VkDeviceObj()
410 queue_props = phy().queue_properties().data(); in VkDeviceObj()
694 vkGetPhysicalDeviceFormatProperties(m_device->phy().handle(), fmt, in init()
Dvktestframework.cpp217 device->phy().handle(), VK_FORMAT_B8G8R8A8_UNORM, &format_props); in GetFormat()
225 device->phy().handle(), VK_FORMAT_R8G8B8A8_UNORM, &format_props); in GetFormat()
/external/autotest/server/site_tests/network_WiFi_VerifyAttenuator/
Dnetwork_WiFi_VerifyAttenuator.py94 phy = self.context.router.get_hostapd_phy(instance)
95 if not phy.startswith('phy'):
96 raise error.TestError('Unexpected phy name %s' % phy)
98 return int(phy[3:])
/external/autotest/server/cros/network/
Dpacket_capturer.py84 def create_raw_monitor(self, phy, frequency, ht_type=None, argument
191 def create_raw_monitor(self, phy, frequency, ht_type=None, argument
212 phy,
/external/autotest/server/site_tests/network_WiFi_RateControl/
Dnetwork_WiFi_RateControl.py62 phy = phys[0]
63 bands = [band for band in phy.bands if frequency in band.frequencies]
/external/wpa_supplicant_8/src/ap/
Dhostapd.c1301 if (!iface->phy[0]) { in setup_interface()
1302 const char *phy = hostapd_drv_get_radio_name(hapd); in setup_interface() local
1303 if (phy) { in setup_interface()
1304 wpa_printf(MSG_DEBUG, "phy: %s", phy); in setup_interface()
1305 os_strlcpy(iface->phy, phy, sizeof(iface->phy)); in setup_interface()
2024 hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy, in hostapd_interface_init_bss() argument
2032 if (!phy || !*phy) in hostapd_interface_init_bss()
2036 if (os_strcmp(interfaces->iface[i]->phy, phy) == 0) { in hostapd_interface_init_bss()
2043 config_fname, phy, iface ? "" : " --> new PHY"); in hostapd_interface_init_bss()
2106 os_strlcpy(iface->phy, phy, sizeof(iface->phy)); in hostapd_interface_init_bss()
Dhostapd.h306 char phy[16]; /* Name of the PHY (radio) */ member
459 hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
/external/autotest/server/site_tests/network_WiFi_RegDomain/
Dnetwork_WiFi_RegDomain.py69 for phy in phy_list:
70 for band in phy.bands:
/external/iw/
DAndroid.mk6 iw.c genl.c event.c info.c phy.c \
DMakefile15 OBJS = iw.o genl.o event.o info.o phy.o \

12