HomeSort by relevance Sort by last modified time
    Searched refs:started (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/1905-suspend-native/
native_suspend.cc 34 std::atomic<bool> started(false);
38 started.store(true);
43 return started.load();
  /external/iproute2/lib/
dnet_ntop.c 19 static __inline__ int do_digit(char *str, u_int16_t *addr, u_int16_t scale, size_t *pos, size_t len, int *started)
26 if (((tmp) > 0) || *started || (scale == 1)) {
28 *started = 1;
41 int started = 0; local
55 if (do_digit(str + pos, &area, 10, &pos, len, &started))
58 if (do_digit(str + pos, &area, 1, &pos, len, &started))
66 started = 0;
68 if (do_digit(str + pos, &addr, 1000, &pos, len, &started))
71 if (do_digit(str + pos, &addr, 100, &pos, len, &started))
74 if (do_digit(str + pos, &addr, 10, &pos, len, &started))
    [all...]
  /external/tensorflow/tensorflow/examples/get_started/
__init__.py 15 """A collection of "getting started" examples."""
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowCountDownTimer.java 10 private boolean started; field in class:ShadowCountDownTimer
20 this.started = false;
25 started = true;
31 started = false;
43 return started;
ShadowScroller.java 15 private boolean started; field in class:ShadowScroller
62 started = true;
74 if (!started) {
77 started &= deltaTime() < duration;
ShadowOverScroller.java 18 private boolean started; field in class:ShadowOverScroller
65 started = true;
93 if (!started) {
96 started &= deltaTime() < duration;
  /external/perfetto/src/traced/service/
service.cc 37 bool started; local
41 started = svc->Start(std::move(producer_fd), std::move(consumer_fd));
45 started = svc->Start(GetProducerSocket(), GetConsumerSocket());
48 if (!started) {
64 PERFETTO_ILOG("Started traced, listening on %s %s", GetProducerSocket(),
  /external/autotest/client/common_lib/
profiler_manager_unittest.py 16 started = 0 variable in class: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
    [all...]
  /art/test/1944-sudden-exit/src/art/
Test1944.java 26 public static void fib(Semaphore started) {
27 started.release();
45 final Semaphore started = new Semaphore(-(num_threads - 1)); local
54 threads[i] = new Thread(() -> { fib(started); });
60 started.acquire();
61 System.out.println("All threads started");
  /art/test/1908-suspend-native-resume-self/
native_suspend_resume.cc 34 std::atomic<bool> started(false);
42 started.store(true);
51 return started.load();
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
FailingClientStream.java 27 * ClientStreamListener#closed}) when started, and silently does nothing for the other operations.
30 private boolean started; field in class:FailingClientStream
52 Preconditions.checkState(!started, "already started");
53 started = true;
  /external/testng/src/test/java/test/listeners/
SuiteAndConfigurationListenerTest.java 25 private static volatile AtomicInteger started = new AtomicInteger(0); field in class:SuiteAndConfigurationListenerTest.MyListener
32 started.incrementAndGet();
55 Assert.assertEquals(MyListener.started.get(), 1, "ISuiteListener was not invoked exactly once:");
  /art/runtime/
experimental_flags.h 67 bool started = false; local
69 stream << (started ? "|" : "") << "kMethodHandles";
70 started = true;
72 if (!started) {
  /art/test/1920-suspend-native-monitor/
native_suspend_monitor.cc 36 std::atomic<bool> started(false);
52 started.store(true);
60 return started.load();
74 started.store(false);
  /art/test/1921-suspend-native-recursive-monitor/
native_suspend_recursive_monitor.cc 36 std::atomic<bool> started(false);
55 started.store(true);
66 return started.load();
81 started.store(false);
  /external/perfetto/src/traced/probes/
probes_data_source.h 47 bool started = false; // Set by probes_producer.cc. member in class:perfetto::ProbesDataSource
  /device/google/crosshatch/
init.qcom.devstart.sh 8 log SLPI boot started.
  /external/vboot_reference/tests/
rbtest.conf 19 start on started shill
  /external/libxcam/xcore/
xcam_thread.h 44 virtual bool started ();
  /art/test/1959-redefine-object-instrument/src/
Main.java 35 public static volatile boolean started = false; field in class:Main
49 started = true;
61 while (!started || thr.getState() != Thread.State.TIMED_WAITING);
  /art/test/1951-monitor-enter-no-suspend/
raw_monitor.cc 69 static std::atomic<bool> started(false);
82 started = true;
92 while (!started) {}
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
Animatable2Callback.java 61 // Return immediately if the AVD has already started.
94 public void assertStarted(boolean started) {
95 assertEquals(started, mStarted);
96 if (started) {
  /external/grpc-grpc/tools/run_tests/python_utils/
dockerjob.py 45 started = time.time()
46 while time.time() - started < timeout_seconds:
59 started = time.time()
60 while time.time() - started < timeout_seconds:
  /external/curl/docs/cmdline-opts/
junk-session-cookies.d 9 a new session is started. Typical browsers always discard session cookies when
  /external/fonttools/Doc/source/designspaceLib/
index.rst 5 MutatorMath started out with its own reader and writer for designspaces.

Completed in 3200 milliseconds

1 2 3 4 5 6 7 8 91011>>