HomeSort by relevance Sort by last modified time
    Searched refs:driver (Results 251 - 275 of 497) sorted by null

<<11121314151617181920

  /external/kernel-headers/original/linux/
kernelcapi.h 24 char driver[32]; member in struct:kcapi_carddef
usbdevice_fs.h 73 char driver[USBDEVFS_MAXDRIVERNAME + 1]; member in struct:usbdevfs_getdriver
hid.h 369 __u16 code; /* input driver code */
370 __u8 type; /* input driver type */
476 struct hid_driver *driver; member in struct:hid_device
580 * @name: driver name (e.g. "Footech_bar-wheel")
581 * @id_table: which devices is this driver for (must be non-NULL for probe
586 * @remove: device removed (NULL if not a hot-plug capable driver)
643 struct device_driver driver; member in struct:hid_driver
647 * hid_ll_driver - low level driver callbacks
687 static inline int __must_check hid_register_driver(struct hid_driver *driver)
689 return __hid_register_driver(driver, THIS_MODULE, KBUILD_MODNAME)
    [all...]
pnp.h 136 struct device dev; /* Driver Model device interface */
163 struct pnp_card_driver * driver; member in struct:pnp_card_link
179 struct device dev; /* Driver Model device interface */
190 struct pnp_driver * driver; member in struct:pnp_dev
284 * Driver Management
300 struct device_driver driver; member in struct:pnp_driver
303 #define to_pnp_driver(drv) container_of(drv, struct pnp_driver, driver)
319 /* pnp driver flags */
339 struct device dev; /* link to driver model */
  /external/qemu/distrib/sdl-1.2.15/test/
testvidinfo.c 391 char driver[128]; local
398 if ( SDL_VideoDriverName(driver, sizeof(driver)) ) {
399 printf("Video driver: %s\n", driver);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
single_test_runner.py 42 def run_single_test(port, options, test_input, driver, worker_name):
43 runner = SingleTestRunner(options, port, driver, test_input, worker_name)
49 def __init__(self, options, port, driver, test_input, worker_name):
52 self._driver = driver
186 """Returns test failures if some unusual errors happen in driver's run.
189 driver_output: The output from the driver.
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
base_unittest.py 291 self.assertRaises(NotImplementedError, base.Driver, base.Port(),
295 class VirtualDriver(base.Driver):
299 driver = VirtualDriver()
300 self.assertVirtual(driver.run_test, None)
301 self.assertVirtual(driver.poll)
302 self.assertVirtual(driver.stop)
308 wrapper = base.Driver._command_wrapper(wrapper_string)
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.h 36 void setDriver(const wp<NuPlayerDriver> &driver);
56 // Will notify the driver through "notifyResetComplete" once finished.
59 // Will notify the driver through "notifySeekComplete" once finished.
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_linux.c 169 ioc.driver = driver_magic;
205 strcpy(info.driver, "?");
206 strcat(info.driver, type);
217 strcpy(buf, info.driver);
288 * If dhd_check() fails then go for a regular wl driver verification
512 fprintf(stderr, "%s: wl driver adapter not found\n", av0);
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
Android.mk 62 endif # building 'real' driver BUILD_EMULATOR_OPENGL_DRIVER
  /external/clang/lib/Driver/
Types.cpp 1 //===--- Types.cpp - Driver input & temporary type information ------------===//
10 #include "clang/Driver/Types.h"
15 using namespace clang::driver;
16 using namespace clang::driver::types;
28 #include "clang/Driver/Types.def"
WindowsToolChain.cpp 13 #include "clang/Driver/Arg.h"
14 #include "clang/Driver/ArgList.h"
15 #include "clang/Driver/Compilation.h"
16 #include "clang/Driver/Driver.h"
17 #include "clang/Driver/Options.h"
30 using namespace clang::driver;
31 using namespace clang::driver::toolchains;
34 Windows::Windows(const Driver &D, const llvm::Triple& Triple,
Arg.cpp 10 #include "clang/Driver/Arg.h"
12 #include "clang/Driver/ArgList.h"
13 #include "clang/Driver/Option.h"
18 using namespace clang::driver;
Option.cpp 1 //===--- Option.cpp - Abstract Driver Options -----------------------------===//
10 #include "clang/Driver/Option.h"
11 #include "clang/Driver/Arg.h"
12 #include "clang/Driver/ArgList.h"
18 using namespace clang::driver;
  /external/freetype/src/truetype/
ttobjs.c 496 FT_TRACE2(( "TTF driver\n" ));
498 library = ttface->driver->root.library;
982 FT_Library library = face->root.driver->root.library;
1218 TT_Driver driver = (TT_Driver)ttdriver; local
1249 TT_Driver driver = (TT_Driver)ttdriver; local
    [all...]
ttinterp.h 258 /* now a _single_ execution context in the TrueType driver which is */
271 TT_New_Context( TT_Driver driver ); variable
  /external/quake/quake/src/WinQuake/
net.h 130 int driver; member in struct:qsocket_s
233 int driver; member in struct:__anon14579
net_loop.cpp 60 hostcache[0].driver = net_driverlevel;
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 218 status_t Loader::close(void* driver)
220 driver_t* hnd = (driver_t*)driver;
  /hardware/invensense/libsensors_iio/software/build/android/
common.mk 71 INV_INCLUDES = -I$(INV_ROOT)/software/core/driver/include
  /external/wpa_supplicant_8/src/ap/
wpa_auth_glue.c 18 #include "drivers/driver.h"
399 if (hapd->driver && hapd->driver->send_ether)
400 return hapd->driver->send_ether(hapd->drv_priv, dst,
552 "the kernel driver.");
569 (hapd->driver == NULL ||
570 hapd->driver->send_ether == NULL)) {
  /external/jpeg/
jmemdosa.asm 218 ; Get the address of the XMS driver, or NULL if not available
234 xor dx,dx ; no XMS driver available
237 xmsavail: mov ax,4310h ; fetch driver address with
279 call dword ptr [bp+6] ; call the driver
300 ; Have we got an EMS driver? (this comes straight from the EMS 4.0 specs)
360 int 67h ; call the EMS driver
  /external/qemu/distrib/jpeg-6b/
jmemdosa.asm 218 ; Get the address of the XMS driver, or NULL if not available
234 xor dx,dx ; no XMS driver available
237 xmsavail: mov ax,4310h ; fetch driver address with
279 call dword ptr [bp+6] ; call the driver
300 ; Have we got an EMS driver? (this comes straight from the EMS 4.0 specs)
360 int 67h ; call the EMS driver
  /external/qemu/
qemu-config.c 203 .implied_opt_name = "driver",
264 .name = "driver",
538 char driver[64], property[64]; local
542 rc = sscanf(str, "%63[^.].%63[^=]%n", driver, property, &offset);
549 qemu_opt_set(opts, "driver", driver);
  /external/clang/include/clang/Driver/
Driver.h 1 //===--- Driver.h - Clang GCC Compatible Driver -----------------*- C++ -*-===//
15 #include "clang/Driver/Phases.h"
16 #include "clang/Driver/Types.h"
17 #include "clang/Driver/Util.h"
28 namespace driver { namespace in namespace:clang
41 /// Driver - Encapsulate logic for constructing compilation processes
42 /// from a set of gcc-driver-like command line arguments.
43 class Driver {
56 /// The name the driver was invoked as
    [all...]

Completed in 1109 milliseconds

<<11121314151617181920