Home
last modified time | relevance | path

Searched full:until (Results 1 – 25 of 12389) sorted by relevance

12345678910>>...496

/external/sdv/vsomeip/third_party/boost/asio/example/cpp03/tutorial/
Ddaytime_dox.txt19 \until asio.hpp
24 \until }
29 \until boost::asio::io_context
35 \until tcp::resolver
45 \until resolver.resolve
48 contain both IPv4 and IPv6 endpoints, so we need to try each of them until we
52 \until boost::asio::connect
62 \until read_some
68 \until }
72 \until }
[all …]
Dtimer_dox.txt22 \until asio.hpp
29 \until boost::asio::io_context
36 \until boost::asio::steady_timer
39 That is, the call to boost::asio::steady_timer::wait() will not return until the
47 \until wait
52 \until }
76 \until asio.hpp
83 \until boost::asio::steady_timer
102 timer, so the call will not return until the timer has expired and the
112 \until }
[all …]
/external/flac/test/
Dtest_flac.sh23 # we use '.' as decimal separator in --skip/--until tests
342 # test --skip and --until
524 # test --until when encoding
527 echo $ECHO_N "testing --until=# (encode) $desc... " $ECHO_C
528 …run_flac $eopt --until=40 -o z50c.until40.$out_fmt 50c.$in_fmt || die "ERROR generating FLAC file …
530 …$CMP 50c.until40.$in_fmt z50c.until40.$in_fmt || die "ERROR: file mismatch for --until=40 (encode)…
534 echo $ECHO_N "testing --until=mm:ss (encode) $desc... " $ECHO_C
535 …run_flac $eopt --until=0:04 -o z50c.until0_04.$out_fmt 50c.$in_fmt || die "ERROR generating FLAC f…
537 …$CMP 50c.until40.$in_fmt z50c.until0_04.$in_fmt || die "ERROR: file mismatch for --until=0:04 (enc…
541 echo $ECHO_N "testing --until=mm:ss.sss (encode) $desc... " $ECHO_C
[all …]
/external/sdv/vsomeip/third_party/boost/thread/example/
Dshared_mutex.cpp80 Clock::time_point until = Clock::now() + boost::chrono::seconds(3); in reader() local
81 while (Clock::now() < until) in reader()
95 Clock::time_point until = Clock::now() + boost::chrono::seconds(3); in writer() local
96 while (Clock::now() < until) in writer()
112 Clock::time_point until = Clock::now() + boost::chrono::seconds(3); in try_reader() local
113 while (Clock::now() < until) in try_reader()
129 Clock::time_point until = Clock::now() + boost::chrono::seconds(3); in try_writer() local
130 while (Clock::now() < until) in try_writer()
148 Clock::time_point until = Clock::now() + boost::chrono::seconds(3); in try_for_reader() local
149 while (Clock::now() < until) in try_for_reader()
[all …]
/external/autotest/site_utils/
Ddut_status_unittest.py17 """Test the --since, --until, and --destination options.
22 * --until - use the given end time and the default duration.
24 * --since --until - use the given start and end times.
26 * --until --duration - use the given end time and duration.
43 start_time = (arguments.until - duration * 3600)
50 self.assertEqual(arguments.until, end_time)
63 self.assertEqual(arguments.until, end_time)
67 """Test time bounds with --until only.
69 Also tests that --until and -u are equivalent.
73 for option in ['--until', '-u']:
[all …]
/external/sdv/vsomeip/third_party/boost/asio/test/
Dio_context.cpp123 // No handlers can be called until run() is called. in io_context_test()
129 // The run() call will not return until all work has finished. in io_context_test()
141 // No handlers can be called until run() is called. in io_context_test()
147 // The run() call will not return until all work has finished. in io_context_test()
166 // No handlers can be called until run() is called. in io_context_test()
172 // The run() call will not return until all work has finished. in io_context_test()
180 // No handlers can be called until run() is called. in io_context_test()
186 // The run() call will not return until all work has finished. in io_context_test()
194 // No handlers can be called until run() is called. in io_context_test()
200 // The run() call will not return until all work has finished. in io_context_test()
[all …]
Dio_context_strand.cpp143 // No handlers can be called until run() is called. in strand_test()
148 // The run() call will not return until all work has finished. in strand_test()
155 // No handlers can be called until run() is called. in strand_test()
160 // The run() call will not return until all work has finished. in strand_test()
191 // The run() calls will not return until all work has finished. in strand_test()
203 // No handlers can be called until run() is called. in strand_test()
220 // The run() calls will not return until all work has finished. in strand_test()
236 // No handlers can be called until run() is called. in strand_test()
249 // No handlers can be called until run() is called. in strand_wrap_test()
255 // The run() calls will not return until all work has finished. in strand_wrap_test()
[all …]
Dstrand.cpp145 // No handlers can be called until run() is called. in strand_test()
150 // The run() call will not return until all work has finished. in strand_test()
157 // No handlers can be called until run() is called. in strand_test()
162 // The run() call will not return until all work has finished. in strand_test()
193 // The run() calls will not return until all work has finished. in strand_test()
205 // No handlers can be called until run() is called. in strand_test()
222 // The run() calls will not return until all work has finished. in strand_test()
238 // No handlers can be called until run() is called. in strand_test()
308 // No handlers can be called until run() is called. in strand_execute_test()
314 // The run() call will not return until all work has finished. in strand_execute_test()
[all …]
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/
Dread_until.hpp73 * into a dynamic buffer sequence, or into a streambuf, until it contains a
81 /// Read data into a dynamic buffer sequence until it contains a specified
85 * sequence until the dynamic buffer sequence's get area contains the specified
86 * delimiter. The call will block until one of the following conditions is
116 * To read data into a @c std::string until a newline is encountered:
144 /// Read data into a dynamic buffer sequence until it contains a specified
148 * sequence until the dynamic buffer sequence's get area contains the specified
149 * delimiter. The call will block until one of the following conditions is
189 /// Read data into a dynamic buffer sequence until it contains a specified
193 * sequence until the dynamic buffer sequence's get area contains the specified
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DJobTest.kt43 for (i in 0 until n) job.invokeOnCompletion { fireCount[i]++ } in <lambda>()
45 for (i in 0 until n) assertEquals(0, fireCount[i]) in <lambda>()
49 for (i in 0 until n) assertEquals(1, fireCount[i]) in <lambda>()
53 for (i in 0 until n) assertEquals(1, fireCount[i]) in <lambda>()
61 for (i in 0 until n) { in <lambda>()
69 for (i in 0 until n) assertEquals(0, fireCount[i]) in <lambda>()
73 for (i in 0 until n) assertEquals(1, fireCount[i]) in <lambda>()
77 for (i in 0 until n) assertEquals(1, fireCount[i]) in <lambda>()
88 for (i in 0 until n) if (unreg(i)) registrations[i].dispose() in <lambda>()
89 for (i in 0 until n) assertEquals(0, fireCount[i]) in <lambda>()
[all …]
/external/aws-sdk-java-v2/services/nimble/src/main/resources/codegen-resources/
Dwaiters-2.json5 …"description" : "Wait until a LaunchProfile is Deleted. Use this after invoking DeleteLaunchProfil…
22 …"description" : "Wait until a LaunchProfile is Ready. Use this after invoking CreateLaunchProfile …
44 …"description" : "Wait until a StreamingImage Deleted. Use this after invoking DeleteStreamingImage…
61 …"description" : "Wait until a StreamingImage is Ready. Use this after invoking CreateStreamingImag…
83 …"description" : "Wait until a StreamingSessionDeleted. Use this after invoking DeleteStreamingSess…
100 …"description" : "Wait until a StreamingSession is ready. Use this after invoking CreateStreamingSe…
122 …"description" : "Wait until a StreamingSessionStopped. Use this after invoking StopStreamingSessio…
139 …"description" : "Wait until a StreamingSessionStream is ready. Use this after invoking CreateStrea…
156 …"description" : "Wait until a StudioComponent Deleted. Use this after invoking DeleteStudioCompone…
173 …"description" : "Wait until a StudioComponent is Ready. Use this after invoking CreateStudioCompon…
[all …]
/external/rust/crates/tower/src/limit/rate/
Dservice.rs25 Ready { until: Instant, rem: u64 },
31 let until = Instant::now(); in new() localVariable
33 until, in new()
44 sleep: Box::pin(tokio::time::sleep_until(until)), in new()
84 until: Instant::now() + self.rate.per(), in poll_ready()
93 State::Ready { mut until, mut rem } => { in call()
97 if now >= until { in call()
98 until = now + self.rate.per(); in call()
104 self.state = State::Ready { until, rem }; in call()
106 // The service is disabled until further notice in call()
[all …]
/external/aws-sdk-java-v2/services/omics/src/main/resources/codegen-resources/
Dwaiters-2.json5 "description" : "Wait until an annotation import is completed",
37 "description" : "Wait until an annotation store is created",
64 "description" : "Wait until an annotation store is deleted.",
85 "description" : "Wait until an annotation store version is created",
112 "description" : "Wait until an annotation store version is deleted.",
133 "description" : "Wait until a job is completed.",
175 "description" : "Wait until a job is completed.",
217 "description" : "Wait until a job is completed.",
259 "description" : "Wait until a job is completed.",
301 "description" : "Wait until a run is completed.",
[all …]
/external/accompanist/flowlayout/src/sharedTest/kotlin/com/google/accompanist/flowlayout/
DFlowLayoutTest.kt60 for (i in 0 until numberOfSquares) { in <lambda>()
83 for (i in 0 until numberOfSquares) { in <lambda>()
116 for (i in 0 until numberOfSquares) { in <lambda>()
139 for (i in 0 until numberOfSquares) { in <lambda>()
175 for (i in 0 until numberOfSquares) { in <lambda>()
198 for (i in 0 until numberOfSquares) { in <lambda>()
237 for (i in 0 until numberOfSquares) { in <lambda>()
260 for (i in 0 until numberOfSquares) { in <lambda>()
299 for (i in 0 until numberOfSquares) { in <lambda>()
322 for (i in 0 until numberOfSquares) { in <lambda>()
[all …]
/external/aws-sdk-java-v2/services/medialive/src/main/resources/codegen-resources/
Dwaiters-2.json5 "description": "Wait until a channel has been created",
36 "description": "Wait until a channel is running",
61 "description": "Wait until a channel has is stopped",
86 "description": "Wait until a channel has been deleted",
111 "description": "Wait until an input has been attached",
136 "description": "Wait until an input has been detached",
167 "description": "Wait until an input has been deleted",
192 "description": "Wait until a multiplex has been created",
223 "description": "Wait until a multiplex is running",
248 "description": "Wait until a multiplex has is stopped",
[all …]
/external/aws-sdk-java-v2/services/proton/src/main/resources/codegen-resources/
Dwaiters-2.json5 "description" : "Wait until a Component is deleted. Use this after invoking DeleteComponent",
21 …"description" : "Wait until a Component is deployed. Use this after invoking CreateComponent or Up…
38 …"description" : "Wait until an Environment is deployed. Use this after invoking CreateEnvironment …
55 …"description" : "Wait until an EnvironmentTemplateVersion is registered. Use this after invoking C…
77 …"description" : "Wait until an Service has deployed its instances and possibly pipeline. Use this …
104 …"description" : "Wait until a Service, its instances, and possibly pipeline have been deleted afte…
120 …"description" : "Wait until a ServiceInstance is deployed. Use this after invoking CreateService o…
137 …"description" : "Wait until an ServicePipeline is deployed. Use this after invoking CreateService …
154 …"description" : "Wait until a ServiceTemplateVersion is registered. Use this after invoking Create…
176 …"description" : "Wait until a Service, its instances, and possibly pipeline have been deployed aft…
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/
D__init__.py40 """Blocks until the system under test has cancelled the RPC."""
83 """Blocks until the system under test has cancelled the RPC."""
118 This method blocks until the system under test has added to the RPC
131 """Blocks until the system under test has closed the request stream."""
136 """Blocks until the system under test has cancelled the RPC."""
172 This method blocks until the system under test has added to the RPC
194 """Blocks until the system under test has closed the request stream."""
199 """Blocks until the system under test has cancelled the RPC."""
222 by the system under test, this method blocks until the system under
241 by the system under test, this method blocks until the system under
[all …]
/external/curl/docs/libcurl/
Dcurl_easy_getinfo.md82 Time from start until name resolving completed. See
87 Time from start until name resolving completed. See
92 Time from start until remote host or proxy completed.
97 Time from start until remote host or proxy completed.
102 Time from start until SSL/SSH handshake completed.
107 Time from start until SSL/SSH handshake completed.
112 Time from start until just before the transfer begins.
117 Time from start until just before the transfer begins.
131 Time from start until just when the first byte is received.
136 Time from start until just when the first byte is received.
[all …]
/external/aws-sdk-java-v2/services/neptunegraph/src/main/resources/codegen-resources/
Dwaiters-2.json5 "description" : "Wait until Graph is Available",
27 "description" : "Wait until Graph is Deleted",
43 "description" : "Wait until GraphSnapshot is Available",
65 "description" : "Wait until GraphSnapshot is Deleted",
81 "description" : "Wait until Import Task is Cancelled",
98 "description" : "Wait until Import Task is Successful",
130 "description" : "Wait until PrivateGraphEndpoint is Available",
152 "description" : "Wait until PrivateGraphEndpoint is Deleted",
/external/cronet/base/
Dvalues_nocompile.nc82 // Not an error here since the lifetime of the temporary lasts until the end
83 // of the full expression, i.e. until TakesValueView() returns.
89 // Not an error here since the lifetime of the temporary lasts until the end
90 // of the full expression, i.e. until TakesValueView() returns.
96 // Not an error here since the lifetime of the temporary lasts until the end
97 // of the full expression, i.e. until TakesValueView() returns.
103 // Not an error here since the lifetime of the temporary lasts until the end
104 // of the full expression, i.e. until TakesValueView() returns.
110 // Not an error here since the lifetime of the temporary lasts until the end
111 // of the full expression, i.e. until TakesValueView() returns.
/external/aws-sdk-java-v2/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/waiters/
Dquery-sync-waiter-interface.java14 …* Waiter utility class that polls a resource until a desired state is reached or until it is deter…
21 …* Polls {@link QueryClient#aPostOperation} API until the desired condition {@code PostOperationSuc…
22 * until it is determined that the resource will never enter into the desired state
34 …* Polls {@link QueryClient#aPostOperation} API until the desired condition {@code PostOperationSuc…
35 * until it is determined that the resource will never enter into the desired state.
51 …* Polls {@link QueryClient#aPostOperation} API until the desired condition {@code PostOperationSuc…
52 * until it is determined that the resource will never enter into the desired state
67 …* Polls {@link QueryClient#aPostOperation} API until the desired condition {@code PostOperationSuc…
68 * until it is determined that the resource will never enter into the desired state.
/external/pigweed/pw_rpc/public/pw_rpc/
Dsynchronous_call.h39 /// for a given timeout or until a deadline, respectively. All wrappers work
118 /// blocked! This method will block the calling thread until the RPC completes,
124 /// until a response is received.
142 /// until a response is received.
155 /// Invokes a unary RPC synchronously using the raw API. Blocks until a
167 /// Invokes a unary RPC synchronously using the raw API. Blocks until a
179 /// Invokes a unary RPC synchronously using Nanopb or pwpb. Blocks until a
198 /// Invokes a unary RPC synchronously using Nanopb or pwpb. Blocks until a
214 /// Invokes a unary RPC synchronously using the raw API. Blocks until a
229 /// Invokes a unary RPC synchronously using the raw API. Blocks until a
[all …]
/external/autotest/client/deps/lansim/src/py/
Dsimulator.py164 def run(self, timeout=None, until=None): argument
167 This method blocks the caller thread until the timeout is reached (if
168 a timeout is passed), until stop() is called or until the function
169 passed in until returns a True value (if a function is passed);
175 @param until: A callable object called during the loop returning True
190 # Check the until function.
191 while not (until and until()):
192 # The main purpose of this loop is to wait (block) until the next
221 # Pool the until() function at least once a second.
285 the process run continuosly until stop() is called, after which the
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DDummyMainThread.java49 * Runs the provided {@link Runnable} on the main thread, blocking until execution completes or
50 * until {@link #TIMEOUT_MS} milliseconds have passed.
59 * Runs the provided {@link Runnable} on the main thread, blocking until execution completes or
60 * until timeout milliseconds have passed.
70 * Runs the provided {@link TestRunnable} on the main thread, blocking until execution completes
71 * or until {@link #TIMEOUT_MS} milliseconds have passed.
80 * Runs the provided {@link TestRunnable} on the main thread, blocking until execution completes
81 * or until timeout milliseconds have passed.
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DDummyMainThread.java49 * Runs the provided {@link Runnable} on the main thread, blocking until execution completes or
50 * until {@link #TIMEOUT_MS} milliseconds have passed.
59 * Runs the provided {@link Runnable} on the main thread, blocking until execution completes or
60 * until timeout milliseconds have passed.
70 * Runs the provided {@link TestRunnable} on the main thread, blocking until execution completes
71 * or until {@link #TIMEOUT_MS} milliseconds have passed.
80 * Runs the provided {@link TestRunnable} on the main thread, blocking until execution completes
81 * or until timeout milliseconds have passed.

12345678910>>...496