Home
last modified time | relevance | path

Searched refs:driver (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/external/wpa_supplicant_8/wpa_supplicant/
Ddriver_i.h18 if (wpa_s->driver->init2) in wpa_drv_init()
19 return wpa_s->driver->init2(wpa_s, ifname, in wpa_drv_init()
21 if (wpa_s->driver->init) { in wpa_drv_init()
22 return wpa_s->driver->init(wpa_s, ifname); in wpa_drv_init()
29 if (wpa_s->driver->deinit) in wpa_drv_deinit()
30 wpa_s->driver->deinit(wpa_s->drv_priv); in wpa_drv_deinit()
36 if (wpa_s->driver->set_param) in wpa_drv_set_param()
37 return wpa_s->driver->set_param(wpa_s->drv_priv, param); in wpa_drv_set_param()
44 if (wpa_s->driver->set_countermeasures) { in wpa_drv_set_countermeasures()
45 return wpa_s->driver->set_countermeasures(wpa_s->drv_priv, in wpa_drv_set_countermeasures()
[all …]
Dwpa_priv.c32 struct wpa_driver_ops *driver; member
48 if (iface->driver->deinit) in wpa_priv_cmd_register()
49 iface->driver->deinit(iface->drv_priv); in wpa_priv_cmd_register()
61 if (iface->driver->init == NULL) in wpa_priv_cmd_register()
64 iface->drv_priv = iface->driver->init(iface, iface->ifname); in wpa_priv_cmd_register()
76 if (iface->driver->set_param && in wpa_priv_cmd_register()
77 iface->driver->set_param(iface->drv_priv, NULL) < 0) { in wpa_priv_cmd_register()
87 if (iface->driver->deinit) in wpa_priv_cmd_unregister()
88 iface->driver->deinit(iface->drv_priv); in wpa_priv_cmd_unregister()
110 if (iface->driver->scan2) in wpa_priv_cmd_scan()
[all …]
/external/wpa_supplicant_8/src/ap/
Dap_drv_ops.c180 if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL) in hostapd_set_ap_wps_ie()
187 ret = hapd->driver->set_ap_wps_ie(hapd->drv_priv, beacon, proberesp, in hostapd_set_ap_wps_ie()
270 if (hapd->driver == NULL || hapd->driver->set_wds_sta == NULL) in hostapd_set_wds_sta()
276 return hapd->driver->set_wds_sta(hapd->drv_priv, addr, aid, val, in hostapd_set_wds_sta()
284 if (hapd->driver == NULL || hapd->driver->add_sta_node == NULL) in hostapd_add_sta_node()
286 return hapd->driver->add_sta_node(hapd->drv_priv, addr, auth_alg); in hostapd_add_sta_node()
293 if (hapd->driver == NULL || hapd->driver->sta_auth == NULL) in hostapd_sta_auth()
295 return hapd->driver->sta_auth(hapd->drv_priv, hapd->own_addr, addr, in hostapd_sta_auth()
303 if (hapd->driver == NULL || hapd->driver->sta_assoc == NULL) in hostapd_sta_assoc()
305 return hapd->driver->sta_assoc(hapd->drv_priv, hapd->own_addr, addr, in hostapd_sta_assoc()
[all …]
Dap_drv_ops.h104 if (hapd->driver == NULL || in hostapd_drv_set_countermeasures()
105 hapd->driver->hapd_set_countermeasures == NULL) in hostapd_drv_set_countermeasures()
107 return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled); in hostapd_drv_set_countermeasures()
114 if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL) in hostapd_drv_set_sta_vlan()
116 return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname, in hostapd_drv_set_sta_vlan()
123 if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL) in hostapd_drv_get_inact_sec()
125 return hapd->driver->get_inact_sec(hapd->drv_priv, addr); in hostapd_drv_get_inact_sec()
131 if (hapd->driver == NULL || hapd->driver->sta_remove == NULL) in hostapd_drv_sta_remove()
133 return hapd->driver->sta_remove(hapd->drv_priv, addr); in hostapd_drv_sta_remove()
141 if (hapd->driver == NULL || hapd->driver->hapd_send_eapol == NULL) in hostapd_drv_hapd_send_eapol()
[all …]
/external/wpa_supplicant_6/wpa_supplicant/
Dwpa_supplicant_i.h73 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 …]
Dwpa_priv.c46 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 …]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
Dchromium_unittest.py51 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/
DCreateInvocationFromCommandLine.cpp51 driver::Driver TheDriver("clang", llvm::sys::getDefaultTargetTriple(), in createInvocationFromCommandLine()
57 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/clang/lib/Tooling/
DTooling.cpp39 static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics, in newDriver()
42 clang::driver::Driver *CompilerDriver = new clang::driver::Driver( in newDriver()
52 static const clang::driver::ArgStringList *getCC1Arguments( in getCC1Arguments()
54 clang::driver::Compilation *Compilation) { in getCC1Arguments()
57 const clang::driver::JobList &Jobs = Compilation->getJobs(); in getCC1Arguments()
58 if (Jobs.size() != 1 || !isa<clang::driver::Command>(*Jobs.begin())) { in getCC1Arguments()
68 const clang::driver::Command *Cmd = in getCC1Arguments()
69 cast<clang::driver::Command>(*Jobs.begin()); in getCC1Arguments()
81 const clang::driver::ArgStringList &CC1Args) { in newInvocation()
157 const llvm::OwningPtr<clang::driver::Driver> Driver( in run()
[all …]
/external/freetype/src/base/
Dftobjs.c237 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/
DANDROID-QEMU-PIPE.TXT39 ./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/
DCC1Options.cpp14 using namespace clang::driver;
15 using namespace clang::driver::options;
16 using namespace clang::driver::cc1options;
36 OptTable *clang::driver::createCC1OptTable() { in createCC1OptTable()
DCC1AsOptions.cpp14 using namespace clang::driver;
15 using namespace clang::driver::options;
16 using namespace clang::driver::cc1asoptions;
37 OptTable *clang::driver::createCC1AsOptTable() { in createCC1AsOptTable()
DDriverOptions.cpp14 using namespace clang::driver;
15 using namespace clang::driver::options;
35 OptTable *clang::driver::createDriverOptTable() { in createDriverOptTable()
/external/grub/
Dconfigure.ac331 [ --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/
Dmain.c243 if (hapd->driver == NULL || hapd->driver->hapd_init == NULL) { in hostapd_driver_init()
254 if (wpa_drivers[i] != hapd->driver) in hostapd_driver_init()
290 hapd->drv_priv = hapd->driver->hapd_init(hapd, &params); in hostapd_driver_init()
294 hapd->driver->name); in hostapd_driver_init()
295 hapd->driver = NULL; in hostapd_driver_init()
299 if (hapd->driver->get_capa && in hostapd_driver_init()
300 hapd->driver->get_capa(hapd->drv_priv, &capa) == 0) { in hostapd_driver_init()
311 const struct wpa_driver_ops *driver; in hostapd_interface_deinit_free() local
315 driver = iface->bss[0]->driver; in hostapd_interface_deinit_free()
318 if (driver && driver->hapd_deinit) in hostapd_interface_deinit_free()
[all …]
/external/clang/examples/clang-interpreter/
Dmain.cpp31 using namespace clang::driver;
94 const driver::JobList &Jobs = C->getJobs(); in main()
95 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) { in main()
103 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin()); in main()
110 const driver::ArgStringList &CCArgs = Cmd->getArguments(); in main()
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Dwpa_supplicant.sgml18 <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/
Dworker_mixin.py163 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/
D3c90x.txt2 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 …]
Dsis900.txt10 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/
Dqdev.c111 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/
DVERSIONS46 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 …]
DMESA_set_3dfx_mode.spec32 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.
/external/freetype/src/truetype/
Dttdriver.c402 tt_get_interface( FT_Module driver, /* TT_Driver */ in FT_CALLBACK_DEF()
413 if ( !driver ) in FT_CALLBACK_DEF()
415 library = driver->library; in FT_CALLBACK_DEF()
425 if ( !driver ) in FT_CALLBACK_DEF()
427 library = driver->library; in FT_CALLBACK_DEF()
438 return sfnt->get_interface( driver, tt_interface ); in FT_CALLBACK_DEF()

12345678910>>...15