HomeSort by relevance Sort by last modified time
    Searched refs:driver (Results 1 - 25 of 316) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/
driver_i.h 2 * wpa_supplicant - Internal driver interface wrappers
18 #include "drivers/driver.h"
24 if (wpa_s->driver->init2)
25 return wpa_s->driver->init2(wpa_s, ifname,
27 if (wpa_s->driver->init) {
28 return wpa_s->driver->init(wpa_s, ifname);
35 if (wpa_s->driver->deinit)
36 wpa_s->driver->deinit(wpa_s->drv_priv);
42 if (wpa_s->driver->set_param)
43 return wpa_s->driver->set_param(wpa_s->drv_priv, param)
    [all...]
  /external/clang/include/clang/Driver/
Util.h 1 //===--- Util.h - Common Driver Utilities -----------------------*- C++ -*-===//
16 namespace driver { namespace in namespace:clang
25 } // end namespace driver
Phases.h 1 //===--- Phases.h - Transformations on Driver Types -------------*- C++ -*-===//
14 namespace driver { namespace in namespace:clang
29 } // end namespace driver
CC1AsOptions.h 14 namespace driver { namespace in namespace:clang
22 #include "clang/Driver/CC1AsOptions.inc"
CC1Options.h 14 namespace driver { namespace in namespace:clang
22 #include "clang/Driver/CC1Options.inc"
ObjCRuntime.h 14 namespace driver { namespace in namespace:clang
OptSpecifier.h 14 namespace driver { namespace in namespace:clang
Options.h 14 namespace driver { namespace in namespace:clang
22 #include "clang/Driver/Options.inc"
  /external/wpa_supplicant_8/src/ap/
ap_drv_ops.c 2 * hostapd - Driver operations
18 #include "drivers/driver.h"
49 if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL)
147 ret = hapd->driver->set_ap_wps_ie(hapd->drv_priv, beacon, proberesp,
216 if (hapd->driver == NULL || hapd->driver->set_intra_bss == NULL)
218 return hapd->driver->set_intra_bss(hapd->drv_priv, !value);
238 "for kernel driver");
246 "driver");
    [all...]
ap_drv_ops.h 2 * hostapd - Driver operations
100 #include "drivers/driver.h"
105 if (hapd->driver == NULL ||
106 hapd->driver->hapd_set_countermeasures == NULL)
108 return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled);
115 if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL)
117 return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname,
124 if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL
    [all...]
  /external/wpa_supplicant/
wpa_supplicant_i.h 18 #include "driver.h"
65 * driver - Driver interface name, or %NULL to use the default driver
67 const char *driver; member in struct:wpa_interface
70 * driver_param - Driver interface parameters
88 * If the driver interface (ifname) is included in a Linux bridge
313 struct wpa_driver_ops *driver; member in struct:wpa_supplicant
340 * to speed up the first association if the driver
411 if (wpa_s->driver->init)
    [all...]
  /external/clang/lib/Driver/
CC1AsOptions.cpp 10 #include "clang/Driver/CC1AsOptions.h"
11 #include "clang/Driver/Option.h"
12 #include "clang/Driver/OptTable.h"
14 using namespace clang::driver;
15 using namespace clang::driver::options;
16 using namespace clang::driver::cc1asoptions;
23 #include "clang/Driver/CC1AsOptions.inc"
37 OptTable *clang::driver::createCC1AsOptTable() {
CC1Options.cpp 10 #include "clang/Driver/CC1Options.h"
11 #include "clang/Driver/Option.h"
12 #include "clang/Driver/OptTable.h"
14 using namespace clang::driver;
15 using namespace clang::driver::options;
16 using namespace clang::driver::cc1options;
23 #include "clang/Driver/CC1Options.inc"
36 OptTable *clang::driver::createCC1OptTable() {
Phases.cpp 1 //===--- Phases.cpp - Transformations on Driver Types ---------------------===//
10 #include "clang/Driver/Phases.h"
15 using namespace clang::driver;
DriverOptions.cpp 1 //===--- DriverOptions.cpp - Driver Options Table -------------------------===//
10 #include "clang/Driver/Options.h"
11 #include "clang/Driver/OptTable.h"
12 #include "clang/Driver/Option.h"
14 using namespace clang::driver;
15 using namespace clang::driver::options;
22 #include "clang/Driver/Options.inc"
35 OptTable *clang::driver::createDriverOptTable() {
Tool.cpp 10 #include "clang/Driver/Tool.h"
12 using namespace clang::driver;
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_supplicant_i.h 18 #include "drivers/driver.h"
71 * driver - Driver interface name, or %NULL to use the default driver
73 const char *driver; member in struct:wpa_interface
76 * driver_param - Driver interface parameters
94 * If the driver interface (ifname) is included in a Linux bridge
320 struct wpa_driver_ops *driver; member in struct:wpa_supplicant
348 * to speed up the first association if the driver
433 if (wpa_s->driver->init2
    [all...]
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 10 // Construct a compiler invocation object for command line driver arguments
18 #include "clang/Driver/Compilation.h"
19 #include "clang/Driver/Driver.h"
20 #include "clang/Driver/ArgList.h"
21 #include "clang/Driver/Options.h"
22 #include "clang/Driver/Tool.h"
46 // FIXME: Find a cleaner way to force the driver into restricted modes. We
51 driver::Driver TheDriver("clang", llvm::sys::getHostTriple()
    [all...]
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 54 private static final List<Driver> theDrivers = new ArrayList<Driver>(10);
84 // Load the driver class
101 * Removes a driver from the {@code DriverManager}'s registered driver list.
102 * This will only succeed when the caller's class loader loaded the driver
103 * that is to be removed. If the driver was loaded by a different class
104 * loader, the removal of the driver fails silently.
107 * driver in the future when asked to get a {@code Connection}.
109 * @param driver
    [all...]
  /external/wpa_supplicant_8/hostapd/
wired.conf 8 driver=wired
  /bionic/libc/kernel/common/linux/
kernelcapi.h 25 char driver[32]; member in struct:kcapi_carddef
  /development/ndk/platforms/android-3/include/linux/
kernelcapi.h 25 char driver[32]; member in struct:kcapi_carddef
  /external/clang/tools/
Makefile 11 DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool
  /external/icu4c/test/intltest/
dadrfmt.h 47 TestDataModule *driver; member in class:DataDrivenFormatTest
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
kernelcapi.h 24 char driver[32]; member in struct:kcapi_carddef

Completed in 1977 milliseconds

1 2 3 4 5 6 7 8 91011>>