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

1 2 3 4 5 6 7 8 91011>>

  /development/host/windows/usb/legacy/driver/
android_usb_driver_object.h 21 encapsulates our driver object.
24 /// Globally accessible pointer to the driver object
27 /** AndroidUsbDriverObject class encapsulates driver object and provides
29 resources. We use KMDF framework for this driver because it takes care of
31 stuff) so we can concentrate more on real functionality. This driver is
32 based on KMDF's usbsamp driver sample available at DDK's src\kmdf\usbsamp
39 /** \brief Driver initialization entry point.
41 This method is a "gate" to our driver class from main DriverEntry routine.
45 @param drv_object[in] Driver object passed to DriverEntry routine
46 @param reg_path[in] Path to the driver's Registry passed to DriverEntry
    [all...]
android_usb_driver_object.cpp 19 encapsulates our driver object
31 NT OS design allows us using of a global pointer to our driver object
41 /// Main entry point to the driver
57 // Instantiate driver object
64 // Initialize driver object
68 // Something went wrong. Delete our driver object and get out of here.
88 // Initiialize driver config, specifying our unload callback and default
95 // Create a framework driver object to represent our driver.
105 GoogleDbgPrint("\n>>>>>>>>>> Android USB driver has started >>>>>>>>>>");
    [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...]
driver.h 2 * WPA Supplicant - driver interface definition
51 * driver. Each driver interface implementation is responsible for converting
52 * the driver or OS specific scan results into this format.
77 * This can be %NULL, if ap_scan=2 mode is used and the driver is
98 * of this WPA IE is optional. If the driver generates the WPA
101 * the driver has to notify wpa_supplicant about the used WPA
105 * instead. The driver can determine which version is used by
158 * struct wpa_driver_capa - Driver capability information
179 /* Driver generated WPA/RSN IE *
    [all...]
wpa_supplicant.h 18 /* Driver wrappers are not supposed to directly touch the internal data
30 * This event needs to be delivered when the driver completes IEEE
35 * more information about the association. If the driver interface gets
54 * the local driver. Additional data is for event processing is
67 * is called. If the driver provides an unsolicited event when the scan
70 * driver, the driver wrapper code is expected to use a registered
83 * EVENT_ASSOC. Alternatively, the driver interface can include
114 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
121 * Driver will be notified about successful pre-authentication wit
    [all...]
  /system/core/rootdir/etc/
mountd.conf 14 ## path to the UMS driver file for specifying the block device path
15 ## use this for the mass_storage function driver
17 ## use this for android_usb composite gadget driver
  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_DriverManager.java 22 import java.sql.Driver;
31 * Helper class for the Driver manager tes - it allows the test code to be
38 static Driver testDriver = null;
51 public static void setDriver(Driver theDriver) {
53 // Logger.global.info("TestHelper_DriverManager: Test Driver set!");
56 } // end method setDriver( Driver )
64 Driver aDriver;
68 // Try to get a driver from the general pool... this should fail
71 fail("testDeregisterDriver: Didn't get exception when getting valid driver from other classloader.");
75 "testDeregisterDriver: Got exception when getting valid driver from other classloader."
    [all...]
TestHelper_Driver2.java 20 import java.sql.Driver;
25 * Basic JDBC driver implementation to help with tests
31 Driver theDriver = new TestHelper_Driver2();
40 System.out.println("Failed to register driver!");
TestHelper_Driver5.java 20 import java.sql.Driver;
25 * Basic JDBC driver implementation to help with tests
31 Driver theDriver = new TestHelper_Driver5();
35 System.out.println("Failed to register driver!");
  /frameworks/base/docs/html/sdk/
win-usb.jd 1 page.title=USB Driver for Windows
9 <li><a href="#WinUsbDriver">Installing the USB Driver for Windows</a></li>
22 <p>The USB driver for Windows is a downloadable component for the
25 to install the USB driver.</p>
28 USB driver and a guide to installing the driver on your development
33 USB driver. Refer to <a
39 <p>The sections below provide notes about successive revisions of the USB Driver
41 USB Driver for Windows you are using, refer to the "Installed Packages" listing
86 USB Driver for Windows, Revision 3</a> <em>(January 2010)</em
    [all...]
  /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
432 if (wpa_s->driver->init2
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver.h 2 * WPA Supplicant - driver interface definition
55 * driver. Each driver interface implementation is responsible for converting
56 * the driver or OS specific scan results into this format.
60 * only included for backwards compatibility with existing driver wrapper
97 * driver. Each driver interface implementation is responsible for converting
98 * the driver or OS specific scan results into this format.
100 * If the driver does not support reporting all IEs, the IE data structure is
152 * This can be %NULL, if ap_scan=2 mode is used and the driver i
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/SQLite/
JDBCDriverTest.java 27 import java.sql.Driver;
41 private Driver returnedDriver;
52 System.out.println("Cannot get driver");
86 // we have to list the Driver target explicitly, since SQLite
88 clazz = Driver.class,
98 fail("no Driver available");
101 fail("Driver does not accept URL");
118 // we have to list the Driver target explicitly, since SQLite
120 clazz = Driver.class,
133 fail("no Driver available")
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
Driver.java 23 * An interface to a JDBC driver.
25 * The JDBC driver uses URLs to specify the location of specific data. URL
28 * the same for all of a particular driver. " {@code SpecificData}" is a string
29 * which identifies the particular data source that the driver should use.
31 * A driver needs to be registered with a {@link DriverManager}. It is
37 public interface Driver {
40 * Returns whether the driver thinks that it can open a connection to the
45 * @return {@code true} if the driver thinks that is can open a connection
47 * driver will respond {@code true} if it thinks that it can handle
48 * the subprotocol specified by the driver
    [all...]
package.html 8 <p>Note that you must provide your own JDBC driver.</p>
DriverManager.java 59 private static final List<Driver> theDrivers = new ArrayList<Driver>(10);
92 // Load the driver class
110 * Removes a driver from the {@code DriverManager}'s registered driver list.
111 * This will only succeed when the caller's class loader loaded the driver
112 * that is to be removed. If the driver was loaded by a different class
113 * loader, the removal of the driver fails silently.
116 * driver in the future when asked to get a {@code Connection}.
118 * @param driver
    [all...]
  /external/grub/netboot/
cs89x0.txt 1 Permission is granted to distribute the enclosed cs89x0.[ch] driver
13 development of this driver.
24 for writing the Linux device driver for the CS89x0
nic.h 12 * Structure returned from eth_probe and passed to other driver
23 int flags; /* driver specific flags */
28 void *priv_data; /* driver can hang private data here */
  /system/wlan/ti/wilink_6_1/TWD/FW_Transfer/Export_Inc/
