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

1 2 3

  /device/samsung/crespo/
asound.conf 34 type hooks
40 hooks.0 {
49 type hooks
55 hooks.0 {
65 type hooks
71 hooks.0 {
82 type hooks
88 hooks.0 {
99 type hooks
105 hooks.0
    [all...]
  /external/dhcpcd/dhcpcd-hooks/
Makefile 5 SCRIPTSDIR= ${LIBEXECDIR}/dhcpcd-hooks
17 ${INSTALL} -d /tmp/${DISTPREFIX}/dhcpcd-hooks
18 ${INSTALL} -m ${NONBINMODE} ${SCRIPTS} /tmp/${DISTPREFIX}/dhcpcd-hooks
  /frameworks/base/opengl/libs/
glesv2dbg.h 26 DbgContext* CreateDbgContext(const unsigned version, const gl_hooks_t * const hooks);
  /frameworks/base/opengl/libs/GLES2_dbg/src/
caller.cpp 110 dbg->hooks->gl.glActiveTexture(
114 dbg->hooks->gl.glAttachShader(
119 dbg->hooks->gl.glBindAttribLocation(
125 dbg->hooks->gl.glBindBuffer(
130 dbg->hooks->gl.glBindFramebuffer(
135 dbg->hooks->gl.glBindRenderbuffer(
140 dbg->hooks->gl.glBindTexture(
145 dbg->hooks->gl.glBlendColor(
151 dbg->hooks->gl.glBlendEquation(
155 dbg->hooks->gl.glBlendEquationSeparate
    [all...]
dbgcontext.cpp 32 DbgContext::DbgContext(const unsigned version, const gl_hooks_t * const hooks,
35 , version(version), hooks(hooks)
57 DbgContext* CreateDbgContext(const unsigned version, const gl_hooks_t * const hooks)
65 assert(GL_NO_ERROR == hooks->gl.glGetError());
67 hooks->gl.glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &MAX_VERTEX_ATTRIBS);
68 DbgContext* dbg = new DbgContext(version, hooks, MAX_VERTEX_ATTRIBS);
80 hooks->gl.glGetIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &MAX_COMBINED_TEXTURE_IMAGE_UNITS);
244 while (GLenum error = hooks->gl.glGetError())
252 hooks->gl.glGetProgramiv(program, GL_ACTIVE_ATTRIBUTES, &activeAttributes)
    [all...]
egl.cpp 40 dbg->hooks->gl.glGetIntegerv(GL_VIEWPORT, viewport);
43 dbg->hooks->gl.glReadPixels(viewport[0], viewport[1], viewport[2],
api.h 21 dbg->hooks->gl.glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, readData); \
vertex.cpp 56 dbg->hooks->gl.glDrawArrays(mode, first, count);
74 dbg->hooks->gl.glGetIntegerv(GL_VIEWPORT, viewport);
166 dbg->hooks->gl.glDrawElements(mode, count, type, indices);
184 dbg->hooks->gl.glGetIntegerv(GL_VIEWPORT, viewport);
caller.h 142 dbg->hooks->gl.glGetProgramiv(cmd.arg0(), cmd.arg1(), &params);
153 dbg->hooks->gl.glGetProgramInfoLog(cmd.arg0(), bufSize, &length, dbg->GetBuffer());
171 dbg->hooks->gl.glGetShaderiv(cmd.arg0(), cmd.arg1(), &params);
182 dbg->hooks->gl.glGetShaderInfoLog(cmd.arg0(), bufSize, &length, dbg->GetBuffer());
288 dbg->hooks->gl.glShaderSource(cmd.arg0(), 1, &string, NULL);
header.h 31 #include "hooks.h"
88 const gl_hooks_t * const hooks; member in struct:android::DbgContext
125 DbgContext(const unsigned version, const gl_hooks_t * const hooks,
  /external/dbus/
autogen.sh 16 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
18 cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit
19 chmod -c +x .git/hooks/pre-commit
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 45 public static TestSSLEnginePair create(Hooks hooks) throws IOException {
46 return create(TestSSLContext.create(), hooks);
49 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks) throws IOException {
50 SSLEngine[] engines = connect(c, hooks);
62 Hooks hooks) throws IOException {
63 if (hooks == null) {
64 hooks = new Hooks()
    [all...]
  /frameworks/base/opengl/libs/EGL/
egldefs.h 20 #include "hooks.h"
49 gl_hooks_t * hooks[2]; member in struct:android::egl_connection_t
egl.cpp 41 #include "hooks.h"
259 cnx->hooks[GLESv1_INDEX] = &gHooks[GLESv1_INDEX][IMPL_SOFTWARE];
260 cnx->hooks[GLESv2_INDEX] = &gHooks[GLESv2_INDEX][IMPL_SOFTWARE];
269 cnx->hooks[GLESv1_INDEX] = &gHooks[GLESv1_INDEX][IMPL_HARDWARE];
270 cnx->hooks[GLESv2_INDEX] = &gHooks[GLESv2_INDEX][IMPL_HARDWARE];
317 gl_hooks_t const* hooks = tls_hooks[TLS_SLOT_OPENGL_API]; local
318 if (hooks) return hooks;
329 gl_hooks_t const* hooks = static_cast<gl_hooks_t*>(pthread_getspecific(gGLWrapperKey)); local
330 if (hooks) return hooks
    [all...]
  /external/dhcpcd/
Makefile 15 SCRIPT= ${LIBEXECDIR}/dhcpcd-run-hooks
16 HOOKDIR= ${LIBEXECDIR}/dhcpcd-hooks
19 MAN8= dhcpcd.8 dhcpcd-run-hooks.8
20 CLEANFILES= dhcpcd.conf.5 dhcpcd.8 dhcpcd-run-hooks.8
22 SCRIPTS= dhcpcd-run-hooks
24 CLEANFILES+= dhcpcd-run-hooks
30 SUBDIRS= dhcpcd-hooks
125 cd dhcpcd-hooks; ${MAKE} DISTPREFIX=${DISTPREFIX} $@
dhcpcd-run-hooks 4 # Handy variables and functions for our hooks to use
18 /system/etc/dhcpcd/dhcpcd-hooks/* \
Android.mk 5 hooks_dir := dhcpcd-hooks
37 LOCAL_MODULE := dhcpcd-run-hooks
  /frameworks/base/opengl/libs/GLES2_dbg/test/
test_server.cpp 19 #include "hooks.h"
88 gl_hooks_t hooks; local
113 hooks.gl.glGetError = HookMock::GetError;
114 hooks.gl.glGetIntegerv = HookMock::GetIntegerv;
115 DbgContext * const dbg = CreateDbgContext(1, &hooks);
145 gl_hooks_t hooks; member in class:ServerFileContextTest
154 dbg = new DbgContext(1, &hooks, 32);
156 for (unsigned int i = 0; i < sizeof(hooks) / sizeof(void *); i++)
157 ((void **)&hooks)[i] = reinterpret_cast<void *>(glNoop);
test_main.cpp 19 #include "hooks.h"
29 gl_hooks_t hooks; member in class:__anon15615::DbgContextTest
32 : dbg(1, &hooks, 32) {
34 hooks.gl.glGetError = GetError;
220 hooks.gl.glGetProgramiv = GL::GetProgramiv;
221 hooks.gl.glGetAttribLocation = GL::GetAttribLocation;
222 hooks.gl.glGetActiveAttrib = GL::GetActiveAttrib;
test_socket.cpp 22 #include "hooks.h"
35 gl_hooks_t hooks; member in class:SocketContextTest
47 dbg = new DbgContext(1, &hooks, 32);
49 for (unsigned int i = 0; i < sizeof(hooks) / sizeof(void *); i++)
50 ((void **)&hooks)[i] = (void *)glNoop;
199 hooks.gl.glCreateShader = caller.CreateShader;
200 hooks.gl.glCreateProgram = caller.CreateProgram;
267 hooks.gl.glCreateShader = caller.CreateShader;
268 hooks.gl.glCreateProgram = caller.CreateProgram;
358 hooks.gl.glTexImage2D = caller.TexImage2D
    [all...]
  /external/webkit/Source/WebKit/chromium/
DEPS 193 hooks = [
  /libcore/luni/src/main/java/java/lang/
Runtime.java 260 Thread[] hooks; local
262 // create a copy of the hooks
263 hooks = new Thread[shutdownHooks.size()];
264 shutdownHooks.toArray(hooks);
267 // Start all shutdown hooks concurrently
268 for (Thread hook : hooks) {
272 // Wait for all shutdown hooks to finish
273 for (Thread hook : hooks) {
508 * registered shutdown hooks will be executed when the VM
515 * <p>Shutdown hooks are run concurrently and in an unspecified order. Hook
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
extutil.h 158 XExtensionHooks* /* hooks */,
189 #define XEXT_GENERATE_FIND_DISPLAY(proc,extinfo,extname,hooks,nev,data) \
195 dpyinfo = XextAddDisplay (extinfo,dpy,extname,hooks,nev,data); \
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
extutil.h 129 XExtensionHooks* /* hooks */,
155 #define XEXT_GENERATE_FIND_DISPLAY(proc,extinfo,extname,hooks,nev,data) \
161 dpyinfo = XextAddDisplay (extinfo,dpy,extname,hooks,nev,data); \
  /external/kernel-headers/original/linux/netfilter/
x_tables.h 192 unsigned int hooks; member in struct:xt_match
199 /* Registration hooks for targets. */
218 hook_mask is a bitmask of hooks from which it can be
240 unsigned int hooks; member in struct:xt_target
255 /* What hooks you will enter on */

Completed in 2286 milliseconds

1 2 3