HomeSort by relevance Sort by last modified time
    Searched refs:started (Results 1 - 25 of 577) 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;
  /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...]
  /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;
  /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...]
  /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:");
  /packages/apps/Launcher3/tests/src/com/android/launcher3/util/
SimpleActivityMonitor.java 30 public final ArrayList<Activity> started = new ArrayList<>(); field in class:SimpleActivityMonitor
40 started.add(activity);
55 started.remove(activity);
  /art/runtime/
experimental_flags.h 67 bool started = false; local
69 stream << (started ? "|" : "") << "kMethodHandles";
70 started = true;
72 if (!started) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
BluetoothCallback.java 26 void onScanningStateChanged(boolean started);
  /external/vboot_reference/tests/
rbtest.conf 19 start on started shill
  /test/vts/utils/python/controllers/
event_dispatcher.py 47 self.started = False
62 while self.started:
68 if self.started:
111 if self.started:
113 " started"))
132 if not self.started:
133 self.started = True
137 raise IllegalStateError("Dispatcher is already started.")
149 if not self.started:
151 self.started = Fals
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
event_dispatcher.py 48 self.started = False
63 while self.started:
69 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...]
iperf_server.py 125 self.started = False
136 if self.started:
147 self.started = True
150 if self.started:
152 self.started = False
  /prebuilts/go/darwin-x86/src/testing/
sub_test.go 27 started bool
35 {typ: add1, running: 1, waiting: 0, started: true},
36 {typ: done, running: 0, waiting: 0, started: false},
41 {typ: add1, running: 1, waiting: 0, started: true},
42 {typ: add1, running: 1, waiting: 1, started: false},
43 {typ: done, running: 1, waiting: 0, started: true},
44 {typ: done, running: 0, waiting: 0, started: false},
45 {typ: add1, running: 1, waiting: 0, started: true},
50 {typ: add1, running: 1, waiting: 0, started: true},
51 {typ: add1, running: 2, waiting: 0, started: true}
    [all...]
  /prebuilts/go/linux-x86/src/testing/
sub_test.go 27 started bool
35 {typ: add1, running: 1, waiting: 0, started: true},
36 {typ: done, running: 0, waiting: 0, started: false},
41 {typ: add1, running: 1, waiting: 0, started: true},
42 {typ: add1, running: 1, waiting: 1, started: false},
43 {typ: done, running: 1, waiting: 0, started: true},
44 {typ: done, running: 0, waiting: 0, started: false},
45 {typ: add1, running: 1, waiting: 0, started: true},
50 {typ: add1, running: 1, waiting: 0, started: true},
51 {typ: add1, running: 2, waiting: 0, started: true}
    [all...]
  /hardware/interfaces/wifi/1.0/
IWifi.hal 50 * @return started true if started, false otherwise.
52 isStarted() generates (bool started);
56 * is already started then this must be a noop.
  /packages/services/Car/libvehiclenetwork/libvehiclenetwork-audio-helper/include/
VehicleNetworkAudioHelper.h 71 bool started; member in class:android::VehicleNetworkAudioHelper::StreamState
74 started(false) { };
  /external/skia/tools/
win_dbghelp.cpp 98 bool started = false; local
102 if (!started && strncmp(start, line, strlen(start)) == 0) {
103 started = true;
104 } else if (started && strncmp(stop, line, strlen(stop)) == 0) {
106 } else if (started) {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 49 boolean started = false; field in class:HttpURLConnectionTest.MockServer
65 started = true;
167 if (!httpServer.started) {
202 if (!server.started) bound.wait(5000);
206 if (!proxy.started) bound.wait(5000);
247 if (!server.started) bound.wait(5000);
251 if (!proxy.started) bound.wait(5000);
  /cts/tests/app/src/android/app/cts/
ActivityManager_RunningServiceInfoTest.java 40 mRunningServiceInfo.started = true;
67 assertTrue(values.started);
87 assertTrue(values.started);
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
TestJobListener.java 36 @Nullable private Job started; field in class:TestJobListener
41 started = job;
51 if (started == null) {
  /external/openssh/contrib/hpux/
egd.rc 72 echo $WHAT started
  /external/wpa_supplicant_8/src/ap/
bss_load.c 25 if (!(hapd->beacon_set_done && hapd->started))

Completed in 1582 milliseconds

1 2 3 4 5 6 7 8 91011>>