Home
last modified time | relevance | path

Searched full:proceed (Results 1 – 25 of 4654) sorted by relevance

12345678910>>...187

/aosp_15_r20/external/e2fsprogs/tests/t_dangerous/
H A Dexpect40 Proceed anyway (or wait 5 seconds to proceed) ? (y,N)
44 Proceed anyway (or wait 5 seconds to proceed) ? (y,N)
57 Proceed anyway (or wait 5 seconds to proceed) ? (y,N)
75 Proceed anyway (or wait 5 seconds to proceed) ? (y,N) Setting inode size 512
79 Proceed anyway (or wait 5 seconds to proceed) ? (y,N) Exit status is 0
119 Proceed anyway (or wait 5 seconds to proceed) ? (y,N)
/aosp_15_r20/external/javassist/src/test/test/javassist/proxy/
H A DProxySimpleTest.java32 public Object invoke(Object self, Method m, Method proceed, in testProxyFactory()
35 return proceed.invoke(self, args); // execute the original method. in testProxyFactory()
129 Method proceed, Object[] args) throws Throwable { in testJIRA244()
131 return proceed.invoke(self); in testJIRA244()
171 public Object invoke(Object self, Method m, Method proceed, in testDefaultMethods()
174 return proceed.invoke(self, args); // execute the original method. in testDefaultMethods()
191 public Object invoke(Object self, Method m, Method proceed, in testDefaultMethods2()
194 return proceed.invoke(self, args); // execute the original method. in testDefaultMethods2()
227 public Object invoke(Object self, Method m, Method proceed, in testPublicProxy()
230 return proceed.invoke(self, args); in testPublicProxy()
[all …]
/aosp_15_r20/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DInterceptorTest.java102 assertEquals("network interceptor " + interceptor + " must call proceed() exactly once", in networkInterceptorsCannotShortCircuitResponses()
113 chain.proceed(chain.request()); in networkInterceptorsCannotCallProceedMultipleTimes()
114 return chain.proceed(chain.request()); in networkInterceptorsCannotCallProceedMultipleTimes()
127 assertEquals("network interceptor " + interceptor + " must call proceed() exactly once", in networkInterceptorsCannotCallProceedMultipleTimes()
140 return chain.proceed(chain.request().newBuilder() in networkInterceptorsCannotChangeServerAddress()
167 return chain.proceed(chain.request()); in networkInterceptorsHaveConnectionAccess()
192 Response networkResponse = chain.proceed(networkRequest); in networkInterceptorsObserveNetworkHeaders()
222 return chain.proceed(originalRequest.newBuilder() in networkInterceptorsCanChangeRequestMethodFromGetToPost()
256 return chain.proceed(originalRequest.newBuilder() in rewriteRequestToServer()
293 Response originalResponse = chain.proceed(chain.request()); in rewriteResponseFromServer()
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/util/
H A DPriorityTaskManager.html134 <div class="block">Allows tasks with associated priorities to control how they proceed relative to …
138 …call <a href="#proceed(int)"><code>proceed(int)</code></a>, <a href="#proceedNonBlocking(int)"><co…
139 time it wishes to check whether it is itself allowed to proceed.</div>
164 <div class="block">Thrown when task attempts to proceed when another registered task has a higher p…
215 …lSecond" scope="row"><code><span class="memberNameLink"><a href="#proceed(int)">proceed</a></span>…
217 <div class="block">Blocks until the task is allowed to proceed.</div>
224 <div class="block">A non-blocking variant of <a href="#proceed(int)"><code>proceed(int)</code></a>.…
231 <div class="block">A throwing variant of <a href="#proceed(int)"><code>proceed(int)</code></a>.</di…
298 <a id="proceed(int)">
303 <h4>proceed</h4>
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/util/
H A DPriorityTaskManager.html134 <div class="block">Allows tasks with associated priorities to control how they proceed relative to …
138 …call <a href="#proceed(int)"><code>proceed(int)</code></a>, <a href="#proceedNonBlocking(int)"><co…
139 time it wishes to check whether it is itself allowed to proceed.</div>
164 <div class="block">Thrown when task attempts to proceed when another registered task has a higher p…
215 …lSecond" scope="row"><code><span class="memberNameLink"><a href="#proceed(int)">proceed</a></span>…
217 <div class="block">Blocks until the task is allowed to proceed.</div>
224 <div class="block">A non-blocking variant of <a href="#proceed(int)"><code>proceed(int)</code></a>.…
231 <div class="block">A throwing variant of <a href="#proceed(int)"><code>proceed(int)</code></a>.</di…
298 <a id="proceed(int)">
303 <h4>proceed</h4>
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
H A DPriorityTaskManager.java25 * Allows tasks with associated priorities to control how they proceed relative to one another.
29 * call {@link #proceed(int)}, {@link #proceedNonBlocking(int)} or {@link #proceedOrThrow(int)} each
30 * time it wishes to check whether it is itself allowed to proceed.
34 /** Thrown when task attempts to proceed when another registered task has a higher priority. */
66 * Blocks until the task is allowed to proceed.
71 public void proceed(int priority) throws InterruptedException { in proceed() method in PriorityTaskManager
80 * A non-blocking variant of {@link #proceed(int)}.
83 * @return Whether the task is allowed to proceed.
92 * A throwing variant of {@link #proceed(int)}.
95 * @throws PriorityTooLowException If the task is not allowed to proceed.
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/
H A DPriorityTaskManager.java25 * Allows tasks with associated priorities to control how they proceed relative to one another.
29 * call {@link #proceed(int)}, {@link #proceedNonBlocking(int)} or {@link #proceedOrThrow(int)} each
30 * time it wishes to check whether it is itself allowed to proceed.
34 /** Thrown when task attempts to proceed when another registered task has a higher priority. */
66 * Blocks until the task is allowed to proceed.
71 public void proceed(int priority) throws InterruptedException { in proceed() method in PriorityTaskManager
80 * A non-blocking variant of {@link #proceed(int)}.
83 * @return Whether the task is allowed to proceed.
92 * A throwing variant of {@link #proceed(int)}.
95 * @throws PriorityTooLowException If the task is not allowed to proceed.
/aosp_15_r20/external/javassist/src/test/javassist/
H A DJvstTest.java293 CtClass cc = sloader.get("test1.Proceed"); in testProceed()
296 "public int m1() { return $proceed(3); }", in testProceed()
299 "public int m2() { return $proceed(3); }", in testProceed()
322 m.replace("{ $_ = $proceed($$); }"); in testProceed2()
325 m.replace("{ $_ = $proceed($$); }"); in testProceed2()
328 m.replace("{ $_ = $proceed($$); }"); in testProceed2()
331 i.replace("{ $_ = $proceed($$); }"); in testProceed2()
334 c.replace("{ $_ = $proceed($$); }"); in testProceed2()
341 m.replace("{ $proceed(); }"); in testProceed2()
344 m.replace("{ $_ = $proceed(); }"); in testProceed2()
[all …]
H A DBench.java18 m.replace("{ before($args); $_ = $proceed($$); }"); in testProceed()
36 + "$_ = $proceed($$);" in testProceed()
48 + "$_ = $proceed($$);" in testProceed()
71 m.replace("{ $_ = $proceed($$); }");
78 m.replace("{ $_ = $proceed($$); }");
98 m.replace("{ num += $1; $_ = $proceed($$); }");
/aosp_15_r20/external/javassist/src/test/testproxy/
H A DProxyTester.java31 public Object invoke(Object self, Method m, Method proceed, in invoke() argument
33 System.out.println("intercept: " + m + ", proceed: " + proceed); in invoke()
35 + Modifier.toString(proceed.getModifiers())); in invoke()
37 return proceed.invoke(self, args); in invoke()
43 public Object invoke(Object self, Method m, Method proceed, in invoke() argument
45 System.out.println("intercept: " + m + ", proceed: " + proceed); in invoke()
47 if (proceed != null) in invoke()
48 return proceed.invoke(self, args); in invoke()
127 public Object invoke(Object self, Method m, Method proceed, in testSetter()
239 Method proceed, Object[] args) throws Exception { in testInit()
[all …]
/aosp_15_r20/external/guice/extensions/servlet/test/com/google/inject/servlet/
H A DFilterDefinitionTest.java123 final boolean proceed[] = new boolean[1]; in testFilterCreateDispatchDestroy()
130 proceed[0] = true; in testFilterCreateDispatchDestroy()
134 assertTrue("Filter did not proceed down chain", proceed[0]); in testFilterCreateDispatchDestroy()
186 final boolean proceed[] = new boolean[1]; in testFilterCreateDispatchDestroySupressChain()
193 proceed[0] = true; in testFilterCreateDispatchDestroySupressChain()
197 assertFalse("filter did not suppress chain", proceed[0]); in testFilterCreateDispatchDestroySupressChain()
295 //proceed in doFilter()
/aosp_15_r20/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DUiAutomationShellWrapper.java93 /* do nothing and let activity proceed normally */ in activityStarting()
99 /* do nothing and let activity proceed normally */ in activityResuming()
106 /* do nothing and let activity proceed normally */ in appCrashed()
113 /* do nothing and let activity proceed normally */ in appEarlyNotResponding()
120 /* do nothing and let activity proceed normally */ in appNotResponding()
127 /* do nothing and let system proceed normally */ in systemNotResponding()
/aosp_15_r20/libcore/jsr166-tests/src/test/java/jsr166/
H A DExecutorsTest.java205 final CountDownLatch proceed = new CountDownLatch(1); in testNewSingleThreadScheduledExecutor() local
208 await(proceed); in testNewSingleThreadScheduledExecutor()
214 proceed.countDown(); in testNewSingleThreadScheduledExecutor()
229 final CountDownLatch proceed = new CountDownLatch(1); in testNewScheduledThreadPool() local
232 await(proceed); in testNewScheduledThreadPool()
238 proceed.countDown(); in testNewScheduledThreadPool()
255 final CountDownLatch proceed = new CountDownLatch(1); in testUnconfigurableScheduledExecutorService() local
258 await(proceed); in testUnconfigurableScheduledExecutorService()
264 proceed.countDown(); in testUnconfigurableScheduledExecutorService()
/aosp_15_r20/libcore/ojluni/src/test/java/util/concurrent/tck/
H A DExecutorsTest.java257 final CountDownLatch proceed = new CountDownLatch(1); in testNewSingleThreadScheduledExecutor() local
260 await(proceed); in testNewSingleThreadScheduledExecutor()
266 proceed.countDown(); in testNewSingleThreadScheduledExecutor()
282 final CountDownLatch proceed = new CountDownLatch(1); in testNewScheduledThreadPool() local
285 await(proceed); in testNewScheduledThreadPool()
291 proceed.countDown(); in testNewScheduledThreadPool()
309 final CountDownLatch proceed = new CountDownLatch(1); in testUnconfigurableScheduledExecutorService() local
312 await(proceed); in testUnconfigurableScheduledExecutorService()
318 proceed.countDown(); in testUnconfigurableScheduledExecutorService()
/aosp_15_r20/external/tensorflow/tensorflow/core/lib/core/
H A Dnotification_test.cc32 Notification proceed; in TEST() local
33 thread_pool->Schedule([&start, &proceed, &counter] { in TEST()
35 proceed.WaitForNotification(); in TEST()
42 // The thread should be waiting for the 'proceed' notification. in TEST()
46 proceed.Notify(); in TEST()
/aosp_15_r20/frameworks/base/telephony/java/android/telephony/ims/
H A DDelegateRegistrationState.java65 * All open SIP dialogs need to be closed before the PDN change can proceed using
78 * modification can proceed.
87 * using {@link SipDelegateConnection#cleanupSession(String)} before this operation can proceed.
96 * using {@link SipDelegateConnection#cleanupSession(String)} before this operation can proceed.
105 * using {@link SipDelegateConnection#cleanupSession(String)} before this operation can proceed.
113 * using {@link SipDelegateConnection#cleanupSession(String)} before this operation can proceed.
198 * RCS application to proceed.
/aosp_15_r20/external/javassist/src/main/javassist/compiler/
H A DJavac.java52 public static final String proceedName = "$proceed";
429 * Prepares to use $proceed().
430 * If the return type of $proceed() is void, null is pushed on the
476 * Prepares to use $proceed() representing a static method.
477 * If the return type of $proceed() is void, null is pushed on the
518 * Prepares to use $proceed() representing a private/super's method.
519 * If the return type of $proceed() is void, null is pushed on the
557 * Prepares to use $proceed().
/aosp_15_r20/external/javassist/tutorial/
H A Dtutorial2.html359 It is typically used with <code>$proceed</code> shown later.
654 m.replace("{ $1 = 0; $_ = $proceed($$); }");
663 <ul><pre>{ $1 = 0; $_ = $proceed($$); }
688 $_ = $proceed($$);
695 <ul><pre>$_ = $proceed();</pre></ul>
699 <ul><pre>$proceed($$);</pre></ul>
767 <tr><td><code>$proceed</code> &nbsp &nbsp</td>
790 <p><code>$proceed</code> is not a <code>String</code> value but special
834 <tr><td><code>$proceed</code> &nbsp &nbsp</td>
852 normally a call to <code>$proceed()</code>.
[all …]
/aosp_15_r20/external/javassist/src/test/javassist/proxyfactory/
H A DProxyFactoryTest.java75 …public Object invoke(Object self, Method thisMethod, Method proceed, Object[] args) throws Throwab… in invoke() argument
138 Method proceed, Object[] args) throws Throwable { in testJava11()
139 return proceed.invoke(self, args); in testJava11()
150 Method proceed, Object[] args) throws Throwable { in testJava11jdk()
151 return proceed.invoke(self, args); in testJava11jdk()
/aosp_15_r20/hardware/interfaces/neuralnetworks/1.3/vts/functional/include/1.3/
H A DCallbacks.h71 * PreparedModelCallback object to proceed.
97 * PreparedModelCallback object to proceed.
123 * PreparedModelCallback object to proceed.
208 * proceed.
233 * future wait calls on the ExecutionCallback object to proceed.
270 * future wait calls on the ExecutionCallback object to proceed.
375 * and future wait calls on the ExecutionCallback object to proceed.
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/include/grpcpp/support/
Dinterceptor.h92 /// proceed with normal processing beyond that stage
102 /// RPC. Every interceptor must either call Proceed or Hijack on each
103 /// interception. In most cases, only Proceed will be used. Explicit use of
104 /// Proceed is what enables interceptors to delay the processing of RPCs
106 /// Proceed is a no-op if the batch contains PRE_SEND_CANCEL. Simply returning
110 virtual void Proceed() = 0;
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/support/
Dinterceptor.h92 /// proceed with normal processing beyond that stage
102 /// RPC. Every interceptor must either call Proceed or Hijack on each
103 /// interception. In most cases, only Proceed will be used. Explicit use of
104 /// Proceed is what enables interceptors to delay the processing of RPCs
106 /// Proceed is a no-op if the batch contains PRE_SEND_CANCEL. Simply returning
110 virtual void Proceed() = 0;
/aosp_15_r20/external/grpc-grpc/include/grpcpp/support/
H A Dinterceptor.h92 /// proceed with normal processing beyond that stage
102 /// RPC. Every interceptor must either call Proceed or Hijack on each
103 /// interception. In most cases, only Proceed will be used. Explicit use of
104 /// Proceed is what enables interceptors to delay the processing of RPCs
106 /// Proceed is a no-op if the batch contains PRE_SEND_CANCEL. Simply returning
110 virtual void Proceed() = 0;
/aosp_15_r20/external/guice/core/test/com/google/inject/
H A DMethodInterceptionTest.java47 return methodInvocation.proceed(); in invoke()
61 return methodInvocation.proceed(); in invoke()
138 return methodInvocation.proceed(); in testGetThis()
161 return methodInvocation.proceed(); in testInterceptingFinalClass()
376 return methodInvocation.proceed(); in invoke()
431 methodInvocation.proceed(); in invoke()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/icl/include/boost/icl/detail/
Dinterval_subset_comparer.hpp134 int proceed(LeftIterT& left, RightIterT& right) in proceed() function in boost::icl::Interval_Set::subset_comparer
223 // examine left borders only. Right borders are checked in proceed in next_both()
239 // nothing to do: proceed in next_both()
241 return proceed(left, right); in next_both()
275 return proceed(left, right); in next_left()
309 return proceed(left, right); in next_right()

12345678910>>...187