Home
last modified time | relevance | path

Searched refs:handled (Results 1 – 25 of 1079) sorted by relevance

12345678910>>...44

/external/u-boot/drivers/usb/musb-new/
Dmusb_gadget_ep0.c61 int handled = 1; in service_tx_status_request() local
107 handled = -EINVAL; in service_tx_status_request()
125 handled = 0; in service_tx_status_request()
130 if (handled > 0) { in service_tx_status_request()
138 return handled; in service_tx_status_request()
155 int handled = 0; /* not handled */ in service_in_request() local
161 handled = service_tx_status_request(musb, in service_in_request()
171 return handled; in service_in_request()
211 int handled = -EINVAL; in service_zero_data_request() local
223 handled = 1; in service_zero_data_request()
[all …]
/external/skia/samplecode/
DSampleShadowColor.cpp50 bool handled = false; in onChar() local
54 handled = true; in onChar()
58 handled = true; in onChar()
62 handled = true; in onChar()
66 handled = true; in onChar()
70 handled = true; in onChar()
74 handled = true; in onChar()
78 handled = true; in onChar()
82 handled = true; in onChar()
87 if (handled) { in onChar()
DSampleShadowUtils.cpp77 bool handled = false; in onChar() local
81 handled = true; in onChar()
85 handled = true; in onChar()
89 handled = true; in onChar()
93 handled = true; in onChar()
97 handled = true; in onChar()
101 handled = true; in onChar()
105 handled = true; in onChar()
110 if (handled) { in onChar()
DSampleAndroidShadows.cpp97 bool handled = false; in onChar() local
101 handled = true; in onChar()
105 handled = true; in onChar()
109 handled = true; in onChar()
113 handled = true; in onChar()
120 handled = true; in onChar()
124 handled = true; in onChar()
128 handled = true; in onChar()
132 handled = true; in onChar()
137 if (handled) { in onChar()
DSampleShadowReference.cpp44 bool handled = false; in onChar() local
48 handled = true; in onChar()
52 handled = true; in onChar()
56 handled = true; in onChar()
60 handled = true; in onChar()
65 if (handled) { in onChar()
/external/skqp/samplecode/
DSampleShadowColor.cpp55 bool handled = false; in onQuery() local
59 handled = true; in onQuery()
63 handled = true; in onQuery()
67 handled = true; in onQuery()
71 handled = true; in onQuery()
75 handled = true; in onQuery()
79 handled = true; in onQuery()
83 handled = true; in onQuery()
87 handled = true; in onQuery()
92 if (handled) { in onQuery()
DSampleShadowUtils.cpp84 bool handled = false; in onQuery() local
88 handled = true; in onQuery()
92 handled = true; in onQuery()
96 handled = true; in onQuery()
100 handled = true; in onQuery()
104 handled = true; in onQuery()
108 handled = true; in onQuery()
112 handled = true; in onQuery()
117 if (handled) { in onQuery()
DSampleAndroidShadows.cpp117 bool handled = false; in onQuery() local
121 handled = true; in onQuery()
125 handled = true; in onQuery()
129 handled = true; in onQuery()
133 handled = true; in onQuery()
140 handled = true; in onQuery()
144 handled = true; in onQuery()
148 handled = true; in onQuery()
152 handled = true; in onQuery()
157 if (handled) { in onQuery()
DSampleShadowReference.cpp49 bool handled = false; in onQuery() local
53 handled = true; in onQuery()
57 handled = true; in onQuery()
61 handled = true; in onQuery()
65 handled = true; in onQuery()
70 if (handled) { in onQuery()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCompletedExceptionally.kt22 handled: Boolean = false in toState()
24 private val _handled = atomic(handled) in toState()
25 val handled: Boolean get() = _handled.value in toState() constant
40 handled: Boolean
41 …lly(cause ?: CancellationException("Continuation $continuation was cancelled normally"), handled) {
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/win_text/
Drx_windows_user.h10 bool handled = false; member
24 void handled() { result->handled = true; } in handled() function
57 void handled() { result->handled = true; } in handled() function
77 return std::make_tuple(result.handled, result.lres); in message()
108 m.handled(); // skip DefWindowProc in OnSendCall()
Dmain.cpp128 m.handled(); // skip DefWindowProc in OnKeyDown()
143 m.handled(); // skip DefWindowProc in OnMovesWhileLButtonDown()
152 m.handled(); // skip DefWindowProc in OnMovesWhileLButtonDown()
162 m.handled(); // skip DefWindowProc in OnPaint()
174 m.handled(); // skip DefWindowProc in OnPrintClient()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DPublish.kt194 private fun doLockedSignalCompleted(cause: Throwable?, handled: Boolean) { in doLockedSignalCompleted()
201 if (cause != null && !handled) handleCoroutineException(context, cause) in doLockedSignalCompleted()
219 if (!handled && cause.isFatal()) { in doLockedSignalCompleted()
258 private fun signalCompleted(cause: Throwable?, handled: Boolean) { in signalCompleted()
266 doLockedSignalCompleted(cause, handled) in signalCompleted()
269 if (mutex.tryLock()) doLockedSignalCompleted(cause, handled) in signalCompleted()
280 override fun onCancelled(cause: Throwable, handled: Boolean) { in onCancelled()
281 signalCompleted(cause, handled) in onCancelled()
/external/setupdesign/main/src/com/google/android/setupdesign/span/
DLinkSpan.java102 boolean handled = false; in dispatchClick()
104 handled = ((OnLinkClickListener) view).onLinkClick(this); in dispatchClick()
106 if (!handled) { in dispatchClick()
110 handled = true; in dispatchClick()
113 return handled; in dispatchClick()
/external/skqp/tools/viewer/
DSampleSlide.cpp62 bool handled = false; in onMouse() local
69 handled = true; in onMouse()
76 handled = true; in onMouse()
85 handled = true; in onMouse()
91 return handled; in onMouse()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowMessageQueueTest.java41 public List<Message> handled = new ArrayList<>(); field in ShadowMessageQueueTest.TestHandler
49 handled.add(msg); in handleMessage()
129 assertThat(handler.handled).named("handled:before").isEmpty(); in enqueuedMessage_isSentToHandler()
131 assertThat(handler.handled).named("handled:after").containsExactly(testMessage); in enqueuedMessage_isSentToHandler()
141 assertThat(handler.handled).named("handled").isEmpty(); in removedMessage_isNotSentToHandler()
150 assertThat(handler.handled).named("handled").containsExactly(m2, testMessage); in enqueueMessage_withZeroWhen_postsAtFront()
224 assertThat(handler.handled).named("handled:after").containsExactly(testMessage); in postAndRemoveSyncBarrierToken_messageBeforeConsumed()
236 assertThat(handler.handled).named("handled:after").containsExactly(testMessage); in postAndRemoveSyncBarrierToken_messageAfter()
246 assertThat(handler.handled).named("handled:after").containsExactly(testMessage); in postAndRemoveSyncBarrierToken_syncBefore()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/src/
DRxObservable.kt155 private fun doLockedSignalCompleted(cause: Throwable?, handled: Boolean) { in doLockedSignalCompleted()
174 if (!handled && cause.isFatal()) { in doLockedSignalCompleted()
191 private fun signalCompleted(cause: Throwable?, handled: Boolean) { in signalCompleted()
194 doLockedSignalCompleted(cause, handled) in signalCompleted()
201 override fun onCancelled(cause: Throwable, handled: Boolean) { in onCancelled()
202 signalCompleted(cause, handled) in onCancelled()
/external/ltp/testcases/realtime/func/pi-tests/
Dtestpi-0.c57 int handled = 1; in parse_args() local
63 handled = 0; in parse_args()
66 return handled; in parse_args()
Dtest-skeleton.c55 int handled = 1; in parse_args() local
61 handled = 0; in parse_args()
64 return handled; in parse_args()
Dsbrk_mutex.c66 int handled = 1; in parse_args() local
72 handled = 0; in parse_args()
75 return handled; in parse_args()
/external/libkmsxx/py/tests/
Drottest.py132 handled = False variable
137 handled = True variable
141 handled = True variable
148 handled = True variable
157 if not handled:
/external/libkmsxx/kmscube/
Dcube-x11.cpp32 bool handled = false; in main_loop() local
37 handled = true; in main_loop()
41 handled = true; in main_loop()
53 if (!handled) { in main_loop()
/external/ltp/testcases/realtime/func/measurement/
Dpreempt_timing.c69 int handled = 1; in parse_args() local
75 handled = 0; in parse_args()
78 return handled; in parse_args()
/external/ltp/testcases/realtime/func/sched_football/
Dsched_football.c92 int handled = 1; in parse_args() local
104 handled = 0; in parse_args()
107 return handled; in parse_args()
/external/ltp/testcases/realtime/func/async_handler/
Dasync_handler_jk.c67 int handled = 1; in parse_args() local
73 handled = 0; in parse_args()
76 return handled; in parse_args()

12345678910>>...44