Home
last modified time | relevance | path

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

12345678910>>...20

/external/mesa3d/src/mesa/drivers/common/
Ddriverfuncs.c70 _mesa_init_driver_functions(struct dd_function_table *driver) in _mesa_init_driver_functions() argument
72 memset(driver, 0, sizeof(*driver)); in _mesa_init_driver_functions()
74 driver->GetString = NULL; /* REQUIRED! */ in _mesa_init_driver_functions()
75 driver->UpdateState = NULL; /* REQUIRED! */ in _mesa_init_driver_functions()
76 driver->GetBufferSize = NULL; /* REQUIRED! */ in _mesa_init_driver_functions()
77 driver->ResizeBuffers = _mesa_resize_framebuffer; in _mesa_init_driver_functions()
78 driver->Error = NULL; in _mesa_init_driver_functions()
80 driver->Finish = NULL; in _mesa_init_driver_functions()
81 driver->Flush = NULL; in _mesa_init_driver_functions()
84 driver->Clear = _swrast_Clear; in _mesa_init_driver_functions()
[all …]
/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 …]
/external/wpa_supplicant_8/src/ap/
Dap_drv_ops.h126 if (hapd->driver == NULL || in hostapd_drv_set_countermeasures()
127 hapd->driver->hapd_set_countermeasures == NULL) in hostapd_drv_set_countermeasures()
129 return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled); in hostapd_drv_set_countermeasures()
136 if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL) in hostapd_drv_set_sta_vlan()
138 return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname, in hostapd_drv_set_sta_vlan()
145 if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL) in hostapd_drv_get_inact_sec()
147 return hapd->driver->get_inact_sec(hapd->drv_priv, addr); in hostapd_drv_get_inact_sec()
153 if (hapd->driver == NULL || hapd->driver->sta_remove == NULL) in hostapd_drv_sta_remove()
155 return hapd->driver->sta_remove(hapd->drv_priv, addr); in hostapd_drv_sta_remove()
163 if (hapd->driver == NULL || hapd->driver->hapd_send_eapol == NULL) in hostapd_drv_hapd_send_eapol()
[all …]
Dap_drv_ops.c222 if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL) in hostapd_reset_ap_wps_ie()
225 return hapd->driver->set_ap_wps_ie(hapd->drv_priv, NULL, NULL, NULL); in hostapd_reset_ap_wps_ie()
234 if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL) in hostapd_set_ap_wps_ie()
241 ret = hapd->driver->set_ap_wps_ie(hapd->drv_priv, beacon, proberesp, in hostapd_set_ap_wps_ie()
331 if (hapd->driver == NULL || hapd->driver->set_wds_sta == NULL) in hostapd_set_wds_sta()
337 return hapd->driver->set_wds_sta(hapd->drv_priv, addr, aid, val, in hostapd_set_wds_sta()
345 if (hapd->driver == NULL || hapd->driver->add_sta_node == NULL) in hostapd_add_sta_node()
347 return hapd->driver->add_sta_node(hapd->drv_priv, addr, auth_alg); in hostapd_add_sta_node()
354 if (hapd->driver == NULL || hapd->driver->sta_auth == NULL) in hostapd_sta_auth()
356 return hapd->driver->sta_auth(hapd->drv_priv, hapd->own_addr, addr, in hostapd_sta_auth()
[all …]
/external/droiddriver/src/io/appium/droiddriver/scroll/
DStepBasedScroller.java81 protected UiElement scrollTo(DroidDriver driver, Finder containerFinder, Finder itemFinder, in scrollTo() argument
83 Logs.call(this, "scrollTo", driver, containerFinder, itemFinder, direction, scrollBack); in scrollTo()
91 return driver.getPoller() in scrollTo()
92 .pollFor(driver, itemFinder, Poller.EXISTS, perScrollTimeoutMillis); in scrollTo()
94 if (i < maxScrolls && !scrollStepStrategy.scroll(driver, containerFinder, direction)) { in scrollTo()
112 driver.on(containerFinder).scroll(direction.reverse()); in scrollTo()
119 public UiElement scrollTo(DroidDriver driver, Finder containerFinder, Finder itemFinder, in scrollTo() argument
122 scrollStepStrategy.beginScrolling(driver, containerFinder, itemFinder, direction); in scrollTo()
123 return scrollTo(driver, containerFinder, itemFinder, direction, false); in scrollTo()
125 scrollStepStrategy.endScrolling(driver, containerFinder, itemFinder, direction); in scrollTo()
[all …]
DForwardingScrollStepStrategy.java39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { in scroll() argument
40 return delegate().scroll(driver, containerFinder, direction); in scroll()
49 public void beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, in beginScrolling() argument
51 delegate().beginScrolling(driver, containerFinder, itemFinder, direction); in beginScrolling()
55 public void endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, in endScrolling() argument
57 delegate().endScrolling(driver, containerFinder, itemFinder, direction); in endScrolling()
/external/droiddriver/src/io/appium/droiddriver/helpers/
DDroidDriversInitializer.java27 private final DroidDriver driver; field in DroidDriversInitializer
29 private DroidDriversInitializer(DroidDriver driver) { in DroidDriversInitializer() argument
30 this.driver = driver; in DroidDriversInitializer()
35 DroidDrivers.setSingleton(driver); in run()
38 public static synchronized DroidDriversInitializer get(DroidDriver driver) { in get() argument
40 instance = new DroidDriversInitializer(driver); in get()
43 if (instance.driver != driver) { in get()
DDroidDrivers.java36 private static DroidDriver driver; field in DroidDrivers
42 if (driver == null) { in get()
45 return driver; in get()
51 public static void setSingleton(DroidDriver driver) { in setSingleton() argument
52 if (DroidDrivers.driver != null) { in setSingleton()
55 DroidDrivers.driver = driver; in setSingleton()
DScrollerHelper.java30 private final DroidDriver driver; field in ScrollerHelper
34 public ScrollerHelper(Scroller scroller, DroidDriver driver, Finder containerFinder) { in ScrollerHelper() argument
36 this.driver = driver; in ScrollerHelper()
50 return scroller.scrollTo(driver, containerFinder, itemFinder); in scrollTo()
64 return scroller.scrollTo(driver, containerFinder, itemFinder, direction); in scrollTo()
/external/mesa3d/src/gbm/backends/dri/
Ddriver_name.c44 char *driver = NULL; in dri_fd_get_driver_name() local
65 for (i = 0; driver_map[i].driver; i++) { in dri_fd_get_driver_name()
69 driver = strdup(driver_map[i].driver); in dri_fd_get_driver_name()
71 fd, vendor_id, chip_id, driver); in dri_fd_get_driver_name()
77 driver = strdup(driver_map[i].driver); in dri_fd_get_driver_name()
79 fd, vendor_id, chip_id, driver); in dri_fd_get_driver_name()
88 return driver; in dri_fd_get_driver_name()
/external/mesa3d/src/egl/main/
DREADME.txt9 calls into driver-specific functions.
11 2. Fallbacks for EGL API functions. A driver _could_ implement all the
19 When the apps calls eglOpenDisplay() a device driver is selected and loaded
22 The driver's _eglMain() function is then called. This driver function
29 driver->API.Initialize and driver->API.Terminate _must_ be implemented
30 with driver-specific code (no default/fallback function is possible).
34 to the driver->API.Initialize() function. Any additional driver
42 Certain EGL functions _must_ be implemented by the driver. This includes:
59 When eglTerminate() is called, the driver->API.Terminate() function is
60 called. The driver should clean up after itself. eglTerminate() will
[all …]
/external/droiddriver/src/io/appium/droiddriver/
DPoller.java34 void onTimeout(DroidDriver driver, Finder finder); in onTimeout() argument
44 void onPolling(DroidDriver driver, Finder finder); in onPolling() argument
76 T check(DroidDriver driver, Finder finder) throws UnsatisfiedConditionException; in check() argument
89 public UiElement check(DroidDriver driver, Finder finder) throws UnsatisfiedConditionException {
91 return driver.find(finder);
108 public Void check(DroidDriver driver, Finder finder) throws UnsatisfiedConditionException {
111 driver.find(finder);
130 <T> T pollFor(DroidDriver driver, Finder finder, ConditionChecker<T> checker); in pollFor() argument
138 <T> T pollFor(DroidDriver driver, Finder finder, ConditionChecker<T> checker, long timeoutMillis); in pollFor() argument
/external/clang/docs/
DDriverInternals.rst11 This document describes the Clang driver. The purpose of this document
12 is to describe both the motivation and design goals for the driver, as
18 The Clang driver is intended to be a production quality compiler driver
20 interface which is compatible with the gcc driver.
22 Although the driver is part of and driven by the Clang project, it is
31 The number one goal of the driver is to ease the adoption of Clang by
33 call GCC. Although this makes the driver much more complicated than
41 The driver was designed to be flexible and easily accommodate new uses
42 as we grow the clang and LLVM infrastructure. As one example, the driver
46 Similarly, most of the driver functionality is kept in a library which
[all …]
/external/mesa3d/src/egl/drivers/dri2/
Dcommon.c97 char *driver = NULL; in dri2_get_driver_for_fd() local
118 for (i = 0; driver_map[i].driver; i++) { in dri2_get_driver_for_fd()
122 driver = strdup(driver_map[i].driver); in dri2_get_driver_for_fd()
124 fd, vendor_id, chip_id, driver); in dri2_get_driver_for_fd()
130 driver = strdup(driver_map[i].driver); in dri2_get_driver_for_fd()
132 fd, vendor_id, chip_id, driver); in dri2_get_driver_for_fd()
141 return driver; in dri2_get_driver_for_fd()
/external/clang/lib/Tooling/
DCompilationDatabase.cpp115 void run(const driver::Action *A) { in run()
123 void runImpl(const driver::Action *A, bool Collect) { in runImpl()
126 case driver::Action::CompileJobClass: in runImpl()
130 case driver::Action::InputClass: { in runImpl()
132 const driver::InputAction *IA = cast<driver::InputAction>(A); in runImpl()
142 for (driver::ActionList::const_iterator I = A->begin(), E = A->end(); in runImpl()
217 std::unique_ptr<driver::Driver> NewDriver(new driver::Driver( in stripPositionalArgs()
246 const std::unique_ptr<driver::Compilation> Compilation( in stripPositionalArgs()
249 const driver::JobList &Jobs = Compilation->getJobs(); in stripPositionalArgs()
254 if (Job.getKind() == driver::Job::CommandClass) { in stripPositionalArgs()
[all …]
/external/toybox/toys/other/
Dlspci.c43 driver[256], *vbig = 0, *dbig = 0, **fields; local
54 *driver = 0;
56 if (readlinkat(dirfd, "driver", driver, sizeof(driver))) {};
105 goto driver;
113 driver:
114 if (*driver)
115 printf((toys.optflags & FLAG_m) ? " \"%s\"" : " %s", basename(driver));
/external/libdrm/freedreno/
DREADME1 Note that current msm kernel driver is a bit strange. It provides a
5 quite how I'd write a DRM driver, but at this stage it is useful for
6 xf86-video-freedreno and fdre (and eventual gallium driver) to be
7 able to work on existing kernel driver from QCOM, to allow to
10 The intention is that when there is a proper kernel driver, it will
12 driver and xf86-video-freedreno (ignoring the fbdev->KMS changes).
15 module or a DRM driver.. it is just an attempt to paper over a non-
16 standard kernel driver architecture.
/external/bison/examples/calc++/
Dcalc++-parser.yy13 %parse-param { calcxx_driver& driver }
14 %lex-param { calcxx_driver& driver }
20 @$.begin.filename = @$.end.filename = &driver.file;
34 # include "calc++-driver.hh"
50 unit: assignments exp { driver.result = $2; };
58 { driver.variables[*$1] = $3; delete $1; };
66 | "identifier" { $$ = driver.variables[*$1]; delete $1; }
74 driver.error (l, m);
Dcalc++.cc9 calcxx_driver driver; in main() local
12 driver.trace_parsing = true; in main()
14 driver.trace_scanning = true; in main()
15 else if (!driver.parse (argv[i])) in main()
16 std::cout << driver.result << std::endl; in main()
/external/clang/lib/Frontend/
DCreateInvocationFromCommandLine.cpp49 driver::Driver TheDriver("clang", llvm::sys::getDefaultTargetTriple(), in createInvocationFromCommandLine()
55 std::unique_ptr<driver::Compilation> C(TheDriver.BuildCompilation(Args)); in createInvocationFromCommandLine()
58 if (C->getArgs().hasArg(driver::options::OPT__HASH_HASH_HASH)) { in createInvocationFromCommandLine()
65 const driver::JobList &Jobs = C->getJobs(); in createInvocationFromCommandLine()
66 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) { in createInvocationFromCommandLine()
74 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin()); in createInvocationFromCommandLine()
/external/droiddriver/src/io/appium/droiddriver/base/
DDroidDriverContext.java31 private final BaseDroidDriver<R, E> driver; field in DroidDriverContext
34 public DroidDriverContext(Instrumentation instrumentation, BaseDroidDriver<R, E> driver) { in DroidDriverContext() argument
36 this.driver = driver; in DroidDriverContext()
45 return driver; in getDriver()
51 element = driver.newUiElement(rawElement, parent); in getElement()
DDefaultPoller.java60 public <T> T pollFor(DroidDriver driver, Finder finder, ConditionChecker<T> checker) { in pollFor() argument
61 return pollFor(driver, finder, checker, timeoutMillis); in pollFor()
65 public <T> T pollFor(DroidDriver driver, Finder finder, ConditionChecker<T> checker, in pollFor() argument
71 driver.refreshUiElementTree(); in pollFor()
78 return checker.check(driver, finder); in pollFor()
84 pollingListener.onPolling(driver, finder); in pollFor()
90 timeoutListener.onTimeout(driver, finder); in pollFor()
/external/pdfium/third_party/freetype/src/cff/
Dcffdrivr.c588 CFF_Driver driver = (CFF_Driver)module; in cff_property_set() local
611 driver->darken_params[0] = x1; in cff_property_set()
612 driver->darken_params[1] = y1; in cff_property_set()
613 driver->darken_params[2] = x2; in cff_property_set()
614 driver->darken_params[3] = y2; in cff_property_set()
615 driver->darken_params[4] = x3; in cff_property_set()
616 driver->darken_params[5] = y3; in cff_property_set()
617 driver->darken_params[6] = x4; in cff_property_set()
618 driver->darken_params[7] = y4; in cff_property_set()
632 driver->hinting_engine = *hinting_engine; in cff_property_set()
[all …]
/external/mesa3d/src/gallium/auxiliary/target-helpers/
Dinline_sw_helper.h24 sw_screen_create_named(struct sw_winsys *winsys, const char *driver) in sw_screen_create_named() argument
29 if (screen == NULL && strcmp(driver, "llvmpipe") == 0) in sw_screen_create_named()
46 const char *driver; in sw_screen_create() local
56 driver = debug_get_option("GALLIUM_DRIVER", default_driver); in sw_screen_create()
57 return sw_screen_create_named(winsys, driver); in sw_screen_create()
/external/freetype/src/cff/
Dcffdrivr.c665 CFF_Driver driver = (CFF_Driver)module; in cff_property_set() local
688 driver->darken_params[0] = x1; in cff_property_set()
689 driver->darken_params[1] = y1; in cff_property_set()
690 driver->darken_params[2] = x2; in cff_property_set()
691 driver->darken_params[3] = y2; in cff_property_set()
692 driver->darken_params[4] = x3; in cff_property_set()
693 driver->darken_params[5] = y3; in cff_property_set()
694 driver->darken_params[6] = x4; in cff_property_set()
695 driver->darken_params[7] = y4; in cff_property_set()
709 driver->hinting_engine = *hinting_engine; in cff_property_set()
[all …]

12345678910>>...20