HomeSort by relevance Sort by last modified time
    Searched refs:dispatch (Results 1 - 25 of 521) 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) ();
  /external/vulkan-validation-layers/demos/smoke/
generate-dispatch-table.py 18 """Generate Vulkan dispatch table.
30 def __init__(self, name, dispatch):
32 self.dispatch = dispatch
49 dispatch = c[dispatch_begin:dispatch_end]
50 if not dispatch.startswith("Vk"):
51 dispatch = None
53 return cls(name, dispatch)
56 if self.dispatch:
57 if self.dispatch in ["VkDevice", "VkQueue", "VkCommandBuffer"]
    [all...]
  /frameworks/rs/cpp/
rsCppInternal.h 26 #define tryDispatch(rs, dispatch) \
28 dispatch; \
31 #define createDispatch(rs, dispatch) \
32 rs->getError() == RS_SUCCESS ? (dispatch) : nullptr
  /external/mesa3d/src/hgl/
GLDispatcher.cpp 19 * NOTE: this file portion implements C-based dispatch of the OpenGL entrypoints
30 #define DISPATCH(func, args, msg) \
31 const struct _glapi_table* dispatch; \
32 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
33 (dispatch->func) args
36 const struct _glapi_table* dispatch; \
37 dispatch = _glapi_Dispatch ? _glapi_Dispatch : _glapi_get_dispatch();\
38 return (dispatch->func) args
  /external/mesa3d/src/mapi/glapi/
glapi.c 61 _glapi_set_dispatch(struct _glapi_table *dispatch)
63 u_current_set_table((const struct mapi_table *) dispatch);
  /external/mesa3d/src/mesa/vbo/
vbo_noop.h 37 _mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch);
  /external/e2fsprogs/ext2ed/
ext2_com.c 39 sprintf (buffer,"setoffset %ld",file_system_info.super_block_offset);dispatch (buffer);
40 sprintf (buffer,"settype ext2_super_block");dispatch (buffer);
68 dispatch ("super");dispatch ("group");dispatch ("inode");dispatch ("next");dispatch ("dir");
70 sprintf (temp,"cd %s",buffer+1);dispatch (temp);
95 sprintf (buffer,"setoffset %ld",file_system_info.first_group_desc_offset);dispatch (buffer);
96 sprintf (buffer,"settype ext2_group_desc");dispatch (buffer)
    [all...]
group_com.c 35 dispatch (buffer);
51 dispatch (buffer);
74 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
75 strcpy (buffer,"show");dispatch (buffer);
103 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
104 strcpy (buffer,"show");dispatch (buffer);
142 sprintf (buffer,"setoffset block %ld",inode_offset);dispatch (buffer);
143 sprintf (buffer,"settype ext2_inode");dispatch (buffer);
156 sprintf (buffer,"setoffset block %ld",block_bitmap_offset);dispatch (buffer);
157 sprintf (buffer,"settype block_bitmap");dispatch (buffer)
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
rdar6414583.c 12 #include <dispatch/dispatch.h>
rdar6405500.c 11 #import <dispatch/dispatch.h>
dispatch_async.c 9 #include <dispatch/dispatch.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dispatch.h 7 #warning Your code should include oleauto.h instead of dispatch.h
  /external/python/cpython3/Tools/parser/
unparse.py 35 self.dispatch(tree)
56 def dispatch(self, tree): member in class:Unparser
60 self.dispatch(t)
75 self.dispatch(stmt)
80 self.dispatch(tree.value)
84 interleave(lambda: self.write(", "), self.dispatch, t.names)
92 interleave(lambda: self.write(", "), self.dispatch, t.names)
97 self.dispatch(target)
99 self.dispatch(t.value)
103 self.dispatch(t.target
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
unparse.py 35 self.dispatch(tree)
56 def dispatch(self, tree): member in class:Unparser
60 self.dispatch(t)
75 self.dispatch(stmt)
80 self.dispatch(tree.value)
84 interleave(lambda: self.write(", "), self.dispatch, t.names)
96 interleave(lambda: self.write(", "), self.dispatch, t.names)
101 self.dispatch(target)
103 self.dispatch(t.value)
107 self.dispatch(t.target)
    [all...]
  /external/python/cpython2/Demo/parser/
unparse.py 35 self.dispatch(tree)
56 def dispatch(self, tree): member in class:Unparser
60 self.dispatch(t)
75 self.dispatch(stmt)
80 self.dispatch(tree.value)
84 interleave(lambda: self.write(", "), self.dispatch, t.names)
96 interleave(lambda: self.write(", "), self.dispatch, t.names)
101 self.dispatch(target)
103 self.dispatch(t.value)
107 self.dispatch(t.target
    [all...]
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
Dispatcher.java 26 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; method in class:Dispatcher
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
Dispatcher.java 24 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; method in class:Dispatcher
  /frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
ScreenLifecycle.java 44 dispatch(Observer::onScreenTurningOn);
49 dispatch(Observer::onScreenTurnedOn);
54 dispatch(Observer::onScreenTurningOff);
59 dispatch(Observer::onScreenTurnedOff);
WakefulnessLifecycle.java 48 dispatch(Observer::onStartedWakingUp);
56 dispatch(Observer::onFinishedWakingUp);
64 dispatch(Observer::onStartedGoingToSleep);
72 dispatch(Observer::onFinishedGoingToSleep);
  /frameworks/support/lifecycle/runtime/src/main/java/androidx/lifecycle/
ReportFragment.java 75 dispatch(Lifecycle.Event.ON_CREATE);
82 dispatch(Lifecycle.Event.ON_START);
89 dispatch(Lifecycle.Event.ON_RESUME);
95 dispatch(Lifecycle.Event.ON_PAUSE);
101 dispatch(Lifecycle.Event.ON_STOP);
107 dispatch(Lifecycle.Event.ON_DESTROY);
112 private void dispatch(Lifecycle.Event event) { method in class:ReportFragment
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_regunreg_svc_register/
rpc_svc_register.c 40 void dispatch(struct svc_req *request, SVCXPRT * xprt);
63 !svc_register(svcr, progNum, VERSNUM, dispatch, IPPROTO_TCP);
78 void dispatch(struct svc_req *request, SVCXPRT * xprt) function
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_regunreg_svc_unregister/
rpc_svc_unregister.c 40 void dispatch(struct svc_req *request, SVCXPRT * xprt);
61 svc_register(svcr, progNum, VERSNUM, dispatch, IPPROTO_TCP);
82 void dispatch(struct svc_req *request, SVCXPRT * xprt) function
  /frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/
TunerCallback.java 77 private void dispatch(RunnableThrowingRemoteException func) { method in class:TunerCallback
107 dispatch(() -> mClientCallback.onError(status)); method
118 dispatch(() -> mClientCallback.onConfigurationChanged(config)); method
123 dispatch(() -> mClientCallback.onCurrentProgramInfoChanged(info)); method
128 dispatch(() -> mClientCallback.onTrafficAnnouncement(active)); method
133 dispatch(() -> mClientCallback.onEmergencyAnnouncement(active)); method
138 dispatch(() -> mClientCallback.onAntennaState(connected)); method
143 dispatch(() -> mClientCallback.onBackgroundScanAvailabilityChange(isAvailable)); method
148 dispatch(() -> mClientCallback.onBackgroundScanComplete()); method
153 dispatch(() -> mClientCallback.onProgramListChanged()) method
170 dispatch(() -> mClientCallback.onProgramListUpdated(chunk)); method
175 dispatch(() -> mClientCallback.onProgramListUpdated(chunk)); method
    [all...]
  /frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
TunerCallback.java 44 static void dispatch(RunnableThrowingRemoteException func) { method in class:TunerCallback
54 dispatch(() -> mClientCb.onTuneFailed(result, Convert.programSelectorFromHal(selector))); method
59 dispatch(() -> mClientCb.onCurrentProgramInfoChanged(Convert.programInfoFromHal(info))); method
64 dispatch(() -> mClientCb.onProgramListUpdated(Convert.programListChunkFromHal(chunk))); method
69 dispatch(() -> mClientCb.onAntennaState(connected)); method
74 dispatch(() -> mClientCb.onParametersUpdated(Convert.vendorInfoFromHal(parameters))); method
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
LifecycleTest.java 53 mLifecycle.dispatch(mDispatchedObjects::add);
63 mLifecycle.dispatch(mDispatchedObjects::add);
69 public void dispatch() throws Exception { method in class:LifecycleTest
73 mLifecycle.dispatch(mDispatchedObjects::add);

Completed in 1455 milliseconds

1 2 3 4 5 6 7 8 91011>>