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

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/sql/
DriverManager.java 58 private static final List<Driver> theDrivers = new ArrayList<Driver>(10);
88 // Load the driver class
105 * Removes a driver from the {@code DriverManager}'s registered driver list.
106 * This will only succeed when the caller's class loader loaded the driver
107 * that is to be removed. If the driver was loaded by a different class
108 * loader, the removal of the driver fails silently.
111 * driver in the future when asked to get a {@code Connection}.
113 * @param driver
    [all...]
Driver.java 23 * An interface to a JDBC driver. Instances are returned by {@link DriverManager}.
25 * <p>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.
33 public interface Driver {
36 * Returns whether the driver thinks that it can open a connection to the
41 * @return {@code true} if the driver thinks that is can open a connection
43 * driver will respond {@code true} if it thinks that it can handle
44 * the subprotocol specified by the driver.
69 * Gets the driver's major version number
    [all...]
  /external/wpa_supplicant_8/src/ap/
ap_drv_ops.c 2 * hostapd - Driver operations
12 #include "drivers/driver.h"
214 if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL)
221 ret = hapd->driver->set_ap_wps_ie(hapd->drv_priv, beacon, proberesp,
304 if (hapd->driver == NULL || hapd->driver->set_wds_sta == NULL)
310 return hapd->driver->set_wds_sta(hapd->drv_priv, addr, aid, val,
318 if (hapd->driver == NULL || hapd->driver->add_sta_node == NULL
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_DriverManager.java 20 import java.sql.Driver;
27 * Helper class for the Driver manager tes - it allows the test code to be
34 static Driver testDriver = null;
47 public static void setDriver(Driver theDriver) {
49 // System.out.println("TestHelper_DriverManager: Test Driver set!");
52 } // end method setDriver( Driver )
61 Driver aDriver;
66 // Try to get a driver from the general pool... this should fail
69 fail("testDeregisterDriver: Didn't get exception when getting valid driver from other classloader.");
73 "testDeregisterDriver: Got exception when getting valid driver from other classloader."
    [all...]
  /external/chromium/net/data/ftp/
dir-listing-netware-2 3 d [RWCEAFMS] Admin 512 Nov 13 07:51 Driver
  /external/chromium_org/net/data/ftp/
dir-listing-netware-2 3 d [RWCEAFMS] Admin 512 Nov 13 07:51 Driver
  /external/chromium_org/third_party/mesa/src/docs/
subset.html 5 <title>Mesa Subset Driver</title>
10 <h1>Mesa Subset Driver</h1>
14 driver for an embedded environment. The result is a reduced-size DRI driver
  /external/chromium_org/ui/gl/
gl_osmesa_api_implementation.cc 50 void OSMESAApiBase::InitializeBase(DriverOSMESA* driver) {
51 driver_ = driver;
60 void RealOSMESAApi::Initialize(DriverOSMESA* driver) {
61 InitializeBase(driver);
  /external/mesa3d/docs/
subset.html 5 <title>Mesa Subset Driver</title>
10 <h1>Mesa Subset Driver</h1>
14 driver for an embedded environment. The result is a reduced-size DRI driver
  /external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/
driver_name.c 44 char *driver = NULL; local
65 for (i = 0; driver_map[i].driver; i++) {
69 driver = strdup(driver_map[i].driver);
70 _gbm_log("pci id for %d: %04x:%04x, driver %s",
71 fd, vendor_id, chip_id, driver);
77 driver = strdup(driver_map[i].driver);
78 _gbm_log("pci id for %d: %04x:%04x, driver %s",
79 fd, vendor_id, chip_id, driver);
    [all...]
  /external/mesa3d/src/gbm/backends/dri/
driver_name.c 44 char *driver = NULL; local
65 for (i = 0; driver_map[i].driver; i++) {
69 driver = strdup(driver_map[i].driver);
70 _gbm_log("pci id for %d: %04x:%04x, driver %s",
71 fd, vendor_id, chip_id, driver);
77 driver = strdup(driver_map[i].driver);
78 _gbm_log("pci id for %d: %04x:%04x, driver %s",
79 fd, vendor_id, chip_id, driver);
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_none.c 2 * Driver interface for RADIUS server or WPS ER only (no driver)
12 #include "driver.h"
29 "driver data");
60 "driver data");
86 .desc = "no driver (RADIUS server/WPS ER)",
  /external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
webdriver_tab_backend.py 27 self._browser_backend.driver.switch_to_window(self._window_handle)
28 return self._browser_backend.driver.current_url
35 self._browser_backend.driver.switch_to_window(self._window_handle)
36 self._browser_backend.driver.close()
53 self._browser_backend.driver.switch_to_window(self._window_handle)
54 snap = self._browser_backend.driver.get_screenshot_as_base64()
79 self._browser_backend.driver.switch_to_window(self._window_handle)
81 self._browser_backend.driver.set_page_load_timeout(timeout * 1000)
82 self._browser_backend.driver.get(url)
87 self._browser_backend.driver.switch_to_window(self._window_handle
    [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/Options.h"
19 #include "clang/Driver/Tool.h"
45 // FIXME: Find a cleaner way to force the driver into restricted modes.
49 driver::Driver TheDriver("clang", llvm::sys::getDefaultTargetTriple(),
55 OwningPtr<driver::Compilation> C(TheDriver.BuildCompilation(Args))
    [all...]
  /art/compiler/llvm/
compiler_llvm.cc 23 #include "driver/compiler_driver.h"
24 #include "driver/dex_compilation_unit.h"
38 void CompileOneMethod(CompilerDriver& driver,
109 CompilerLLVM::CompilerLLVM(CompilerDriver* driver, InstructionSet insn_set)
110 : compiler_driver_(driver), insn_set_(insn_set),
176 inline static art::llvm::CompilerLLVM* ContextOf(art::CompilerDriver& driver) {
177 void *compiler_context = driver.GetCompilerContext();
182 inline static const art::llvm::CompilerLLVM* ContextOf(const art::CompilerDriver& driver) {
183 void *compiler_context = driver.GetCompilerContext();
188 extern "C" void ArtInitCompilerContext(art::CompilerDriver& driver) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
NOTES 9 mesa and it's own driver interface. It knows nothing about the tnl or
16 be plugged in to the core Mesa driver interface where accelerated
28 values based on the current state. For this to work, the driver
44 overriding these functions. It is necessary for the driver to be very
46 rasterization function in feedback mode. See the X11 driver for
49 DRIVER INTERFACE
51 The swrast device driver provides swrast primarily with span- and
  /external/clang/lib/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/mesa/swrast/
NOTES 9 mesa and it's own driver interface. It knows nothing about the tnl or
16 be plugged in to the core Mesa driver interface where accelerated
28 values based on the current state. For this to work, the driver
44 overriding these functions. It is necessary for the driver to be very
46 rasterization function in feedback mode. See the X11 driver for
49 DRIVER INTERFACE
51 The swrast device driver provides swrast primarily with span- and
  /art/compiler/
compiled_method.cc 18 #include "driver/compiler_driver.h"
119 CompiledMethod::CompiledMethod(CompilerDriver& driver,
128 : CompiledCode(&driver, instruction_set, code), frame_size_in_bytes_(frame_size_in_bytes),
130 mapping_table_(driver.DeduplicateMappingTable(mapping_table)),
131 vmap_table_(driver.DeduplicateVMapTable(vmap_table)),
132 gc_map_(driver.DeduplicateGCMap(native_gc_map)) {
135 CompiledMethod::CompiledMethod(CompilerDriver& driver,
141 : CompiledCode(&driver, instruction_set, code),
144 mapping_table_ = driver.DeduplicateMappingTable(std::vector<uint8_t>());
145 vmap_table_ = driver.DeduplicateVMapTable(std::vector<uint8_t>())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_state.c 516 ctx->Driver.AlphaFunc = nouveau_alpha_func;
517 ctx->Driver.BlendColor = nouveau_blend_color;
518 ctx->Driver.BlendEquationSeparate = nouveau_blend_equation_separate;
519 ctx->Driver.BlendFuncSeparate = nouveau_blend_func_separate;
520 ctx->Driver.ClipPlane = nouveau_clip_plane;
521 ctx->Driver.ColorMask = nouveau_color_mask;
522 ctx->Driver.ColorMaterial = nouveau_color_material;
523 ctx->Driver.CullFace = nouveau_cull_face;
524 ctx->Driver.FrontFace = nouveau_front_face;
525 ctx->Driver.DepthFunc = nouveau_depth_func
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_render.c 36 * context->Driver.Render.*
84 tnl->Driver.Render.Points( ctx, start, count )
124 const tnl_line_func LineFunc = tnl->Driver.Render.Line; \
125 const tnl_triangle_func TriangleFunc = tnl->Driver.Render.Triangle; \
126 const tnl_quad_func QuadFunc = tnl->Driver.Render.Quad; \
132 #define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
133 #define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx )
155 tnl_render_func render_tris = tnl->Driver.Render.PrimTabElts[GL_TRIANGLES];
163 tnl->Driver.Render.PrimitiveNotify( ctx, GL_TRIANGLES );
195 tnl->Driver.Render.Points( ctx, start, count
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_state.c 516 ctx->Driver.AlphaFunc = nouveau_alpha_func;
517 ctx->Driver.BlendColor = nouveau_blend_color;
518 ctx->Driver.BlendEquationSeparate = nouveau_blend_equation_separate;
519 ctx->Driver.BlendFuncSeparate = nouveau_blend_func_separate;
520 ctx->Driver.ClipPlane = nouveau_clip_plane;
521 ctx->Driver.ColorMask = nouveau_color_mask;
522 ctx->Driver.ColorMaterial = nouveau_color_material;
523 ctx->Driver.CullFace = nouveau_cull_face;
524 ctx->Driver.FrontFace = nouveau_front_face;
525 ctx->Driver.DepthFunc = nouveau_depth_func
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_render.c 36 * context->Driver.Render.*
84 tnl->Driver.Render.Points( ctx, start, count )
124 const tnl_line_func LineFunc = tnl->Driver.Render.Line; \
125 const tnl_triangle_func TriangleFunc = tnl->Driver.Render.Triangle; \
126 const tnl_quad_func QuadFunc = tnl->Driver.Render.Quad; \
132 #define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
133 #define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx )
155 tnl_render_func render_tris = tnl->Driver.Render.PrimTabElts[GL_TRIANGLES];
163 tnl->Driver.Render.PrimitiveNotify( ctx, GL_TRIANGLES );
195 tnl->Driver.Render.Points( ctx, start, count
    [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 */

Completed in 686 milliseconds

12 3 4 5 6 7 8 91011>>