Searched refs:started (Results 1 - 25 of 157) sorted by relevance

1234567

/external/valgrind/none/tests/
H A Dbug129866.stdout.exp0 started
/external/strace/qemu_multiarch_testing/
H A Dparallel-build-hdc-img.sh15 started=false
21 started=true
24 $started || {
/external/iproute2/lib/
H A Ddnet_ntop.c19 static __inline__ int do_digit(char *str, u_int16_t *addr, u_int16_t scale, size_t *pos, size_t len, int *started) argument
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/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCountDownTimer.java12 private boolean started; field in class:ShadowCountDownTimer
21 this.started = false;
26 started = true;
33 started = false;
51 return started;
/external/autotest/client/common_lib/
H A Dprofiler_manager_unittest.py16 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_profile
[all...]
/external/opencv3/modules/videoio/src/
H A Dcap_winrt_capture.hpp48 VideoCapture_WinRT() : started(false) {}
65 bool started; member in class:cv::VideoCapture_WinRT
H A Dcap_winrt_capture.cpp123 VideoCapture_WinRT::VideoCapture_WinRT(int device) : started(false)
130 return true; // started;
138 // if device is not started we must return true so retrieveFrame() is called to start device
140 if (!started) return true;
157 if (!started) {
173 started = true;
177 if (!started) return false;
/external/jetty/src/java/org/eclipse/jetty/io/
H A DBufferUtil.java46 boolean started= false;
53 if (started)
59 started= true;
61 else if (b == MINUS && !started)
69 if (started)
84 boolean started= false;
91 if (started)
97 started= true;
99 else if (b == MINUS && !started)
107 if (started)
[all...]
/external/testng/src/test/java/test/listeners/
H A DSuiteAndConfigurationListenerTest.java25 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:");
/external/vboot_reference/tests/
H A Drbtest.conf19 start on started shill
/external/chromium-trace/catapult/third_party/typ/typ/
H A Dstats.py21 self.started = 0
64 out += '%5.1f' % (self.started * 100.0 / self.total)
68 out += str(self.started - self.finished)
70 out += str(self.started)
H A Djson_results.py35 def __init__(self, name, actual, started, took, worker,
40 self.started = started
/external/chromium-trace/catapult/third_party/typ/typ/tests/
H A Dstats_test.py29 s.started = 3
34 s.started = 5
58 s.started = 3
/external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
H A Dtracer.h29 /* Has the tracer been started? */
30 int started; member in struct:CTracer
/external/tlsdate/init/
H A Dtlsdated-cros.conf8 start on started system-services
/external/skia/tools/
H A Dwin_dbghelp.cpp98 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) {
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dbss_load.c25 if (!(hapd->beacon_set_done && hapd->started))
/external/wpa_supplicant_8/src/ap/
H A Dbss_load.c25 if (!(hapd->beacon_set_done && hapd->started))
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dbss_load.c25 if (!(hapd->beacon_set_done && hapd->started))
/external/chromium-trace/catapult/third_party/Paste/paste/
H A Dmodpython.py109 self.started = False
163 if not self.started:
169 if not self.started:
179 if self.started:
197 if not self.started:
198 self.started = True
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DAnimatedGifEncoder.java56 private boolean started = false; // ready to output frames field in class:AnimatedGifEncoder
151 if ((im == null) || !started) {
190 if (!started)
193 started = false;
255 if (started && !firstFrame)
285 return started = ok;
304 return started = ok;
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dauthenticator.py80 self.started = False
89 self.started = True
112 if self.started and self.authserver:
/external/chromium-trace/catapult/experimental/heatmap/
H A Ddraw.js67 var started = false;
76 if (started) {
80 started = true;
/external/libnl/lib/
H A Daddr.c49 size_t *pos, size_t len, int *started)
56 if (((tmp) > 0) || *started || (scale == 1)) {
58 *started = 1;
72 int started = 0; local
82 if (do_digit(str + pos, &area, 10, &pos, len, &started))
85 if (do_digit(str + pos, &area, 1, &pos, len, &started))
93 started = 0;
95 if (do_digit(str + pos, &addr, 1000, &pos, len, &started))
98 if (do_digit(str + pos, &addr, 100, &pos, len, &started))
101 if (do_digit(str + pos, &addr, 10, &pos, len, &started))
48 do_digit(char *str, uint16_t *addr, uint16_t scale, size_t *pos, size_t len, int *started) argument
[all...]
/external/doclava/src/com/google/doclava/
H A DSampleTagInfo.java216 boolean started = false;
236 if (started) {
249 started = true;
251 if (started) {

Completed in 2216 milliseconds

1234567