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

1 2 3 4 5 6

  /external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
thread_creator.h 17 void __nacl_register_thread_creator(const struct nacl_irt_ppapihook *hooks);
ppapi_plugin_start.c 62 struct nacl_irt_ppapihook hooks; local
63 if (sizeof(hooks) != query_func(NACL_IRT_PPAPIHOOK_v0_1,
64 &hooks, sizeof(hooks)))
65 fatal_error("PpapiPluginStart: PPAPI hooks not found\n");
67 __nacl_register_thread_creator(&hooks);
69 return hooks.ppapi_start(funcs);
thread_creator.c 49 void __nacl_register_thread_creator(const struct nacl_irt_ppapihook *hooks) {
50 hooks->ppapi_register_thread_creator(&thread_funcs);
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_main.cc 29 * the user's main code in the case that the PPAPI hooks are not found.
35 struct nacl_irt_ppapihook hooks; local
36 if (nacl_interface_query(NACL_IRT_PPAPIHOOK_v0_1, &hooks, sizeof(hooks)) ==
37 sizeof(hooks)) {
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_stub/
ppapi_main.c 88 void __nacl_register_thread_creator(const struct nacl_irt_ppapihook *hooks) {
89 hooks->ppapi_register_thread_creator(&thread_funcs);
93 struct nacl_irt_ppapihook hooks; local
94 if (sizeof(hooks) != __nacl_irt_query(NACL_IRT_PPAPIHOOK_v0_1,
95 &hooks, sizeof(hooks))) {
96 fatal_error("PpapiPluginStart: PPAPI hooks not found\n");
99 __nacl_register_thread_creator(&hooks);
100 return hooks.ppapi_start(funcs);
  /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/native/opengl/libs/
glestrace.h 22 #include "hooks.h"
26 /* Hooks to be called by "interesting" EGL functions. */
28 void GLTrace_eglMakeCurrent(unsigned version, gl_hooks_t *hooks, EGLContext c);
hooks.h 54 // GL / EGL hooks
88 gl_hooks_t const* hooks = tls_hooks[TLS_SLOT_OPENGL_API]; local
89 return hooks;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sqlite.py 7 factory, transactions, hooks, regression,
13 hooks.suite(), regression.suite(), dump.suite())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sqlite.py 7 factory, transactions, hooks, regression,
13 hooks.suite(), regression.suite(), dump.suite())
  /frameworks/native/opengl/libs/EGL/
egldefs.h 20 #include "../hooks.h"
42 gl_hooks_t * hooks[2]; member in struct:android::egl_connection_t
  /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 return create(c, hooks, null);
53 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks, boolean[] finished)
55 SSLEngine[] engines = connect(c, hooks, finished);
59 public static SSLEngine[] connect(TestSSLContext c, Hooks hooks) throws IOException
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
  /external/chromium_org/chrome/app/
close_handle_hook_win.cc 31 // Keeps track of all the hooks needed to intercept CloseHandle.
102 CloseHandleHooks* hooks = g_hooks.Pointer(); local
103 hooks->AddIATPatch(L"chrome.exe");
104 hooks->AddIATPatch(GetModuleName(GetChromeDLLModule()));
  /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
33 LOCAL_MODULE := dhcpcd-run-hooks
  /external/chromium_org/ppapi/tests/
test_audio.cc 27 void GetNaClIrtPpapiHook(struct nacl_irt_ppapihook* hooks) {
28 nacl_interface_query(NACL_IRT_PPAPIHOOK_v0_1, hooks, sizeof(*hooks));
58 nacl_irt_ppapihook hooks; local
59 GetNaClIrtPpapiHook(&hooks);
61 hooks.ppapi_register_thread_creator(&thread_functions);
67 // hooks.ppapi_register_thread_creator with default PP_ThreadFunctions
69 nacl_irt_ppapihook hooks = { NULL, ThreadFunctionsGetter }; local
70 __nacl_register_thread_creator(&hooks);
78 GetNaClIrtPpapiHook(&hooks);
87 nacl_irt_ppapihook hooks; local
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_context.cpp 176 const char* str = (const char*)hooks->gl.glGetString(GL_VERSION);
209 hooks->gl.glGetIntegerv(GL_VIEWPORT, viewport);
218 hooks->gl.glGetIntegerv(GL_FRAMEBUFFER_BINDING, &currentFb);
221 hooks->gl.glBindFramebuffer(GL_FRAMEBUFFER, 0);
226 hooks->gl.glReadPixels(viewport[0], viewport[1], viewport[2], viewport[3],
231 hooks->gl.glBindFramebuffer(GL_FRAMEBUFFER, currentFb);
gltrace_eglapi.cpp 22 #include "hooks.h"
177 void GLTrace_eglMakeCurrent(const unsigned version, gl_hooks_t *hooks, EGLContext c) {
191 traceContext->hooks = hooks;
gltrace_api.cpp 47 glContext->hooks->gl.glActiveTexture(texture);
81 glContext->hooks->gl.glAttachShader(program, shader);
121 glContext->hooks->gl.glBindAttribLocation(program, index, name);
156 glContext->hooks->gl.glBindBuffer(target, buffer);
190 glContext->hooks->gl.glBindFramebuffer(target, framebuffer);
224 glContext->hooks->gl.glBindRenderbuffer(target, renderbuffer);
258 glContext->hooks->gl.glBindTexture(target, texture);
304 glContext->hooks->gl.glBlendColor(red, green, blue, alpha);
332 glContext->hooks->gl.glBlendEquation(mode);
366 glContext->hooks->gl.glBlendEquationSeparate(modeRGB, modeAlpha)
    [all...]
  /libcore/luni/src/main/java/java/lang/
Runtime.java 263 Thread[] hooks; local
265 // create a copy of the hooks
266 hooks = new Thread[shutdownHooks.size()];
267 shutdownHooks.toArray(hooks);
270 // Start all shutdown hooks concurrently
271 for (Thread hook : hooks) {
275 // Wait for all shutdown hooks to finish
276 for (Thread hook : hooks) {
527 * registered shutdown hooks will be executed when the VM
534 * <p>Shutdown hooks are run concurrently and in an unspecified order. Hook
    [all...]
  /external/chromium_org/third_party/flot/
jquery.flot.crosshair.min.js 59 */(function(e){function n(e){function n(n){if(t.locked)return;t.x!=-1&&(t.x=-1,e.triggerRedrawOverlay())}function r(n){if(t.locked)return;if(e.getSelection&&e.getSelection()){t.x=-1;return}var r=e.offset();t.x=Math.max(0,Math.min(n.pageX-r.left,e.width())),t.y=Math.max(0,Math.min(n.pageY-r.top,e.height())),e.triggerRedrawOverlay()}var t={x:-1,y:-1,locked:!1};e.setCrosshair=function(r){if(!r)t.x=-1;else{var i=e.p2c(r);t.x=Math.max(0,Math.min(i.left,e.width())),t.y=Math.max(0,Math.min(i.top,e.height()))}e.triggerRedrawOverlay()},e.clearCrosshair=e.setCrosshair,e.lockCrosshair=function(r){r&&e.setCrosshair(r),t.locked=!0},e.unlockCrosshair=function(){t.locked=!1},e.hooks.bindEvents.push(function(e,t){if(!e.getOptions().crosshair.mode)return;t.mouseout(n),t.mousemove(r)}),e.hooks.drawOverlay.push(function(e,n){var r=e.getOptions().crosshair;if(!r.mode)return;var i=e.getPlotOffset();n.save(),n.translate(i.left,i.top);if(t.x!=-1){var s=e.getOptions().crosshair.lineWidth%2===0?0:.5;n.strokeStyle=r.color,n.lineWidth=r.lineWidth,n.lineJoin="round",n.beginPath();if(r.mode.indexOf("x")!=-1){var o=Math.round(t.x)+s;n.moveTo(o,0),n.lineTo(o,e.height())}if(r.mode.indexOf("y")!=-1){var u=Math.round(t.y)+s;n.moveTo(0,u),n.lineTo(e.width(),u)}n.stroke()}n.restore()}),e.hooks.shutdown.push(function(e,t){t.unbind("mouseout",n),t.unbind("mousemove",r)})}var t={crosshair:{mod (…)
jquery.flot.resize.min.js 19 */(function(e,t,n){function c(){s=t[o](function(){r.each(function(){var t=e(this),n=t.width(),r=t.height(),i=e.data(this,a);(n!==i.w||r!==i.h)&&t.trigger(u,[i.w=n,i.h=r])}),c()},i[f])}var r=e([]),i=e.resize=e.extend(e.resize,{}),s,o="setTimeout",u="resize",a=u+"-special-event",f="delay",l="throttleWindow";i[f]=250,i[l]=!0,e.event.special[u]={setup:function(){if(!i[l]&&this[o])return!1;var t=e(this);r=r.add(t),e.data(this,a,{w:t.width(),h:t.height()}),r.length===1&&c()},teardown:function(){if(!i[l]&&this[o])return!1;var t=e(this);r=r.not(t),t.removeData(a),r.length||clearTimeout(s)},add:function(t){function s(t,i,s){var o=e(this),u=e.data(this,a);u.w=i!==n?i:o.width(),u.h=s!==n?s:o.height(),r.apply(this,arguments)}if(!i[l]&&this[o])return!1;var r;if(e.isFunction(t))return r=t,s;r=t.handler,t.handler=s}}})(jQuery,this),function(e){function n(e){function t(){var t=e.getPlaceholder();if(t.width()==0||t.height()==0)return;e.resize(),e.setupGrid(),e.draw()}function n(e,n){e.getPlaceholder().resize(t)}function r(e,n){e.getPlaceholder().unbind("resize",t)}e.hooks.bindEvents.push(n),e.hooks.shutdown.push(r)}var t={};e.plot.plugins.push({init:n,options:t,name:"resize",version:"1.0"})}(jQu (…)

Completed in 4565 milliseconds

1 2 3 4 5 6