/external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/ |
thread_creator.h | 13 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/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())
|
/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/native/opengl/libs/EGL/ |
egldefs.h | 20 #include "../hooks.h" 42 gl_hooks_t * hooks[2]; member in struct:android::egl_connection_t
|
/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/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 35 LOCAL_MODULE := dhcpcd-run-hooks
|
/frameworks/native/opengl/libs/GLES_trace/src/ |
gltrace_context.cpp | 176 hooks->gl.glGetIntegerv(GL_VIEWPORT, viewport); 185 hooks->gl.glGetIntegerv(GL_FRAMEBUFFER_BINDING, ¤tFb); 188 hooks->gl.glBindFramebuffer(GL_FRAMEBUFFER, 0); 193 hooks->gl.glReadPixels(viewport[0], viewport[1], viewport[2], viewport[3], 198 hooks->gl.glBindFramebuffer(GL_FRAMEBUFFER, currentFb);
|
gltrace_api.cpp | 48 glContext->hooks->gl.glActiveTexture(texture); 82 glContext->hooks->gl.glAttachShader(program, shader); 122 glContext->hooks->gl.glBindAttribLocation(program, index, name); 157 glContext->hooks->gl.glBindBuffer(target, buffer); 191 glContext->hooks->gl.glBindFramebuffer(target, framebuffer); 225 glContext->hooks->gl.glBindRenderbuffer(target, renderbuffer); 259 glContext->hooks->gl.glBindTexture(target, texture); 305 glContext->hooks->gl.glBlendColor(red, green, blue, alpha); 333 glContext->hooks->gl.glBlendEquation(mode); 367 glContext->hooks->gl.glBlendEquationSeparate(modeRGB, modeAlpha) [all...] |
gltrace_eglapi.cpp | 22 #include "hooks.h" 177 void GLTrace_eglMakeCurrent(const unsigned version, gl_hooks_t *hooks, EGLContext c) { 191 traceContext->hooks = hooks;
|
/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) { 520 * registered shutdown hooks will be executed when the VM 527 * <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 (…)
|
/build/target/product/ |
base.mk | 31 dhcpcd-run-hooks \
|
/external/qemu/distrib/sdl-1.2.15/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); \
|
/external/skia/tools/ |
roll_autogen.sh | 21 pushd ${LOCAL_CLONE}/hooks > /dev/null
|
/prebuilts/gcc/linux-x86/host/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); \
|