HomeSort by relevance Sort by last modified time
    Searched refs:Driver (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver2.java 20 import java.sql.Driver;
25 * Basic JDBC driver implementation to help with tests
30 Driver theDriver = new TestHelper_Driver2();
39 System.out.println("Failed to register driver!");
TestHelper_Driver5.java 20 import java.sql.Driver;
25 * Basic JDBC driver implementation to help with tests
30 Driver theDriver = new TestHelper_Driver5();
34 System.out.println("Failed to register driver!");
TestHelper_DriverManager.java 20 import java.sql.Driver;
27 * Helper class for the Driver manager tes - it allows the test code to be
33 static Driver testDriver = null;
46 public static void setDriver(Driver theDriver) {
48 // System.out.println("TestHelper_DriverManager: Test Driver set!");
51 } // end method setDriver( Driver )
60 Driver aDriver;
65 // Try to get a driver from the general pool... this should fail
68 fail("testDeregisterDriver: Didn't get exception when getting valid driver from other classloader.");
72 "testDeregisterDriver: Got exception when getting valid driver from other classloader."
    [all...]
TestHelper_Driver1.java 21 import java.sql.Driver;
28 * A simple implementation of a class implementing a JDBC Driver, for use in the
31 public class TestHelper_Driver1 implements Driver {
40 static Driver theDriver;
47 System.out.println("Failed to register driver!");
61 // driver
TestHelper_Driver4.java 21 import java.sql.Driver;
28 * Basic JDBC driver implementation to help with tests
30 public class TestHelper_Driver4 implements Driver {
40 Driver theDriver = new TestHelper_Driver4();
44 System.out.println("Failed to register driver!");
59 // driver
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 70 _mesa_init_driver_functions(struct dd_function_table *driver)
72 memset(driver, 0, sizeof(*driver));
74 driver->GetString = NULL; /* REQUIRED! */
75 driver->UpdateState = NULL; /* REQUIRED! */
76 driver->GetBufferSize = NULL; /* REQUIRED! */
77 driver->ResizeBuffers = _mesa_resize_framebuffer;
78 driver->Error = NULL;
80 driver->Finish = NULL;
81 driver->Flush = NULL
    [all...]
  /external/mesa3d/src/mesa/main/
texturebarrier.c 42 _mesa_init_texture_barrier_functions(struct dd_function_table *driver)
44 driver->TextureBarrier = _mesa_texture_barrier;
53 ctx->Driver.TextureBarrier(ctx);
condrender.c 84 if (ctx->Driver.BeginConditionalRender)
85 ctx->Driver.BeginConditionalRender(ctx, q, mode);
101 if (ctx->Driver.EndConditionalRender)
102 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery);
117 * called via a new driver hook?
136 ctx->Driver.WaitQuery(ctx, q);
143 ctx->Driver.CheckQuery(ctx, q);
lines.c 77 if (ctx->Driver.LineWidth)
78 ctx->Driver.LineWidth(ctx, width);
91 * change flushes the vertices and notifies the driver via
113 if (ctx->Driver.LineStipple)
114 ctx->Driver.LineStipple( ctx, factor, pattern );
polygon.c 50 * change, flushes the vertices and notifies the driver via
73 if (ctx->Driver.CullFace)
74 ctx->Driver.CullFace( ctx, mode );
86 * flushes the vertices and notifies the driver via
111 if (ctx->Driver.FrontFace)
112 ctx->Driver.FrontFace( ctx, mode );
126 * driver via the dd_function_table::PolygonMode callback.
183 if (ctx->Driver.PolygonMode)
184 ctx->Driver.PolygonMode(ctx, face, mode);
198 * ctx->Driver.PolygonStipple(). We'll have to update all the DRI driver
    [all...]
context.h 38 * These types should be encapsulated by corresponding device driver
42 * are base classes which the device driver must derive from.
212 if (ctx->Driver.NeedFlush & FLUSH_STORED_VERTICES) \
213 ctx->Driver.FlushVertices(ctx, FLUSH_STORED_VERTICES); \
231 if (ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT) \
232 ctx->Driver.FlushVertices(ctx, FLUSH_UPDATE_CURRENT); \
245 if (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) { \
259 if (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) { \
  /external/mesa3d/src/mesa/tnl/
t_vp_build.c 53 /* Tell the driver about the change. Could define a new target for
56 if (ctx->VertexProgram._Current != prev && ctx->Driver.BindProgram) {
57 ctx->Driver.BindProgram(ctx, GL_VERTEX_PROGRAM_ARB,
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...]
  /libcore/luni/src/test/java/libcore/java/sql/
DriverTest.java 23 import java.sql.Driver;
36 // Trigger the static initializer that will cause the driver to register itself with
42 Driver driver = getDriver(); local
43 assertTrue(driver instanceof JDBCDriver);
47 Driver driver = getDriver(); local
48 assertTrue(driver.acceptsURL(SQLITE_JDBC_URL));
60 Driver driver = getDriver() local
72 Driver driver = DriverManager.getDriver(SQLITE_JDBC_URL); local
    [all...]
  /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/mesa3d/src/mesa/vbo/
vbo_save.c 42 ctx->Driver.NewList = vbo_save_NewList;
43 ctx->Driver.EndList = vbo_save_EndList;
44 ctx->Driver.SaveFlushVertices = vbo_save_SaveFlushVertices;
45 ctx->Driver.BeginCallList = vbo_save_BeginCallList;
46 ctx->Driver.EndCallList = vbo_save_EndCallList;
47 ctx->Driver.NotifySaveBegin = vbo_save_NotifyBegin;
92 ctx->Driver.CurrentSavePrimitive = PRIM_UNKNOWN;
vbo_exec.c 56 ctx->Driver.NeedFlush = 0;
57 ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END;
58 ctx->Driver.BeginVertices = vbo_exec_BeginVertices;
59 ctx->Driver.FlushVertices = vbo_exec_FlushVertices;
104 * This is intended for use by driver back-ends in implementing the
  /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...]
nouveau_swtnl_t.c 320 tnl->Driver.RunPipeline = _tnl_run_pipeline;
321 tnl->Driver.Render.Interp = _tnl_interp;
322 tnl->Driver.Render.CopyPV = _tnl_copy_pv;
323 tnl->Driver.Render.ClippedPolygon = _tnl_RenderClippedPolygon;
324 tnl->Driver.Render.ClippedLine = _tnl_RenderClippedLine;
325 tnl->Driver.Render.BuildVertices = _tnl_build_vertices;
327 tnl->Driver.Render.Start = swtnl_start;
328 tnl->Driver.Render.Finish = swtnl_finish;
329 tnl->Driver.Render.PrimitiveNotify = swtnl_primitive;
330 tnl->Driver.Render.ResetLineStipple = swtnl_reset_stipple
    [all...]
nv04_render.c 267 tnl->Driver.RunPipeline = _tnl_run_pipeline;
268 tnl->Driver.Render.Interp = _tnl_interp;
269 tnl->Driver.Render.CopyPV = _tnl_copy_pv;
270 tnl->Driver.Render.ClippedPolygon = _tnl_RenderClippedPolygon;
271 tnl->Driver.Render.ClippedLine = _tnl_RenderClippedLine;
272 tnl->Driver.Render.BuildVertices = _tnl_build_vertices;
274 tnl->Driver.Render.Start = swtnl_start;
275 tnl->Driver.Render.Finish = swtnl_finish;
276 tnl->Driver.Render.PrimitiveNotify = swtnl_primitive;
277 tnl->Driver.Render.ResetLineStipple = swtnl_reset_stipple
    [all...]
  /external/clang/lib/
Makefile 13 FrontendTool Tooling Driver Format Edit Rewrite Serialization \
  /external/clang/unittests/
Makefile 17 PARALLEL_DIRS = CodeGen Basic Lex Driver Format ASTMatchers AST Tooling \
  /external/mesa3d/src/mesa/swrast_setup/
ss_context.c 180 * Called via tnl->Driver.Render.Start.
212 * We patch this function into tnl->Driver.Render.Finish.
236 tnl->Driver.Render.Start = _swsetup_RenderStart;
237 tnl->Driver.Render.Finish = _swsetup_RenderFinish;
238 tnl->Driver.Render.PrimitiveNotify = _swsetup_RenderPrimitive;
239 tnl->Driver.Render.Interp = _tnl_interp;
240 tnl->Driver.Render.CopyPV = _tnl_copy_pv;
241 tnl->Driver.Render.ClippedPolygon = _tnl_RenderClippedPolygon; /* new */
242 tnl->Driver.Render.ClippedLine = _tnl_RenderClippedLine; /* new */
247 tnl->Driver.Render.PrimTabVerts = _tnl_render_tab_verts
    [all...]
  /external/mesa3d/src/egl/main/
egldriver.c 60 _EGLDriver *Driver;
139 * Open the named driver and find its bootstrap function: _eglMain().
175 _eglLog(_EGL_WARNING, "Could not open driver %s (%s)",
194 * Load a module and create the driver object.
203 if (mod->Driver)
224 _eglLog(_EGL_WARNING, "Driver loaded from %s has no name", mod->Path);
229 mod->Driver = drv;
242 /* destroy the driver */
243 if (mod->Driver && mod->Driver->Unload
    [all...]

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011