Home
last modified time | relevance | path

Searched refs:started (Results 1 – 25 of 1459) sorted by relevance

12345678910>>...59

/external/iproute2/lib/
Ddnet_ntop.c19 …__ int do_digit(char *str, u_int16_t *addr, u_int16_t scale, size_t *pos, size_t len, int *started) in do_digit() argument
26 if (((tmp) > 0) || *started || (scale == 1)) { in do_digit()
28 *started = 1; in do_digit()
41 int started = 0; in dnet_ntop1() local
55 if (do_digit(str + pos, &area, 10, &pos, len, &started)) in dnet_ntop1()
58 if (do_digit(str + pos, &area, 1, &pos, len, &started)) in dnet_ntop1()
66 started = 0; in dnet_ntop1()
68 if (do_digit(str + pos, &addr, 1000, &pos, len, &started)) in dnet_ntop1()
71 if (do_digit(str + pos, &addr, 100, &pos, len, &started)) in dnet_ntop1()
74 if (do_digit(str + pos, &addr, 10, &pos, len, &started)) in dnet_ntop1()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/flow/
DSharingStressTest.kt31 testStress(0, started = SharingStarted.Lazily) in <lambda>()
35 testStress(0, started = SharingStarted.WhileSubscribed()) in <lambda>()
39 testStress(0, started = SharingStarted.WhileSubscribed(stopTimeoutMillis = 50L)) in <lambda>()
43 testStress(100, started = SharingStarted.WhileSubscribed()) in <lambda>()
47 testStress(100, started = SharingStarted.WhileSubscribed(replayExpirationMillis = 0L)) in <lambda>()
51 testStress(100, started = SharingStarted.WhileSubscribed(stopTimeoutMillis = 50L)) in <lambda>()
55 testStress(1, started = SharingStarted.Lazily) in <lambda>()
59 testStress(1, started = SharingStarted.WhileSubscribed()) in <lambda>()
63 testStress(1, started = SharingStarted.WhileSubscribed(replayExpirationMillis = 0L)) in <lambda>()
65 private fun testStress(replay: Int, started: SharingStarted) = runTest { in <lambda>()
[all …]
/external/autotest/client/common_lib/
Dprofiler_manager_unittest.py16 started = 0 variable in stub_profiler
21 cls.started += 1
24 cls.started -= 1
89 started = stub_profiler.started
92 self.assertEqual(started + 2, stub_profiler.started)
100 started = stub_profiler.started
105 self.assertEqual(started, stub_profiler.started)
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/util/
DStandaloneMediaClock.java29 private boolean started; field in StandaloneMediaClock
50 if (!started) { in start()
52 started = true; in start()
60 if (started) { in stop()
62 started = false; in stop()
73 if (started) { in resetPosition()
81 if (started) { in getPositionUs()
97 if (started) { in setPlaybackSpeed()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowCountDownTimer.java10 private boolean started; field in ShadowCountDownTimer
20 this.started = false; in __constructor__()
25 started = true; in start()
31 started = false; in cancel()
43 return started; in hasStarted()
DShadowScroller.java15 private boolean started; field in ShadowScroller
62 started = true; in startScroll()
74 if (!started) { in computeScrollOffset()
77 started &= deltaTime() < duration; in computeScrollOffset()
/external/webrtc/modules/desktop_capture/
Ddesktop_capturer_differ_wrapper_unittest.cc261 int64_t started = rtc::TimeMillis(); in TEST() local
263 ASSERT_LE(rtc::TimeMillis() - started, 15000); in TEST()
267 int64_t started = rtc::TimeMillis(); in TEST() local
269 ASSERT_LE(rtc::TimeMillis() - started, 15000); in TEST()
273 int64_t started = rtc::TimeMillis(); in TEST() local
275 ASSERT_LE(rtc::TimeMillis() - started, 15000); in TEST()
279 int64_t started = rtc::TimeMillis(); in TEST() local
281 ASSERT_LE(rtc::TimeMillis() - started, 15000); in TEST()
286 int64_t started = rtc::TimeMillis(); in TEST() local
288 ASSERT_LE(rtc::TimeMillis() - started, 15000); in TEST()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/sharing/
DShareInTest.kt43 … val shared = flow.shareIn(this + sharingJob, started = SharingStarted.Lazily, replay = replay) in <lambda>()
126 private fun testWhileSubscribed(threshold: Int, started: SharingStarted) = runTest { in <lambda>()
134 in 0 until threshold -> assertFalse(flowState.started) in <lambda>()
141 in threshold + 1..n -> assertTrue(flowState.started) in <lambda>()
147 in threshold + 1..n -> assertTrue(flowState.started) in <lambda>()
149 in 0..threshold - 2 -> assertFalse(flowState.started) // should have stopped already in <lambda>()
160 val shared = flow.shareIn(this, started) in <lambda>()
163 assertFalse(flowState.started) // flow is not running even if we yield in <lambda>()
200 val started: Boolean get() = _started.value in <lambda>() constant in kotlinx.coroutines.flow.ShareInTest.FlowState
/external/rust/crates/anyhow/src/
Dfmt.rs36 started: false, in debug()
70 started: bool, field
79 if !self.started { in write_str()
80 self.started = true; in write_str()
114 started: false, in one_digit()
131 started: false, in two_digits()
148 started: false, in no_digits()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DShare.kt137 started: SharingStarted, in <lambda>()
147 scope.launchSharing(config.context, config.upstream, shared, started, NO_VALUE as T) in <lambda>()
198 started: SharingStarted, in launchSharing()
204 started === SharingStarted.Eagerly -> { in launchSharing()
208 started === SharingStarted.Lazily -> { in launchSharing()
215 started.command(shared.subscriptionCount) in launchSharing()
301 started: SharingStarted, in stateIn()
306 scope.launchSharing(config.context, config.upstream, state, started, initialValue) in stateIn()
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/python_utils/
Ddockerjob.py45 started = time.time()
46 while time.time() - started < timeout_seconds:
60 started = time.time()
61 while time.time() - started < timeout_seconds:
79 started = time.time()
80 while time.time() - started < timeout_seconds:
/external/ltp/testcases/kernel/controllers/freezer/
DTODO26 ./freezer/freeze_move_thaw.sh:22: "ERROR: cgroup freezer started in non-THAWED state"
27 ./freezer/freeze_cancel.sh:18: "ERROR: cgroup freezer started in non-THAWED state"
30 ./freezer/freeze_self_thaw.sh:31: "ERROR: cgroup freezer started in non-THAWED state" && {
31 ./freezer/freeze_thaw.sh:17: "ERROR: cgroup freezer started in non-THAWED state"
32 ./freezer/stop_freeze_thaw_cont.sh:18: "ERROR: cgroup freezer started in non-THAWED state"
33 ./freezer/freeze_write_freezing.sh:16: "ERROR: cgroup freezer started in non-THAWED state"
35 ./freezer/stop_freeze_sleep_thaw_cont.sh:18: "ERROR: cgroup freezer started in non-THAWED state"
37 ./freezer/freeze_sleep_thaw.sh:21: "ERROR: cgroup freezer started in non-THAWED state"
39 ./freezer/vfork_freeze.sh:36: "ERROR: cgroup freezer started in non-THAWED state" && {
40 ./freezer/freeze_kill_thaw.sh:19: "ERROR: cgroup freezer started in non-THAWED state"
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DAsyncCall.cs90 GrpcPreconditions.CheckState(!started); in UnaryCall()
91 started = true; in UnaryCall()
155 GrpcPreconditions.CheckState(!started); in UnaryCallAsync()
156 started = true; in UnaryCallAsync()
195 GrpcPreconditions.CheckState(!started); in ClientStreamingCallAsync()
196 started = true; in ClientStreamingCallAsync()
231 GrpcPreconditions.CheckState(!started); in StartServerStreamingCall()
232 started = true; in StartServerStreamingCall()
269 GrpcPreconditions.CheckState(!started); in StartDuplexStreamingCall()
270 started = true; in StartDuplexStreamingCall()
[all …]
/external/libcups/scheduler/
Dserver.c26 static int started = 0; /* Did we start the server already? */ variable
87 started = 1; in cupsdStartServer()
100 if (!started) in cupsdStopServer()
191 started = 0; in cupsdStopServer()
/external/llvm-project/clang/test/SemaObjC/
Dmissing-atend-metadata.m6 @implementation I0 // expected-note {{implementation started here}}
12 @implementation I1 // expected-note {{implementation started here}}
19 @implementation I2 // expected-note {{implementation started here}}
22 …ation I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation started here}}
/external/clang/test/SemaObjC/
Dmissing-atend-metadata.m6 @implementation I0 // expected-note {{implementation started here}}
12 @implementation I1 // expected-note {{implementation started here}}
19 @implementation I2 // expected-note {{implementation started here}}
22 …ation I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation started here}}
/external/llvm-project/clang/test/Parser/
Dmissing-end-4.m5 @implementation X1 // expected-note {{implementation started here}}
12 @implementation X2 // expected-note {{implementation started here}}
17 @interface X6 // expected-note {{class started here}}
22 @protocol P1 // expected-note {{protocol started here}}
27 @interface X4 // expected-note {{class started here}}
Dmissing-end-2.m4 @interface A // expected-note {{class started here}}
10 @interface B { // expected-note {{class started here}}
16 @interface C // expected-note 2 {{class started here}}
/external/clang/test/Parser/
Dmissing-end-4.m5 @implementation X1 // expected-note {{implementation started here}}
12 @implementation X2 // expected-note {{implementation started here}}
17 @interface X6 // expected-note {{class started here}}
22 @protocol P1 // expected-note {{protocol started here}}
27 @interface X4 // expected-note {{class started here}}
/external/libcap/tests/
Dpsx_test.c43 int started = 0; variable
49 started++; in say_hello()
126 while (started < launched) { in main()
127 printf("[%d] started=%d vs %d\n", getpid(), started, launched); in main()
130 printf("[%d] started=%d vs %d\n", getpid(), started, launched); in main()
/external/llvm-project/llvm/test/MC/X86/
Dalign-branch-mixed.s12 # This call should have started at 0x1e and ends at 0x23, so two bytes of
19 # If the previous call was not aligned, this jmp should have started at 0x3f
31 # This jne should have started at 0x7e, so two bytes of padding are inserted
38 # If the previous jne was not aligned, this jmp should have started at 0x3c.
40 # have started at 0x9e, so two bytes of padding are inserted and it starts at
/external/google-breakpad/src/client/ios/
DBreakpadController.mm166 NSAssert(started_, @"The controller must be started before "
177 @"The controller must be started before setUploadingEnabled is called");
196 @"The controller must not be started when updateConfiguration is called");
206 @"The controller must not be started when resetConfiguration is called");
217 @"The controller must not be started when setUploadingURL is called");
223 @"The controller must not be started when setUploadInterval is called");
231 NSAssert(!started_, @"The controller must not be started when "
239 @"The controller must be started before addUploadParameter is called");
248 @"The controller must not be started before setUploadCallback is "
256 NSAssert(started_, @"The controller must be started before "
[all …]
/external/oss-fuzz/docs/getting-started/
Dgetting_started.md3 title: Getting started
6 permalink: /getting-started/
9 # Getting started
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DDebugTextViewHelper.java39 private boolean started; field in DebugTextViewHelper
58 if (started) { in start()
61 started = true; in start()
71 if (!started) { in stop()
74 started = false; in stop()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/scheduling/
DCoroutineSchedulerCloseStressTest.kt35 private val started = atomic(0) constant in kotlinx.coroutines.scheduling.CoroutineSchedulerCloseStressTest
62 started.value = 0 in <lambda>()
67 assertEquals(N_COROS, started.value) in <lambda>()
72 started.incrementAndGet() in launchChild()

12345678910>>...59