| /external/parameter-framework/asio-1.10.6/include/asio/impl/ |
| io_service.hpp | 71 io_service::dispatch(ASIO_MOVE_ARG(CompletionHandler) handler) 81 impl_.dispatch(init.handler);
|
| /external/vulkan-validation-layers/loader/ |
| debug_report.c | 309 if (!icd_term->dispatch.CreateDebugReportCallbackEXT) { 313 res = icd_term->dispatch.CreateDebugReportCallbackEXT(icd_term->instance, pCreateInfo, pAllocator, &icd_info[storage_idx]); 356 if (NULL == icd_term->dispatch.DestroyDebugReportCallbackEXT) { 361 icd_term->dispatch.DestroyDebugReportCallbackEXT(icd_term->instance, icd_info[storage_idx], pAllocator); 401 if (NULL == icd_term->dispatch.DestroyDebugReportCallbackEXT) { 406 icd_term->dispatch.DestroyDebugReportCallbackEXT(icd_term->instance, icd_info[storage_idx], pAllocator); 432 if (icd_term->dispatch.DebugReportMessageEXT != NULL) { 433 icd_term->dispatch.DebugReportMessageEXT(icd_term->instance, flags, objType, object, location, msgCode, pLayerPrefix,
|
| /external/mesa3d/src/mapi/glapi/gen/ |
| gl_apitemp.py | 48 self.undef_list.append( "DISPATCH" ) 89 dispatch = "RETURN_DISPATCH" 91 dispatch = "DISPATCH" 110 % (dispatch, f.name, name) 113 % (dispatch, f.name, p_string, name, t_string, o_string) 129 * DISPATCH(func, args, msg) - code to do dispatch of named function. 131 * RETURN_DISPATCH(func, args, msg) - code to do dispatch with a return value 137 * #define DISPATCH(func, args, msg) \ [all...] |
| gl_x86-64_asm.py | 273 dispatch = f.dispatch_name() 277 text = '\t.globl GL_PREFIX(%s) ; .set GL_PREFIX(%s), GL_PREFIX(%s)' % (n, n, dispatch)
|
| /external/mockwebserver/src/main/java/com/google/mockwebserver/ |
| QueueDispatcher.java | 31 @Override public MockResponse dispatch(RecordedRequest request) throws InterruptedException { method in class:QueueDispatcher
|
| /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
| QueueDispatcher.java | 32 @Override public MockResponse dispatch(RecordedRequest request) throws InterruptedException { method in class:QueueDispatcher
|
| /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
| task_io_service.hpp | 28 void task_io_service::dispatch(Handler& handler) function in class:asio::detail::task_io_service 44 ASIO_HANDLER_CREATION((p.p, "io_service", this, "dispatch"));
|
| /external/python/cpython2/Lib/idlelib/idle_test/ |
| test_widgetredir.py | 96 self.assertTrue(self.redir.dispatch('insert', False)) 102 self.assertEqual(self.redir.dispatch('delete', '1.0', 'end'), '') 107 self.assertEqual(self.redir.dispatch('insert', False), '') 108 self.assertEqual(self.redir.dispatch('invalid'), '') 112 # through redir.dispatch 116 # Ensure that called through redir .dispatch and not through
|
| /external/python/cpython3/Lib/idlelib/idle_test/ |
| test_redirector.py | 97 self.assertTrue(self.redir.dispatch('insert', False)) 103 self.assertEqual(self.redir.dispatch('delete', '1.0', 'end'), '') 108 self.assertEqual(self.redir.dispatch('insert', False), '') 109 self.assertEqual(self.redir.dispatch('invalid'), '') 113 # through redir.dispatch 117 # Ensure that called through redir .dispatch and not through
|
| /hardware/qcom/display/msm8084/libqservice/ |
| IQService.h | 71 // Generic function to dispatch binder commands 73 virtual android::status_t dispatch(uint32_t command,
|
| QService.cpp | 60 status_t QService::dispatch(uint32_t command, const Parcel* inParcel, function in class:qService::QService
|
| /hardware/qcom/display/msm8226/libqservice/ |
| IQService.h | 72 // Generic function to dispatch binder commands 74 virtual android::status_t dispatch(uint32_t command,
|
| QService.cpp | 57 status_t QService::dispatch(uint32_t command, const Parcel* inParcel, function in class:qService::QService
|
| /hardware/qcom/display/msm8909/libqservice/ |
| IQService.h | 115 // Generic function to dispatch binder commands 117 virtual android::status_t dispatch(uint32_t command,
|
| /hardware/qcom/display/msm8909w_3100/libqservice/ |
| IQService.h | 111 // Generic function to dispatch binder commands 113 virtual android::status_t dispatch(uint32_t command,
|
| /hardware/qcom/display/msm8994/libqservice/ |
| IQService.h | 81 // Generic function to dispatch binder commands 83 virtual android::status_t dispatch(uint32_t command,
|
| QService.cpp | 57 status_t QService::dispatch(uint32_t command, const Parcel* inParcel, function in class:qService::QService
|
| /hardware/qcom/display/msm8996/libqservice/ |
| IQService.h | 109 // Generic function to dispatch binder commands 111 virtual android::status_t dispatch(uint32_t command,
|
| /hardware/qcom/display/msm8998/libqservice/ |
| IQService.h | 111 // Generic function to dispatch binder commands 113 virtual android::status_t dispatch(uint32_t command,
|
| /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
| AccessibilityGestureDispatchTest.java | 147 dispatch(clickWithinView(clickPoint), GESTURE_COMPLETION_TIMEOUT); 180 dispatch(longClickWithinView(clickPoint), 203 dispatch(swipeWithinView(startPoint, endPoint, gestureTime), 228 public void dispatch(GestureDescription gesture, int timeoutMs) { method in class:AccessibilityGestureDispatchTest 244 dispatch(swipeWithinView(startPoint, endPoint, gestureTime), 267 dispatch(pinchWithinView(centerPoint, startSpacing, endSpacing, 45.0F, gestureTime), 348 dispatch(new GestureDescription.Builder() method 354 dispatch(new GestureDescription.Builder() method 409 dispatch(gesture1, gestureTime + GESTURE_COMPLETION_TIMEOUT); method 410 dispatch(gesture2, gestureTime + GESTURE_COMPLETION_TIMEOUT) method 411 dispatch(gesture3, gestureTime + GESTURE_COMPLETION_TIMEOUT); method 434 dispatch(new GestureDescription.Builder().addStroke(stroke1).build(), method 462 dispatch(new GestureDescription.Builder().addStroke(stroke1).build(), method 467 dispatch(new GestureDescription.Builder().addStroke(stroke2).build(), method [all...] |
| /external/mesa3d/src/gallium/drivers/radeonsi/ |
| si_compute.c | 473 struct dispatch_packet dispatch; local 478 /* Upload dispatch ptr */ 479 memset(&dispatch, 0, sizeof(dispatch)); 481 dispatch.workgroup_size_x = info->block[0]; 482 dispatch.workgroup_size_y = info->block[1]; 483 dispatch.workgroup_size_z = info->block[2]; 485 dispatch.grid_size_x = info->grid[0] * info->block[0]; 486 dispatch.grid_size_y = info->grid[1] * info->block[1]; 487 dispatch.grid_size_z = info->grid[2] * info->block[2] [all...] |
| /external/guice/extensions/servlet/test/com/google/inject/servlet/ |
| FilterDispatchIntegrationTest.java | 117 //dispatch request 119 pipeline.dispatch(requestMock, responseMock, filterChain); 161 //dispatch request 165 pipeline.dispatch(requestMock, null, filterChain); 202 // dispatch request 206 pipeline.dispatch(requestMock, null, filterChain); 280 pipeline.dispatch(request, null, newNoOpFilterChain()); 323 pipeline.dispatch(request, null, null); 349 pipeline.dispatch(request, null, null);
|
| /external/mesa3d/src/mesa/ |
| Android.gen.mk | 37 main/dispatch.h \ 93 $(intermediates)/main/dispatch.h: $(prebuilt_intermediates)/main/dispatch.h
|
| /external/libxcam/xcore/ |
| thread_pool.cpp | 82 bool ret = _pool->dispatch (data); 92 ThreadPool::dispatch (const SmartPtr<ThreadPool::UserData> &data) function in class:XCam::ThreadPool 96 "ThreadPool(%s) dispatch NULL data", XCAM_STR (get_name ()));
|
| /external/python/cpython2/Lib/idlelib/ |
| WidgetRedirector.py | 47 # whose action is to dispatch on the operation passed to the widget: 48 tk.createcommand(w, self.dispatch) 73 from command dispatch. 98 def dispatch(self, operation, *args): member in class:WidgetRedirector
|