/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" 255 cnx->hooks[GLESv1_INDEX] = &gHooks[GLESv1_INDEX][IMPL_SOFTWARE]; 256 cnx->hooks[GLESv2_INDEX] = &gHooks[GLESv2_INDEX][IMPL_SOFTWARE]; 265 cnx->hooks[GLESv1_INDEX] = &gHooks[GLESv1_INDEX][IMPL_HARDWARE]; 266 cnx->hooks[GLESv2_INDEX] = &gHooks[GLESv2_INDEX][IMPL_HARDWARE]; 313 gl_hooks_t const* hooks = tls_hooks[TLS_SLOT_OPENGL_API]; local 314 if (hooks) return hooks; 325 gl_hooks_t const* hooks = static_cast<gl_hooks_t*>(pthread_getspecific(gGLWrapperKey)); local 326 if (hooks) return hooks [all...] |
/external/llvm/tools/llvmc/examples/mcc16/ |
Hooks.cpp | 29 namespace hooks { namespace
|
/external/bluetooth/glib/glib/ |
ghook.h | 70 GHook *hooks; member in struct:_GHookList 153 /* GHookCompareFunc implementation to insert hooks sorted by their id */ 159 /* invoke all valid hooks with the (*GHookFunc) signature. 163 /* invoke all valid hooks with the (*GHookCheckFunc) signature, 168 /* invoke a marshaller on all valid hooks.
|
/external/llvm/tools/llvmc/src/ |
Hooks.cpp | 6 namespace hooks { namespace
|
/frameworks/base/opengl/libs/GLES2_dbg/test/ |
test_main.cpp | 19 #include "hooks.h" 29 gl_hooks_t hooks; member in class:__anon15422::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_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_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...] |
/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/GLES2_dbg/src/ |
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,
|
/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/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 */
|
/development/tools/emulator/system/qemud/ |
qemud.c | 338 LoopHook* hooks; member in struct:__anon1375 349 l->hooks = NULL; 357 xfree(l->hooks); 371 LoopHook* hook = l->hooks; 390 xrenew( l->hooks, new_max ); 396 LoopHook* hook = l->hooks + n; 416 hook = l->hooks + l->num_fds; 524 /* mark all pending hooks */ 531 /* execute hook callbacks. this may change the 'hooks' 534 LoopHook* hook = l->hooks + n [all...] |
/libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/ |
NativeCryptoTest.java | 456 public static class Hooks { 494 private final Hooks hooks; field in class:NativeCryptoTest.TestSSLHandshakeCallbacks 497 Hooks hooks) { 499 this.hooks = hooks; 537 if (hooks != null ) { 538 hooks.clientCertificateRequested(sslNativePointer); 553 public static class ServerHooks extends Hooks { [all...] |
/sdk/emulator/qemud/ |
qemud.c | 338 LoopHook* hooks; member in struct:__anon25410 349 l->hooks = NULL; 357 xfree(l->hooks); 371 LoopHook* hook = l->hooks; 390 xrenew( l->hooks, new_max ); 396 LoopHook* hook = l->hooks + n; 416 hook = l->hooks + l->num_fds; 524 /* mark all pending hooks */ 531 /* execute hook callbacks. this may change the 'hooks' 534 LoopHook* hook = l->hooks + n [all...] |
/system/core/adb/ |
sysdeps_win32.c | 802 * - it allows us to implement fdevent hooks easily and cheaply, something 1356 EventHook hooks; member in struct:EventLooperRec_ [all...] |
/prebuilt/windows/swt/ |
swt.jar | |
/prebuilt/windows-x86_64/swt/ |
swt.jar | |
/prebuilt/darwin-x86/swt/ |
swt.jar | |
/prebuilt/darwin-x86_64/swt/ |
swt.jar | |
/prebuilt/linux-x86/swt/ |
swt.jar | |
/prebuilt/linux-x86_64/swt/ |
swt.jar | |