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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2007-01-06-KNR-Proto.c 4 int svc_register (void (*dispatch) (int));
6 int svc_register (dispatch)
7 void (*dispatch) ();
  /frameworks/rs/cpp/
rsCppInternal.h 22 #define tryDispatch(rs, dispatch) \
24 dispatch; \
27 #define createDispatch(rs, dispatch) \
28 rs->getError() == RS_SUCCESS ? dispatch : NULL
RenderScript.cpp 37 dispatchTable* RS::dispatch = NULL; member in class:RS
57 RS::dispatch->ContextDeinitToClient(mContext);
62 RS::dispatch->ContextDestroy(mContext);
64 RS::dispatch->DeviceDestroy(mDev);
75 RS::dispatch->AllocationGetType = (AllocationGetTypeFnPtr)dlsym(handle, "rsaAllocationGetType");
76 if (RS::dispatch->AllocationGetType == NULL) {
77 ALOGE("Couldn't initialize RS::dispatch->AllocationGetType");
80 RS::dispatch->TypeGetNativeData = (TypeGetNativeDataFnPtr)dlsym(handle, "rsaTypeGetNativeData");
81 if (RS::dispatch->TypeGetNativeData == NULL) {
82 ALOGE("Couldn't initialize RS::dispatch->TypeGetNativeData")
440 RS::dispatch = new dispatchTable; member in class:RS
    [all...]
ScriptC.cpp 27 mID = RS::dispatch->ScriptCCreate(rs->getContext(), cachedName, cachedNameLength,
Script.cpp 26 tryDispatch(mRS, RS::dispatch->ScriptInvokeV(mRS->getContext(), getID(), slot, v, len));
36 tryDispatch(mRS, RS::dispatch->ScriptForEach(mRS->getContext(), getID(), slot, in_id, out_id, usr, usrLen, NULL, 0));
45 tryDispatch(mRS, RS::dispatch->ScriptBindAllocation(mRS->getContext(), getID(), BaseObj::getObjID(va), slot));
50 tryDispatch(mRS, RS::dispatch->ScriptSetVarObj(mRS->getContext(), getID(), index, (o == NULL) ? 0 : o->getID()));
54 tryDispatch(mRS, RS::dispatch->ScriptSetVarV(mRS->getContext(), getID(), index, v, len));
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi.c 62 _glapi_set_dispatch(struct _glapi_table *dispatch)
64 u_current_set((const struct mapi_table *) dispatch);
  /external/mesa3d/src/mapi/glapi/
glapi.c 62 _glapi_set_dispatch(struct _glapi_table *dispatch)
64 u_current_set((const struct mapi_table *) dispatch);
  /external/e2fsprogs/ext2ed/
ext2_com.c 38 sprintf (buffer,"setoffset %ld",file_system_info.super_block_offset);dispatch (buffer);
39 sprintf (buffer,"settype ext2_super_block");dispatch (buffer);
67 dispatch ("super");dispatch ("group");dispatch ("inode");dispatch ("next");dispatch ("dir");
69 sprintf (temp,"cd %s",buffer+1);dispatch (temp);
94 sprintf (buffer,"setoffset %ld",file_system_info.first_group_desc_offset);dispatch (buffer);
95 sprintf (buffer,"settype ext2_group_desc");dispatch (buffer)
    [all...]
group_com.c 34 dispatch (buffer);
50 dispatch (buffer);
73 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
74 strcpy (buffer,"show");dispatch (buffer);
102 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
103 strcpy (buffer,"show");dispatch (buffer);
141 sprintf (buffer,"setoffset block %ld",inode_offset);dispatch (buffer);
142 sprintf (buffer,"settype ext2_inode");dispatch (buffer);
155 sprintf (buffer,"setoffset block %ld",block_bitmap_offset);dispatch (buffer);
156 sprintf (buffer,"settype block_bitmap");dispatch (buffer)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBEventDispatcher.h 42 static bool dispatch(Event*, Vector<RefPtr<EventTarget> >&); // The target first and then its ancestors in order of how the event bubbles.
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_noop.h 39 _mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch);
  /external/mesa3d/src/mesa/vbo/
vbo_noop.h 39 _mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch);
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
Dispatcher.java 26 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; method in class:Dispatcher
  /external/compiler-rt/BlocksRuntime/tests/
rdar6414583.c 12 #include <dispatch/dispatch.h>
rdar6405500.c 11 #import <dispatch/dispatch.h>
dispatch_async.c 9 #include <dispatch/dispatch.h>
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_dispatch.py 33 """Tests for dispatch module."""
41 from mod_pywebsocket import dispatch namespace
53 """A unittest for dispatch module."""
57 dispatch._normalize_path('/a/b'))
59 dispatch._normalize_path('\\a\\b'))
61 dispatch._normalize_path('/a/c/../b'))
63 dispatch._normalize_path('abc'))
66 converter = dispatch._create_path_to_resource_converter('/a/b')
76 converter = dispatch._create_path_to_resource_converter('a/b')
77 self.assertEqual('/h', converter(dispatch._normalize_path
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Microtask.cpp 50 anyWorkDone = CustomElementCallbackDispatcher::instance().dispatch();
EventDispatchMediator.cpp 52 return dispatcher->dispatch();
  /external/openssh/
dispatch.c 1 /* $OpenBSD: dispatch.c,v 1.22 2008/10/31 15:05:34 stevesk Exp $ */
36 #include "dispatch.h"
42 dispatch_fn *dispatch[DISPATCH_MAX]; variable
65 dispatch[i] = dflt;
75 dispatch[i] = fn;
81 dispatch[type] = fn;
97 if (type > 0 && type < DISPATCH_MAX && dispatch[type] != NULL)
98 (*dispatch[type])(type, seqnr, ctxt);
  /external/guava/guava/src/com/google/common/eventbus/
AsyncEventBus.java 25 * dispatch events, allowing dispatch to occur asynchronously.
39 * Creates a new AsyncEventBus that will use {@code executor} to dispatch
43 * @param executor Executor to use to dispatch events. It is the caller's
53 * Creates a new AsyncEventBus that will use {@code executor} to dispatch
56 * @param executor Executor to use to dispatch events. It is the caller's
70 * Dispatch {@code events} in the order they were posted, regardless of
81 dispatch(eventWithHandler.event, eventWithHandler.handler); method
86 * Calls the {@link #executor} to dispatch {@code event} to {@code handler}.
89 protected void dispatch(final Object event, final EventHandler handler) method in class:AsyncEventBus
    [all...]
  /external/chromium_org/base/mac/
libdispatch_task_runner.h 8 #include <dispatch/dispatch.h>
18 // to PostTask() and friends to a dispatch queue, while being reusable as a
22 // needs a dispatch_queue_t for use in a system API. This ensures all dispatch
26 // underlying dispatch queue are released.
37 // Starts a new serial dispatch queue with a given name.
52 // This blocks the calling thread until all work on the dispatch queue has
58 // Returns the dispatch queue associated with this task runner, for use with
59 // system APIs that take dispatch queues. The caller is responsible for
  /external/chromium_org/third_party/WebKit/Source/wtf/
ParallelJobsLibdispatch.h 33 #include <dispatch/dispatch.h>
  /frameworks/support/v4/eclair/android/support/v4/view/
KeyEventCompatEclair.java 28 public static boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, method in class:KeyEventCompatEclair
30 return event.dispatch(receiver, (KeyEvent.DispatcherState)state, target);
  /external/clang/lib/AST/
DumpXML.cpp 62 #define DISPATCH(NAME, CLASS) \
65 void dispatch(Decl *D) { function in struct:__anon17511::XMLDeclVisitor
71 DISPATCH(dispatch##DERIVED##DeclAttrs, DERIVED##Decl); \
73 DISPATCH(dispatch##DERIVED##DeclChildren, DERIVED##Decl); \
74 DISPATCH(dispatch##DERIVED##DeclAsContext, DERIVED##Decl); \
82 void dispatch##DERIVED##DeclAttrs(DERIVED##Decl *D) { \
83 DISPATCH(dispatch##BASE##Attrs, BASE);
121 void dispatch(Type *T) { function in struct:__anon17511::XMLTypeVisitor
308 void dispatch(const TemplateArgument &A) { function in struct:__anon17511::XMLDumper
349 void dispatch(const TemplateArgumentLoc &A) { function in struct:__anon17511::XMLDumper
382 void dispatch(Decl *D) { function in struct:__anon17511::XMLDumper
515 void dispatch(CXXCtorInitializer *Init) { function in struct:__anon17511::XMLDumper
884 void dispatch(TypeLoc TL) { function in struct:__anon17511::XMLDumper
888 void dispatch(QualType T) { function in struct:__anon17511::XMLDumper
1028 void dispatch(Stmt *S) { function in struct:__anon17511::XMLDumper
    [all...]

Completed in 735 milliseconds

1 2 3 4 5 6 7 8 91011>>