HomeSort by relevance Sort by last modified time
    Searched refs:driver (Results 26 - 50 of 1221) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/connectivity/shill/vpn/
mock_vpn_service.cc 25 VPNDriver* driver)
26 : VPNService(control, dispatcher, metrics, manager, driver) {}
  /external/droiddriver/src/io/appium/droiddriver/scroll/
StepBasedScroller.java 81 protected UiElement scrollTo(DroidDriver driver, Finder containerFinder, Finder itemFinder,
83 Logs.call(this, "scrollTo", driver, containerFinder, itemFinder, direction, scrollBack);
91 return driver.getPoller()
92 .pollFor(driver, itemFinder, Poller.EXISTS, perScrollTimeoutMillis);
94 if (i < maxScrolls && !scrollStepStrategy.scroll(driver, containerFinder, direction)) {
112 driver.on(containerFinder).scroll(direction.reverse());
119 public UiElement scrollTo(DroidDriver driver, Finder containerFinder, Finder itemFinder,
122 scrollStepStrategy.beginScrolling(driver, containerFinder, itemFinder, direction);
123 return scrollTo(driver, containerFinder, itemFinder, direction, false);
125 scrollStepStrategy.endScrolling(driver, containerFinder, itemFinder, direction)
    [all...]
ForwardingScrollStepStrategy.java 39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) {
40 return delegate().scroll(driver, containerFinder, direction);
49 public void beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder,
51 delegate().beginScrolling(driver, containerFinder, itemFinder, direction);
55 public void endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder,
57 delegate().endScrolling(driver, containerFinder, itemFinder, direction);
ScrollStepStrategy.java 32 * @param driver a DroidDriver instance
37 boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction);
48 * @param driver a DroidDriver instance
53 void beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder,
60 * @param driver a DroidDriver instance
65 void endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder,
  /external/wpa_supplicant_8/src/ap/
ap_drv_ops.c 2 * hostapd - Driver operations
210 if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL)
213 return hapd->driver->set_ap_wps_ie(hapd->drv_priv, NULL, NULL, NULL);
222 if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL)
229 ret = hapd->driver->set_ap_wps_ie(hapd->drv_priv, beacon, proberesp,
319 if (hapd->driver == NULL || hapd->driver->set_wds_sta == NULL)
325 return hapd->driver->set_wds_sta(hapd->drv_priv, addr, aid, val
    [all...]
  /external/autotest/client/site_tests/desktopui_SetFieldsWithChromeDriver/
desktopui_SetFieldsWithChromeDriver.py 15 """Test setting a text field via Chrome Driver."""
42 driver = chromedriver_instance.driver
43 driver.get(self._test_url)
45 self._expected_title, driver.title)
46 if driver.title != self._expected_title:
48 % driver.title)
50 element = driver.find_element_by_id(self._element_id)
  /external/droiddriver/src/io/appium/droiddriver/helpers/
