/aosp_15_r20/external/e2fsprogs/tests/t_dangerous/ |
H A D | expect | 40 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 D | ProxySimpleTest.java | 32 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 D | InterceptorTest.java | 102 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 D | PriorityTaskManager.html | 134 <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 D | PriorityTaskManager.html | 134 <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 D | PriorityTaskManager.java | 25 * 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 D | PriorityTaskManager.java | 25 * 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 D | JvstTest.java | 293 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 D | Bench.java | 18 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 D | ProxyTester.java | 31 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 D | FilterDefinitionTest.java | 123 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 D | UiAutomationShellWrapper.java | 93 /* 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 D | ExecutorsTest.java | 205 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 D | ExecutorsTest.java | 257 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 D | notification_test.cc | 32 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 D | DelegateRegistrationState.java | 65 * 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 D | Javac.java | 52 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 D | tutorial2.html | 359 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>    </td> 790 <p><code>$proceed</code> is not a <code>String</code> value but special 834 <tr><td><code>$proceed</code>    </td> 852 normally a call to <code>$proceed()</code>. [all …]
|
/aosp_15_r20/external/javassist/src/test/javassist/proxyfactory/ |
H A D | ProxyFactoryTest.java | 75 …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 D | Callbacks.h | 71 * 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/ |
D | interceptor.h | 92 /// 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/ |
D | interceptor.h | 92 /// 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 D | interceptor.h | 92 /// 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 D | MethodInterceptionTest.java | 47 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/ |
D | interval_subset_comparer.hpp | 134 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()
|