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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/
bug129866.stdout.exp 0 started
  /external/syslinux/gpxe/src/core/
init.c 31 static int started = 0; variable
61 if ( started )
70 started = 1;
88 if ( ! started )
97 started = 0;
  /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."""
  /frameworks/base/core/java/android/service/dreams/
IDreamService.aidl 25 void attach(IBinder windowToken, boolean canDoze, IRemoteCallback started);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCountDownTimer.java 12 private boolean started; field in class:ShadowCountDownTimer
21 this.started = false;
26 started = true;
33 started = false;
51 return started;
  /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;
  /system/tpm/attestation/server/
attestationd.conf 20 start on started tcsd and started boot-services
  /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/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/vboot_reference/tests/
rbtest.conf 19 start on started shill
  /external/libxcam/xcore/
xcam_thread.h 44 virtual bool started ();
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
BluetoothCallback.java 26 void onScanningStateChanged(boolean started);
  /tools/test/connectivity/acts/framework/acts/controllers/
iperf_client.py 33 self.started = False
47 if self.started:
60 self.started = True
iperf_server.py 36 remote iperf servers will be started on those devices
215 self.started = False
226 if self.started:
237 self.started = True
243 if not self.started:
246 self.started = False
263 self.started = False
274 if self.started:
286 self.started = True
292 if not self.started
    [all...]
  /test/vts/utils/python/controllers/
event_dispatcher.py 47 self.started = False
62 while self.started:
68 if self.started:
112 if self.started:
114 " started"))
133 if not self.started:
134 self.started = True
138 raise IllegalStateError("Dispatcher is already started.")
150 if not self.started:
152 self.started = Fals
    [all...]
  /prebuilts/go/darwin-x86/src/testing/
sub_test.go 34 started bool
42 {typ: add1, running: 1, waiting: 0, started: true},
43 {typ: done, running: 0, waiting: 0, started: false},
48 {typ: add1, running: 1, waiting: 0, started: true},
49 {typ: add1, running: 1, waiting: 1, started: false},
50 {typ: done, running: 1, waiting: 0, started: true},
51 {typ: done, running: 0, waiting: 0, started: false},
52 {typ: add1, running: 1, waiting: 0, started: true},
57 {typ: add1, running: 1, waiting: 0, started: true},
58 {typ: add1, running: 2, waiting: 0, started: true}
    [all...]

Completed in 711 milliseconds

1 2 3 4 5 6 7 8 91011>>