/external/srtp/ |
Changes | 77 test/srtp-driver, test/kernel-driver, and test/ust-driver. 125 the application cipher-driver in the test subdirectory. 127 Added argument processing to ust-driver.c, and added that app to 154 srtp-driver.c. This is just defensive coding. 203 Added cipher_driver_buffer_test(...) to test/cipher-driver.c. This 211 cipher/cipher-driver.c. 213 Fixed roc-driver so that the non-sequential insertion test
|
/external/wpa_supplicant/ |
config.h | 98 * By default, wpa_supplicant requests driver to perform AP 100 * suitable AP. Another alternative is to allow the driver to 103 * 802.11 association information from the driver. 107 * 0: Driver takes care of scanning, AP selection, and IEEE 802.11 118 * one by one until the driver reports successful association; each 223 * driver_param - Driver interface parameters 225 * This text string is passed to the selected driver interface with the 227 * used to configure driver specific options without having to add new 228 * driver interface functionality.
|
ChangeLog | 15 interface (e.g., USB dongle or on resume if driver was unloaded for 39 using a longer hardcoded timeout for the scan if the driver supports 41 e.g., in cases where wpa_supplicant and madwifi driver ended up in 42 loop where the driver did not even try to associate 115 (Note: this requires driver support to work properly.) 245 * changed NDIS driver naming to only include device GUID, e.g., 250 * driver_ndis: re-initialize driver interface is the adapter is removed 292 a lot with, e.g., madwifi-ng driver) 304 if the driver does not support SIOCSIWAUTH 320 * driver_wext: Remove null-termination from SSID length if the driver [all...] |
/hardware/ti/omap3/dspbridge/libbridge/ |
DSPManager.c | 4 * DSP-BIOS Bridge driver support functions for TI OMAP processors. 23 * work is done at the driver level through the RM MGR module. 46 *! 27-Jun-2000 rr: Modified to call into the Class driver. 76 int hMediaFile = -1; /* class driver handle */ 88 * Open handle to the DSP/BIOS Bridge driver 105 if (usage_count == 0) { /* try opening handle to Bridge driver */ 112 /* Success in opening handle to Bridge driver */ 129 * Purpose: Close handle to the DSP/BIOS Bridge driver 144 /* Success in opening handle to Bridge driver */
|
/external/clang/include/clang/Driver/ |
Action.h | 15 #include "clang/Driver/Types.h" 16 #include "clang/Driver/Util.h" 20 namespace driver { namespace in namespace:clang 28 /// The current driver is hard wired to expect actions which produce a 219 } // end namespace driver
|
Job.h | 13 #include "clang/Driver/Util.h" 18 namespace driver { namespace in namespace:clang 114 } // end namespace driver
|
/external/clang/lib/Driver/ |
Types.cpp | 1 //===--- Types.cpp - Driver input & temporary type information ------------===// 10 #include "clang/Driver/Types.h" 16 using namespace clang::driver; 17 using namespace clang::driver::types; 29 #include "clang/Driver/Types.def"
|
/external/mesa3d/docs/ |
README.WIN32 | 41 At this time, only the GDI driver is known to work. Most of the demos 42 in progs/demos should work with this driver. 47 The GDI driver operates basically by writing pixel spans into a DIB 48 section and then blitting the DIB to the window. The driver was 53 To build Mesa with the GDI driver, build the mesa, gdi, and glu
|
relnotes-6.5.3.html | 73 <li>Assorted DRI driver bug fixes. 94 <li>Fix linux-glide target/driver. 99 <h2>Driver Status</h2> 102 Driver Status 104 DRI drivers varies with the driver
|
RELNOTES-5.0 | 57 Device Driver Status 65 Driver Status 81 driver call the _mesa_enable_1_4_extensions() function.
|
relnotes-7.0.3.html | 64 <h2>Driver Status</h2> 67 Driver Status 69 DRI drivers varies with the driver
|
/external/wpa_supplicant_6/wpa_supplicant/ |
main.c | 31 " -i<ifname> -c<config file> [-C<ctrl>] [-D<driver>] " 35 "[-D<driver>] \\\n" 55 " -D = driver name\n" 64 printf(" -p = driver parameters\n" 153 iface->driver = optarg;
|
todo.txt | 13 - if driver/hw is not WPA2 capable, must remove WPA_PROTO_RSN flag from 14 ssid->proto fields to avoid detecting downgrade attacks when the driver 19 for unicast); worked also with Host AP driver and madwifi 46 * global options (ap_scan, ctrl_interfaces) based on OS/driver 51 * "configuration wizard" (step 1: select OS, step 2: select driver, ...) to
|
/external/wpa_supplicant_8/wpa_supplicant/ |
todo.txt | 10 - if driver/hw is not WPA2 capable, must remove WPA_PROTO_RSN flag from 11 ssid->proto fields to avoid detecting downgrade attacks when the driver 16 for unicast); worked also with Host AP driver and madwifi 41 * global options (ap_scan, ctrl_interfaces) based on OS/driver 46 * "configuration wizard" (step 1: select OS, step 2: select driver, ...) to
|
/external/wpa_supplicant_8/hostapd/ |
ChangeLog | 6 * bsd: Cleaned up driver wrapper and added various low-level 12 * cleaned up driver wrapper API for multi-BSS operations 20 driver wrappers 28 driver wrappers that use hostapd MLME (e.g., nl80211) 31 * cleaned up driver wrapper API (struct wpa_driver_ops); the new API 32 is not fully backwards compatible, so out-of-tree driver wrappers 40 * remove obsolte Prism54.org driver wrapper 48 driver=nl80211 for now) 55 driver=nl80211) 79 * use shared driver wrapper files with wpa_supplican [all...] |
/external/kernel-headers/original/linux/ |
usb.h | 96 * @driver: the USB driver that is bound to this interface. 98 * interface is bound to a driver that uses the USB major number. 100 * be unused. The driver should set this value in the probe() 101 * function of the driver, after it has been assigned a minor 104 * (in probe()), bound to a driver, or unbinding (in disconnect()) 105 * @dev: driver model's view of this device 106 * @class_dev: driver model's class view of this device. 116 * The driver that is bound to the interface can use standard driver mode 609 struct device_driver driver; member in struct:usb_driver [all...] |
device.h | 2 * device.h - generic, centralized driver model 8 * See Documentation/driver-model/ for more information. 115 /* driverfs interface for exporting driver attributes */ 191 * @devt: for internal use by the driver core only. 192 * @node: for internal use by the driver core only. 193 * @kobj: for internal use by the driver core only. 194 * @devt_attr: for internal use by the driver core only. 312 * its driver. 316 struct device_driver *driver; /* which driver has allocated thi member in struct:device [all...] |
major.h | 155 #define VXVM_MAJOR 199 /* VERITAS volume i/o driver */ 156 #define VXSPEC_MAJOR 200 /* VERITAS volume config driver */ 157 #define VXDMP_MAJOR 201 /* VERITAS volume multipath driver */
|
mca.h | 52 /* is there a driver installed? 0 - No, 1 - Yes */ 97 struct device_driver driver; member in struct:mca_driver 99 #define to_mca_driver(mdriver) container_of(mdriver, struct mca_driver, driver)
|
/development/host/windows/usb/ |
android_winusb.inf | 2 ; Android WinUsb driver installation.
14 ; This section seems to be required for WinUsb driver installation.
124 WinUSB_SvcDesc = "Android USB Driver"
|
/hardware/ti/omap4xxx/domx/omx_proxy_component/omx_video_dec/src/ |
omx_proxy_videodec_secure.c | 84 DOMX_ERROR("Can't close the driver"); 92 DOMX_DEBUG("secure mode recieved from Misc driver for secure playback = 0x%x\n", mode); 142 DOMX_ERROR("Can't close the driver");
|
/libcore/luni/src/main/java/javax/sql/ |
DataSource.java | 34 * JDBC driver. There are three variants of the {@code DataSource} interface, 49 * Note that a JDBC driver which is accessed via the {@code DataSource} 50 * interface is loaded via a JNDI lookup process. A driver loaded in this way
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
hdlcdrv.h | 2 * hdlcdrv.h -- HDLC packet radio network driver. 3 * The Linux soundcard driver for 1200 baud and 9600 baud packet radio 30 int fulldup; /* some driver do not support full duplex, setting */
|
major.h | 157 #define VXVM_MAJOR 199 /* VERITAS volume i/o driver */ 158 #define VXSPEC_MAJOR 200 /* VERITAS volume config driver */ 159 #define VXDMP_MAJOR 201 /* VERITAS volume multipath driver */
|
videotext.h | 35 #define VTXIOCGETINFO_OLD 0x7101 /* get version of driver & capabilities of vtx-chipset */ 59 int version_major, version_minor; /* version of driver; if version_major changes, driver */
|