DroidDrivers.java 31 * required, but it is handy and using a singleton driver can avoid memory leak when you have many
36 private static DroidDriver driver; field in class:DroidDrivers
39 * Gets the singleton driver. Throws if {@link #setSingleton} has not been called.
42 if (driver == null) {
45 return driver;
49 * Sets the singleton driver.
51 public static void setSingleton(DroidDriver driver) {
52 if (DroidDrivers.driver != null) {
55 DroidDrivers.driver = driver;
    [all...]
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 10 // Construct a compiler invocation object for command line driver arguments
16 #include "clang/Driver/Compilation.h"
17 #include "clang/Driver/Driver.h"
18 #include "clang/Driver/Action.h"
19 #include "clang/Driver/Options.h"
20 #include "clang/Driver/Tool.h"
44 // FIXME: Find a cleaner way to force the driver into restricted modes.
48 driver::Driver TheDriver(Args[0], llvm::sys::getDefaultTargetTriple()
    [all...]
  /external/clang/include/clang/Driver/
Phases.h 1 //===--- Phases.h - Transformations on Driver Types -------------*- C++ -*-===//
14 namespace driver { namespace in namespace:clang
34 } // end namespace driver
  /external/clang/lib/Driver/
Phases.cpp 1 //===--- Phases.cpp - Transformations on Driver Types ---------------------===//
10 #include "clang/Driver/Phases.h"
14 using namespace clang::driver;
DriverOptions.cpp 1 //===--- DriverOptions.cpp - Driver Options Table -------------------------===//
10 #include "clang/Driver/Options.h"
15 using namespace clang::driver;
16 using namespace clang::driver::options;
20 #include "clang/Driver/Options.inc"
28 #include "clang/Driver/Options.inc"
42 OptTable *clang::driver::createDriverOptTable() {
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_public.h 37 /* This is the driver interface required by the glx/xlib state tracker.
45 xmesa_set_driver( const struct xm_driver *driver );
  /external/autotest/client/site_tests/desktopui_UrlFetchWithChromeDriver/
desktopui_UrlFetchWithChromeDriver.py 15 """Test fetching url and cookie using Chrome Driver."""
49 driver = chromedriver_instance.driver
50 driver.delete_all_cookies()
51 driver.get(self._test_url)
54 self._expected_title, driver.title)
55 if driver.title != self._expected_title:
57 % driver.title)
60 driver.get_cookies()
  /external/mesa3d/src/mesa/main/
queryobj.h 46 _mesa_init_query_object_functions(struct dd_function_table *driver);
60 _mesa_init_query_object_functions(struct dd_function_table *driver)
  /external/toybox/toys/other/
lspci.c 15 -k Print kernel driver
43 driver[256], *vbig = 0, *dbig = 0, **fields; local
53 // it's ok for the driver link not to be there, whatever fortify says
54 *driver = 0;
56 if (readlinkat(dirfd, "driver", driver, sizeof(driver))) {};
105 goto driver;
113 driver:
114 if (*driver)
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/base/
DroidDriverContext.java 31 private final BaseDroidDriver<R, E> driver; field in class:DroidDriverContext
34 public DroidDriverContext(Instrumentation instrumentation, BaseDroidDriver<R, E> driver) {
36 this.driver = driver;
45 return driver;
51 element = driver.newUiElement(rawElement, parent);
  /frameworks/native/services/inputflinger/host/
InputDriver.cpp 285 result.appendFormat(INDENT2 "HAL Input Driver (%s)\n", mName.string());
297 auto driver = static_cast<InputDriverInterface*>(host); local
298 return driver->createDeviceIdentifier(name, product_id, vendor_id, bus, unique_id);
302 auto driver = static_cast<InputDriverInterface*>(host); local
303 return driver->createDeviceDefinition();
307 auto driver = static_cast<InputDriverInterface*>(host); local
308 return driver->createInputReportDefinition();
312 auto driver = static_cast<InputDriverInterface*>(host); local
313 return driver->createOutputReportDefinition();
317 auto driver = static_cast<InputDriverInterface*>(host) local
323 auto driver = static_cast<InputDriverInterface*>(host); local
329 auto driver = static_cast<InputDriverInterface*>(host); local
336 auto driver = static_cast<InputDriverInterface*>(host); local
343 auto driver = static_cast<InputDriverInterface*>(host); local
349 auto driver = static_cast<InputDriverInterface*>(host); local
354 auto driver = static_cast<InputDriverInterface*>(host); local
359 auto driver = static_cast<InputDriverInterface*>(host); local
365 auto driver = static_cast<InputDriverInterface*>(host); local
371 auto driver = static_cast<InputDriverInterface*>(host); local
376 auto driver = static_cast<InputDriverInterface*>(host); local
382 auto driver = static_cast<InputDriverInterface*>(host); local
388 auto driver = static_cast<InputDriverInterface*>(host); local
393 auto driver = static_cast<InputDriverInterface*>(host); local
398 auto driver = static_cast<InputDriverInterface*>(host); local
403 auto driver = static_cast<InputDriverInterface*>(host); local
408 auto driver = static_cast<InputDriverInterface*>(host); local
    [all...]
  /external/autotest/client/cros/
webstore_test.py 127 but they can also use the driver directly if they need to.
191 self.driver = chromedriver_instance.driver
192 self.driver.implicitly_wait(15)
193 self._wait = WebDriverWait(self.driver, 20)
222 self.driver.get(self.webstore_url)
223 self.driver.get(self.detail_page(item_id))
238 self.driver.find_element_by_xpath(button_xpath).click()
240 password_field = self.driver.find_element_by_xpath(
243 self.driver.find_element_by_xpath('//input[@id="signIn"]').click(
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
common.c 97 char *driver = NULL; local
118 for (i = 0; driver_map[i].driver; i++) {
122 driver = strdup(driver_map[i].driver);
123 _eglLog(_EGL_DEBUG, "pci id for %d: %04x:%04x, driver %s",
124 fd, vendor_id, chip_id, driver);
130 driver = strdup(driver_map[i].driver);
131 _eglLog(_EGL_DEBUG, "pci id for %d: %04x:%04x, driver %s",
132 fd, vendor_id, chip_id, driver);
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
XMLGroupVisitorTest.java 41 private ReportStructureTestDriver driver; field in class:XMLGroupVisitorTest
51 driver = new ReportStructureTestDriver();
56 driver.sendBundle(handler);
64 driver.sendGroup(handler);
72 driver.sendBundle(handler);
  /frameworks/native/vulkan/libvulkan/
api.h 22 #include "driver.h"
39 return driver::GetData(instance).opaque_api_data;
43 return driver::GetData(physical_dev).opaque_api_data;
47 return driver::GetData(dev).opaque_api_data;
51 return driver::GetData(queue).opaque_api_data;
55 return driver::GetData(cmd).opaque_api_data;
  /external/droiddriver/manualtest/src/io/appium/droiddriver/manualtest/
ManualTest.java 40 driver.on(password_edit).setText(oldPassword);
41 driver.on(password_edit).setText(newPassword);
44 // assertEquals(newPassword, driver.on(password_edit).getText());
45 assertEquals(null, driver.on(password_edit).getText());
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
pygram.py 11 from .pgen2 import driver namespace
32 python_grammar = driver.load_grammar(_GRAMMAR_FILE)
39 pattern_grammar = driver.load_grammar(_PATTERN_GRAMMAR_FILE)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
pygram.py 11 from .pgen2 import driver namespace
32 python_grammar = driver.load_grammar(_GRAMMAR_FILE)
39 pattern_grammar = driver.load_grammar(_PATTERN_GRAMMAR_FILE)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
pygram.py 11 from .pgen2 import driver namespace
32 python_grammar = driver.load_grammar(_GRAMMAR_FILE)
39 pattern_grammar = driver.load_grammar(_PATTERN_GRAMMAR_FILE)

Completed in 1725 milliseconds

12 3 4 5 6 7 8 91011>>