FwEvent_api.h 76 * \brief Requests the context engine to schedule the driver task
78 * \param hFwEvent - FwEvent Driver handle
83 * Requests the context engine to schedule the driver task
94 * \param hFwEvent - FwEvent Driver handle
110 * \brief Stop & reset FwEvent (called by the driver stop process)
112 * \param hFwEvent - FwEvent Driver handle
125 * \param hFwEvent - FwEvent Driver handle
140 * \param hFwEvent - FwEvent Driver handle
153 * \param hFwEvent - FwEvent Driver handle
166 * \param hFwEvent - FwEvent Driver handl
    [all...]
  /system/wlan/ti/wilink_6_1/Txn/
TxnQueue.h 85 * Destroy bus driver and free the module's object
106 /** \brief Configure bus driver
114 * Configure the bus driver with its connection configuration (such as baud-rate, bus width etc)
115 * and establish the physical connection. Done once (and not per functional driver startup).
123 /** \brief Disconnect bus driver
130 * Disconnect the bus driver.
135 /** \brief Register functional driver to TxnQ
138 * \param uFuncId - The calling functional driver
145 * Called by each functional driver (WLAN, future-BT) that uses the TxnQ.
146 * Save driver's info and create its queues.
    [all...]
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
WlanDrvIf.c 38 * Kernel level portion of eSTA DK Linux module driver
44 * \brief The OS-Dependent interfaces of the WLAN driver with external applications:
84 /* save driver handle just for module cleanup */
90 MODULE_DESCRIPTION("TI WLAN Embedded Station Driver");
125 * after switching to the driver context.
129 * \param dev - The driver network-interface handle
159 /* Send the packet to the driver for transmission. */
162 /* If failed (queue full or driver not running), drop the packet. */
178 * Free the OS Tx packet after driver processing is finished.
199 * handler (replacing wlanDrvIf_Xmit) when the driver is not operational
    [all...]
  /system/wlan/ti/wilink_6_1/platforms/os/linux/src/
WlanDrvIf.c 38 * Kernel level portion of eSTA DK Linux module driver
44 * \brief The OS-Dependent interfaces of the WLAN driver with external applications:
84 /* save driver handle just for module cleanup */
90 MODULE_DESCRIPTION("TI WLAN Embedded Station Driver");
125 * after switching to the driver context.
129 * \param dev - The driver network-interface handle
159 /* Send the packet to the driver for transmission. */
162 /* If failed (queue full or driver not running), drop the packet. */
177 * Free the OS Tx packet after driver processing is finished.
198 * handler (replacing wlanDrvIf_Xmit) when the driver is not operational
    [all...]
  /hardware/ti/wlan/wl1271/Txn/
TxnQueue.h 85 * Destroy bus driver and free the module's object
106 /** \brief Configure bus driver
116 * Configure the bus driver with its connection configuration (such as baud-rate, bus width etc)
117 * and establish the physical connection. Done once (and not per functional driver startup).
128 /** \brief Disconnect bus driver
135 * Disconnect the bus driver.
140 /** \brief Register functional driver to TxnQ
143 * \param uFuncId - The calling functional driver
150 * Called by each functional driver (WLAN, future-BT) that uses the TxnQ.
151 * Save driver's info and create its queues.
    [all...]
  /hardware/ti/wlan/wl1271/TWD/FW_Transfer/Export_Inc/
FwEvent_api.h 76 * \brief Requests the context engine to schedule the driver task
78 * \param hFwEvent - FwEvent Driver handle
83 * Requests the context engine to schedule the driver task
94 * \param hFwEvent - FwEvent Driver handle
112 * \param hFwEvent - FwEvent Driver handle
124 * \brief Stop & reset FwEvent (called by the driver stop process)
126 * \param hFwEvent - FwEvent Driver handle
139 * \param hFwEvent - FwEvent Driver handle
154 * \param hFwEvent - FwEvent Driver handle
167 * \param hFwEvent - FwEvent Driver handl
    [all...]
  /external/freetype/include/freetype/internal/
fttrace.h 45 /* SFNT driver components */
46 FT_TRACE_DEF( sfdriver ) /* SFNT font driver (sfdriver.c) */
56 /* TrueType driver components */
57 FT_TRACE_DEF( ttdriver ) /* TT font driver (ttdriver.c) */
64 /* Type 1 driver components */
82 /* Type 2 driver components */
89 /* Type 42 driver component */
92 /* CID driver components */

Completed in 395 milliseconds

1 2 3 4 5 6 7 8 91011>>