/external/wpa_supplicant_8/wpa_supplicant/ |
D | driver_i.h | 24 if (wpa_s->driver->init2) in wpa_drv_init() 25 return wpa_s->driver->init2(wpa_s, ifname, in wpa_drv_init() 27 if (wpa_s->driver->init) { in wpa_drv_init() 28 return wpa_s->driver->init(wpa_s, ifname); in wpa_drv_init() 35 if (wpa_s->driver->deinit) in wpa_drv_deinit() 36 wpa_s->driver->deinit(wpa_s->drv_priv); in wpa_drv_deinit() 42 if (wpa_s->driver->set_param) in wpa_drv_set_param() 43 return wpa_s->driver->set_param(wpa_s->drv_priv, param); in wpa_drv_set_param() 50 if (wpa_s->driver->set_countermeasures) { in wpa_drv_set_countermeasures() 51 return wpa_s->driver->set_countermeasures(wpa_s->drv_priv, in wpa_drv_set_countermeasures() [all …]
|
D | wpa_priv.c | 38 struct wpa_driver_ops *driver; member 54 if (iface->driver->deinit) in wpa_priv_cmd_register() 55 iface->driver->deinit(iface->drv_priv); in wpa_priv_cmd_register() 67 if (iface->driver->init == NULL) in wpa_priv_cmd_register() 70 iface->drv_priv = iface->driver->init(iface, iface->ifname); in wpa_priv_cmd_register() 82 if (iface->driver->set_param && in wpa_priv_cmd_register() 83 iface->driver->set_param(iface->drv_priv, NULL) < 0) { in wpa_priv_cmd_register() 93 if (iface->driver->deinit) in wpa_priv_cmd_unregister() 94 iface->driver->deinit(iface->drv_priv); in wpa_priv_cmd_unregister() 116 if (iface->driver->scan2) in wpa_priv_cmd_scan() [all …]
|
/external/wpa_supplicant_8/src/ap/ |
D | ap_drv_ops.c | 49 if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL) in hostapd_set_ap_wps_ie() 147 ret = hapd->driver->set_ap_wps_ie(hapd->drv_priv, beacon, proberesp, in hostapd_set_ap_wps_ie() 216 if (hapd->driver == NULL || hapd->driver->set_intra_bss == NULL) in hostapd_set_ap_isolate() 218 return hapd->driver->set_intra_bss(hapd->drv_priv, !value); in hostapd_set_ap_isolate() 302 if (hapd->driver == NULL || hapd->driver->set_wds_sta == NULL) in hostapd_set_wds_sta() 308 return hapd->driver->set_wds_sta(hapd->drv_priv, addr, aid, val, in hostapd_set_wds_sta() 321 if (hapd->driver == NULL) in hostapd_sta_add() 323 if (hapd->driver->sta_add == NULL) in hostapd_sta_add() 334 return hapd->driver->sta_add(hapd->drv_priv, ¶ms); in hostapd_sta_add() 340 if (hapd->driver == NULL || hapd->driver->set_privacy == NULL) in hostapd_set_privacy() [all …]
|
D | ap_drv_ops.h | 105 if (hapd->driver == NULL || in hostapd_drv_set_countermeasures() 106 hapd->driver->hapd_set_countermeasures == NULL) in hostapd_drv_set_countermeasures() 108 return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled); in hostapd_drv_set_countermeasures() 115 if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL) in hostapd_drv_set_sta_vlan() 117 return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname, in hostapd_drv_set_sta_vlan() 124 if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL) in hostapd_drv_get_inact_sec() 126 return hapd->driver->get_inact_sec(hapd->drv_priv, addr); in hostapd_drv_get_inact_sec() 132 if (hapd->driver == NULL || hapd->driver->sta_remove == NULL) in hostapd_drv_sta_remove() 134 return hapd->driver->sta_remove(hapd->drv_priv, addr); in hostapd_drv_sta_remove() 142 if (hapd->driver == NULL || hapd->driver->hapd_send_eapol == NULL) in hostapd_drv_hapd_send_eapol() [all …]
|
/external/wpa_supplicant_6/wpa_supplicant/ |
D | wpa_supplicant_i.h | 73 const char *driver; member 320 struct wpa_driver_ops *driver; member 433 if (wpa_s->driver->init2) in wpa_drv_init() 434 return wpa_s->driver->init2(wpa_s, ifname, in wpa_drv_init() 436 if (wpa_s->driver->init) { in wpa_drv_init() 437 return wpa_s->driver->init(wpa_s, ifname); in wpa_drv_init() 444 if (wpa_s->driver->deinit) in wpa_drv_deinit() 445 wpa_s->driver->deinit(wpa_s->drv_priv); in wpa_drv_deinit() 451 if (wpa_s->driver->set_param) in wpa_drv_set_param() 452 return wpa_s->driver->set_param(wpa_s->drv_priv, param); in wpa_drv_set_param() [all …]
|
D | wpa_priv.c | 46 struct wpa_driver_ops *driver; member 62 if (iface->driver->set_wpa) in wpa_priv_cmd_register() 63 iface->driver->set_wpa(iface->drv_priv, 0); in wpa_priv_cmd_register() 64 if (iface->driver->deinit) in wpa_priv_cmd_register() 65 iface->driver->deinit(iface->drv_priv); in wpa_priv_cmd_register() 77 if (iface->driver->init == NULL) in wpa_priv_cmd_register() 80 iface->drv_priv = iface->driver->init(iface, iface->ifname); in wpa_priv_cmd_register() 92 if (iface->driver->set_param && in wpa_priv_cmd_register() 93 iface->driver->set_param(iface->drv_priv, NULL) < 0) { in wpa_priv_cmd_register() 97 if (iface->driver->set_wpa) in wpa_priv_cmd_register() [all …]
|
D | README | 95 * LEAP (note: requires special support from the driver for IEEE 802.11 135 number of driver specific interface included in wpa_supplicant, please 138 default option to start with before falling back to driver specific 141 Host AP driver for Prism2/2.5/3 (development snapshot/v0.2.x) 148 with Windows NDIS driver for your wlan card supporting WPA. 152 Please note that the driver interface file (driver_hermes.c) and 155 source package of the Agere driver. 157 madwifi driver for cards based on Atheros chip set (ar521x) 160 file to use the correct path for the madwifi driver root directory 163 ATMEL AT76C5XXx driver for USB and PCMCIA cards [all …]
|
/external/wpa_supplicant/ |
D | wpa_supplicant_i.h | 67 const char *driver; member 313 struct wpa_driver_ops *driver; member 411 if (wpa_s->driver->init) { in wpa_drv_init() 412 return wpa_s->driver->init(wpa_s, ifname); in wpa_drv_init() 419 if (wpa_s->driver->deinit) in wpa_drv_deinit() 420 wpa_s->driver->deinit(wpa_s->drv_priv); in wpa_drv_deinit() 426 if (wpa_s->driver->set_param) in wpa_drv_set_param() 427 return wpa_s->driver->set_param(wpa_s->drv_priv, param); in wpa_drv_set_param() 434 if (wpa_s->driver->set_drop_unencrypted) { in wpa_drv_set_drop_unencrypted() 435 return wpa_s->driver->set_drop_unencrypted(wpa_s->drv_priv, in wpa_drv_set_drop_unencrypted() [all …]
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | chromium_unittest.py | 51 self.driver = chromium.ChromiumDriver(mock_port, worker_number=0) 55 … self.assertEqual(self.driver._test_shell_command("test.html", 2, "checksum"), expected_command) 64 self.driver._proc.stdin = StringIO.StringIO() 65 line, did_crash = self.driver._write_command_and_read_line(input) 66 self.assertEqual(self.driver._proc.stdin.getvalue(), expected_stdin) 71 self.driver._proc = Mock() 73 self.driver._proc.stdout = StringIO.StringIO("first\nsecond\nthird\n") 87 self.driver._proc.stdout.readline = mock_readline 93 self.driver._proc = Mock() 94 self.driver._proc.pid = 1 [all …]
|
/external/clang/lib/Frontend/ |
D | CreateInvocationFromCommandLine.cpp | 51 driver::Driver TheDriver("clang", llvm::sys::getHostTriple(), in createInvocationFromCommandLine() 57 llvm::OwningPtr<driver::Compilation> C(TheDriver.BuildCompilation(Args)); in createInvocationFromCommandLine() 60 if (C->getArgs().hasArg(driver::options::OPT__HASH_HASH_HASH)) { in createInvocationFromCommandLine() 67 const driver::JobList &Jobs = C->getJobs(); in createInvocationFromCommandLine() 68 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) { in createInvocationFromCommandLine() 76 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin()); in createInvocationFromCommandLine() 82 const driver::ArgStringList &CCArgs = Cmd->getArguments(); in createInvocationFromCommandLine()
|
/external/freetype/src/base/ |
D | ftobjs.c | 237 FT_Driver driver = slot->face->driver; in ft_glyphslot_init() local 238 FT_Driver_Class clazz = driver->clazz; in ft_glyphslot_init() 239 FT_Memory memory = driver->root.memory; in ft_glyphslot_init() 244 slot->library = driver->root.library; in ft_glyphslot_init() 251 if ( FT_DRIVER_USES_OUTLINES( driver ) ) in ft_glyphslot_init() 347 FT_Driver driver = slot->face->driver; in ft_glyphslot_done() local 348 FT_Driver_Class clazz = driver->clazz; in ft_glyphslot_done() 349 FT_Memory memory = driver->root.memory; in ft_glyphslot_done() 362 if ( FT_DRIVER_USES_OUTLINES( driver ) ) in ft_glyphslot_done() 380 FT_Driver driver; in FT_New_GlyphSlot() local [all …]
|
/external/qemu/docs/ |
D | ANDROID-QEMU-PIPE.TXT | 39 ./hw/goldfish_pipe.c implements the virtual driver. 49 drivers/misc/qemupipe/qemu_pipe.c contains the driver source code 56 The device and driver use an I/O memory page and an IRQ to communicate. 58 - The driver writes to various I/O registers to send commands to the 61 - The device raises an IRQ to instruct the driver that certain events 64 - The driver reads I/O registers to get the status of its latest command, 68 32-bit 'channel' value allocated by the driver. 70 The following is a description of the various commands sent by the driver 76 Used by the driver to indicate that the guest just opened /dev/qemu_pipe 86 Used by the driver to indicate that the guest called 'close' on the [all …]
|
/external/clang/lib/Driver/ |
D | CC1Options.cpp | 14 using namespace clang::driver; 15 using namespace clang::driver::options; 16 using namespace clang::driver::cc1options; 36 OptTable *clang::driver::createCC1OptTable() { in createCC1OptTable()
|
D | CC1AsOptions.cpp | 14 using namespace clang::driver; 15 using namespace clang::driver::options; 16 using namespace clang::driver::cc1asoptions; 37 OptTable *clang::driver::createCC1AsOptTable() { in createCC1AsOptTable()
|
D | DriverOptions.cpp | 14 using namespace clang::driver; 15 using namespace clang::driver::options; 35 OptTable *clang::driver::createDriverOptTable() { in createDriverOptTable()
|
/external/grub/ |
D | configure.ac | 331 [ --enable-3c509 enable 3Com509 driver]) 338 [ --enable-3c529 enable 3Com529 driver]) 345 [ --enable-3c595 enable 3Com595 driver]) 352 [ --enable-3c90x enable 3Com90x driver]) 359 [ --enable-cs89x0 enable CS89x0 driver]) 366 [ --enable-davicom enable Davicom driver]) 373 [ --enable-depca enable DEPCA and EtherWORKS driver]) 380 [ --enable-eepro enable Etherexpress Pro/10 driver]) 387 [ --enable-eepro100 enable Etherexpress Pro/100 driver]) 394 [ --enable-epic100 enable SMC 83c170 EPIC/100 driver]) [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | main.c | 239 if (hapd->driver == NULL || hapd->driver->hapd_init == NULL) { in hostapd_driver_init() 268 hapd->drv_priv = hapd->driver->hapd_init(hapd, ¶ms); in hostapd_driver_init() 272 hapd->driver->name); in hostapd_driver_init() 273 hapd->driver = NULL; in hostapd_driver_init() 277 if (hapd->driver->get_capa && in hostapd_driver_init() 278 hapd->driver->get_capa(hapd->drv_priv, &capa) == 0) in hostapd_driver_init() 287 const struct wpa_driver_ops *driver; in hostapd_interface_deinit_free() local 291 driver = iface->bss[0]->driver; in hostapd_interface_deinit_free() 294 if (driver && driver->hapd_deinit) in hostapd_interface_deinit_free() 295 driver->hapd_deinit(drv_priv); in hostapd_interface_deinit_free()
|
/external/clang/examples/clang-interpreter/ |
D | main.cpp | 32 using namespace clang::driver; 96 const driver::JobList &Jobs = C->getJobs(); in main() 97 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) { in main() 105 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin()); in main() 112 const driver::ArgStringList &CCArgs = Cmd->getArguments(); in main()
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
D | wpa_supplicant.sgml | 18 <arg>-D<replaceable>driver</replaceable></arg> 57 authentication/association of the wireless LAN driver.</para> 69 present and enabled, and the driver for the device must be 85 driver to scan neighboring BSSes</para> 95 driver to associate with the chosen BSS</para> 204 the driver for IEEE 802.11 authentication)</para></listitem> 241 <para>A summary of available driver backends is below. Support for each 242 of the driver backends is chosen at wpa_supplicant compile time. For a 243 list of supported driver backends that may be used with the -D option on 251 <para>(default) Host AP driver (Intersil Prism2/2.5/3). [all …]
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | worker_mixin.py | 163 driver = worker._port.create_driver(worker._worker_number) 164 driver.start() 168 self.result = worker._run_single_test(driver, test_input) 185 driver.stop() 206 def _run_single_test(self, driver, test_input): argument 208 test_input, driver, self._name)
|
/external/grub/netboot/ |
D | 3c90x.txt | 2 Instructions for use of the 3C90X driver for EtherBoot 22 DMA cards from 3Com. This particular driver supports both the 3c90x and 38 documentation "3c90x.txt" before compiling and using this driver. 63 To use this driver in such a PROM, visit Atmel's web site and download 87 Normally, the basic procedure for using this driver is as follows: 89 1. Run the 3c90xcfg program on the driver diskette to enable the 118 1. Extend the driver to fully implement the auto-select 121 3. Extend the driver to support the 3c905c revision cards 127 This driver has been tested on roughly 300 systems. The main two 158 default, because the Windows NT 4.0 driver does not like it (no packets [all …]
|
D | sis900.txt | 10 driver or port another driver to Etherboot. It is a starting point. 12 Etherboot driver. This text should help get people started, and 14 techniques involved in writing and Etherboot driver. 76 At this point, you can begin creating your driver source file. See 79 point. If there is a Linux driver for the card, you may be able to
|
/external/qemu/hw/ |
D | qdev.c | 111 const char *driver; in qdev_device_help() 115 driver = qemu_opt_get(opts, "driver"); in qdev_device_help() 116 if (driver && !strcmp(driver, "?")) { in qdev_device_help() 130 info = qdev_find_info(NULL, driver); in qdev_device_help() 156 const char *driver, *path, *id; in qdev_device_add() 161 driver = qemu_opt_get(opts, "driver"); in qdev_device_add() 162 if (!driver) { in qdev_device_add() 168 info = qdev_find_info(NULL, driver); in qdev_device_add() 184 driver, bus->info->name); in qdev_device_add() 211 qerror_report(QERR_DEVICE_INIT_FAILED, driver); in qdev_device_add()
|
/external/mesa3d/docs/ |
D | VERSIONS | 46 faster X device driver functions 97 - Preliminary Microsoft Windows driver 163 - Improved device driver interface 165 - Dithering support moved from core into device driver 178 - updated MS Windows driver 196 - preliminary Linux SVGA driver 215 - updated Macintosh driver 216 - new NeXT driver 220 - gamma correction code moved into the X driver for better performance 241 - driver for prototype Cirrus Mondello 3-D board [all …]
|
D | MESA_set_3dfx_mode.spec | 32 The Mesa Glide driver allows full-screen rendering or rendering into 55 The Mesa Glide device driver allows either rendering in full-screen 66 driver is not being used. 69 time with the Mesa Glide driver.
|