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

1234

/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/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/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/rule/
H A DMockWebServerRule.java37 private boolean started; field in class:MockWebServerRule
40 if (started) return;
41 started = true;
58 if (!started) before();
63 if (!started) before();
/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/vboot_reference/tests/
H A Drbtest.conf19 start on started shill
/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/openssh/contrib/hpux/
H A Degd.rc72 echo $WHAT 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/trace-viewer/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/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) {
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DCssFuzzerTest.java61 long started; field in class:CssFuzzerTest.Watcher
70 long started = this.started;
72 if (now - started >= 1000000000L /* ns = 1s */) {
108 watcher.started = System.nanoTime();
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpServer.java74 private boolean started = false; field in class:Support_HttpServer
97 if (started) {
100 started = true;
122 started = false;
/external/boringssl/src/crypto/bytestring/
H A Dcbb.c353 int started = 0; local
361 if (!started) {
371 started = 1;
379 if (!started && !CBB_add_u8(&child, 0)) {
/external/llvm/test/MC/X86/AlignedBundling/
H A Dsingle-inst-bundling.s21 # This imull is 3 bytes long and should have started at 0xe, so two bytes
/external/e2fsprogs/lib/et/
H A Derror_message.c122 int started = 0; local
184 started++;
186 if (started || offset >= 10) {
/external/bison/lib/glthread/
H A Dlock.c648 if (InterlockedIncrement (&lock->guard.started) == 0)
788 if (InterlockedIncrement (&lock->guard.started) == 0)
842 if (InterlockedIncrement (&lock->guard.started) == 0)
966 if (InterlockedIncrement (&lock->guard.started) == 0)
1023 if (InterlockedIncrement (&once_control->started) == 0)
1036 InterlockedDecrement (&once_control->started);
1037 /* Some other thread has already started the initialization.
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractExecutionThreadServiceTest.java309 final CountDownLatch started = new CountDownLatch(1);
313 started.await();
318 started.countDown();
/external/jetty/src/java/org/eclipse/jetty/util/thread/
H A DQueuedThreadPool.java238 throw new IllegalStateException("started");
267 throw new IllegalStateException("started");
432 boolean started=false;
442 started=true;
446 if (!started)
449 return started;
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp_i.h128 int started; /* nonzero if we are active */ member in struct:upnp_wps_device_sm

Completed in 724 milliseconds

1234