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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/debug/
ScopedReplaceDriver.h 25 template <typename Driver>
29 std::unique_ptr<Driver> glDriver = std::make_unique<Driver>();
34 Driver& get() { return *mCurrentDriver; }
40 Driver* mCurrentDriver;
  /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
  /external/mesa3d/src/mesa/main/
barrier.c 42 _mesa_init_barrier_functions(struct dd_function_table *driver)
44 driver->TextureBarrier = _mesa_texture_barrier;
58 ctx->Driver.TextureBarrier(ctx);
66 if (ctx->Driver.MemoryBarrier)
67 ctx->Driver.MemoryBarrier(ctx, barriers);
82 if (ctx->Driver.MemoryBarrier) {
93 ctx->Driver.MemoryBarrier(ctx, all_allowed_bits);
108 ctx->Driver.MemoryBarrier(ctx, barriers);
124 ctx->Driver.BlendBarrier(ctx);
condrender.c 110 if (ctx->Driver.BeginConditionalRender)
111 ctx->Driver.BeginConditionalRender(ctx, q, mode);
127 if (ctx->Driver.EndConditionalRender)
128 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery);
143 * called via a new driver hook?
162 ctx->Driver.WaitQuery(ctx, q);
169 ctx->Driver.WaitQuery(ctx, q);
176 ctx->Driver.CheckQuery(ctx, q);
182 ctx->Driver.CheckQuery(ctx, q);
lines.c 78 if (ctx->Driver.LineWidth)
79 ctx->Driver.LineWidth(ctx, width);
92 * change flushes the vertices and notifies the driver via
113 if (ctx->Driver.LineStipple)
114 ctx->Driver.LineStipple( ctx, factor, pattern );
depth.c 89 if (ctx->Driver.DepthFunc)
90 ctx->Driver.DepthFunc( ctx, func );
113 if (ctx->Driver.DepthMask)
114 ctx->Driver.DepthMask( ctx, flag );
compute.c 47 ctx->Driver.DispatchCompute(ctx, num_groups);
61 ctx->Driver.DispatchComputeIndirect(ctx, indirect);
86 ctx->Driver.DispatchComputeGroupSize(ctx, num_groups, group_size);
objectpurge.c 70 if (ctx->Driver.BufferObjectPurgeable)
71 retval = ctx->Driver.BufferObjectPurgeable(ctx, bufObj, option);
99 if (ctx->Driver.RenderObjectPurgeable)
100 retval = ctx->Driver.RenderObjectPurgeable(ctx, bufObj, option);
128 if (ctx->Driver.TextureObjectPurgeable)
129 retval = ctx->Driver.TextureObjectPurgeable(ctx, bufObj, option);
210 if (ctx->Driver.BufferObjectUnpurgeable)
211 retval = ctx->Driver.BufferObjectUnpurgeable(ctx, bufObj, option);
240 if (ctx->Driver.RenderObjectUnpurgeable)
241 retval = ctx->Driver.RenderObjectUnpurgeable(ctx, bufObj, option)
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 73 _mesa_init_driver_functions(struct dd_function_table *driver)
75 memset(driver, 0, sizeof(*driver));
77 driver->GetString = NULL; /* REQUIRED! */
78 driver->UpdateState = NULL; /* REQUIRED! */
80 driver->Finish = NULL;
81 driver->Flush = NULL;
84 driver->Clear = _swrast_Clear;
85 driver->RasterPos = _mesa_RasterPos;
86 driver->DrawPixels = _swrast_DrawPixels
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vp_build.c 52 /* Tell the driver about the change. Could define a new target for
55 if (ctx->VertexProgram._Current != prev && ctx->Driver.BindProgram) {
56 ctx->Driver.BindProgram(ctx, GL_VERTEX_PROGRAM_ARB,
t_vb_render.c 36 * context->Driver.Render.*
86 tnl->Driver.Render.Points( ctx, start, count )
126 const tnl_line_func LineFunc = tnl->Driver.Render.Line; \
127 const tnl_triangle_func TriangleFunc = tnl->Driver.Render.Triangle; \
128 const tnl_quad_func QuadFunc = tnl->Driver.Render.Quad; \
134 #define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
135 #define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx )
157 tnl_render_func render_tris = tnl->Driver.Render.PrimTabElts[GL_TRIANGLES];
165 tnl->Driver.Render.PrimitiveNotify( ctx, GL_TRIANGLES );
197 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...]
  /external/mesa3d/src/egl/main/
egldriver.c 50 _EGLDriver *Driver;
70 * Load a module and create the driver object.
77 if (mod->Driver)
87 mod->Driver = drv;
99 /* destroy the driver */
100 if (mod->Driver && mod->Driver->Unload)
101 mod->Driver->Unload(mod->Driver);
103 mod->Driver = NULL
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Hash2DxeCrypto/
Hash2DxeCrypto.inf 35 Driver.h
36 Driver.c
  /external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
DeLorian.java 25 @Inject @Driver Provider<Person> driver; field in class:DeLorian
Driver.java 30 @interface Driver {
  /libcore/ojluni/src/main/java/java/sql/
Driver.java 31 * The interface that every driver class must implement.
34 * <P>Each driver should supply a class that implements
35 * the Driver interface.
39 * driver in turn to try to connect to the target URL.
41 * <P>It is strongly recommended that each Driver class should be
42 * small and standalone so that the Driver class can be loaded and
45 * <P>When a Driver class is loaded, it should create an instance of
47 * user can load and register a driver by calling
49 * <code>Class.forName("foo.bah.Driver")</code>
55 public interface Driver {
    [all...]
DriverManager.java 47 * attempt to load the driver classes referenced in the "jdbc.drivers"
52 * <CODE>jdbc.drivers=foo.bah.Driver:wombat.sql.Driver:bad.taste.ourDriver</CODE>
57 * include the file <code>META-INF/services/java.sql.Driver</code>. This file contains the name of the JDBC drivers
58 * implementation of <code>java.sql.Driver</code>. For example, to load the <code>my.sql.Driver</code> class,
59 * the <code>META-INF/services/java.sql.Driver</code> file would contain the entry:
61 * <code>my.sql.Driver</code>
70 * locate a suitable driver from amongst those loaded at
80 * @see Driver
605 final Driver driver; field in class:DriverInfo
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_state.c 506 ctx->Driver.AlphaFunc = nouveau_alpha_func;
507 ctx->Driver.BlendColor = nouveau_blend_color;
508 ctx->Driver.BlendEquationSeparate = nouveau_blend_equation_separate;
509 ctx->Driver.BlendFuncSeparate = nouveau_blend_func_separate;
510 ctx->Driver.ClipPlane = nouveau_clip_plane;
511 ctx->Driver.ColorMask = nouveau_color_mask;
512 ctx->Driver.ColorMaterial = nouveau_color_material;
513 ctx->Driver.CullFace = nouveau_cull_face;
514 ctx->Driver.FrontFace = nouveau_front_face;
515 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...]
  /external/mesa3d/src/gallium/targets/d3dadapter9/
description.c 245 /* fill in driver name and version */
251 strncpy(drvid->Driver, "igdumd32.dll", sizeof(drvid->Driver));
256 strncpy(drvid->Driver, "vm3dum.dll", sizeof(drvid->Driver));
261 strncpy(drvid->Driver, "atiumdag.dll", sizeof(drvid->Driver));
266 strncpy(drvid->Driver, "nvd3dum.dll", sizeof(drvid->Driver));
  /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...]

Completed in 807 milliseconds

1 2 3 4 5 6 7 8 91011>>