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

1 23 4 5 6 7 8 91011>>

  /tools/test/connectivity/acts/tests/google/power/tel/lab/temp/
iperf_server.py 213 self.started = False
224 if self.started:
243 self.started = True
249 if not self.started:
253 self.started = False
263 self.started = False
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
AnimatedGifEncoder.java 56 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/python/cpython2/Lib/test/
test_thread.py 108 started = []
110 started.append(None)
114 while not started:
132 started.release()
141 started = thread.allocate_lock()
145 started.acquire()
147 started.acquire()
237 # any additional threads (such as the one started by
  /external/python/cpython3/Lib/test/
test_thread.py 106 started = []
108 started.append(None)
112 while not started:
130 started.release()
139 started = thread.allocate_lock()
143 started.acquire()
145 started.acquire()
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_thread.py 112 started = []
114 started.append(None)
118 while not started:
136 started.release()
145 started = thread.allocate_lock()
149 started.acquire()
151 started.acquire()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_thread.py 112 started = []
114 started.append(None)
118 while not started:
136 started.release()
145 started = thread.allocate_lock()
149 started.acquire()
151 started.acquire()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 112 started = []
114 started.append(None)
118 while not started:
136 started.release()
145 started = thread.allocate_lock()
149 started.acquire()
151 started.acquire()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 112 started = []
114 started.append(None)
118 while not started:
136 started.release()
145 started = thread.allocate_lock()
149 started.acquire()
151 started.acquire()
  /art/test/1930-monitor-info/src/art/
Monitors.java 126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
  /art/test/1931-monitor-events/src/art/
Monitors.java 126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
  /art/test/1932-monitor-events-misc/src/art/
Monitors.java 126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
  /art/test/1933-monitor-current-contended/src/art/
Monitors.java 126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
  /art/test/1934-jvmti-signal-thread/src/art/
Monitors.java 126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
HandleMap.java 45 public boolean started = false; field in class:HandleMap.Entry
115 void setStarted(int serverIf, int handle, boolean started) {
122 entry.started = started;
193 sb.append(", started " + entry.started);
  /external/libevent/test/
bench_httpclient.c 65 struct timeval started; member in struct:request_info
92 evutil_timersub(&now, &ri->started, &diff);
163 evutil_gettimeofday(&ri->started, NULL);
  /external/libmojo/mojo/public/js/
threading.js 12 // intended to be used by Mojo JS application started by the JS
  /external/libnl/lib/
addr.c 51 size_t *pos, size_t len, int *started)
58 if (((tmp) > 0) || *started || (scale == 1)) {
60 *started = 1;
74 int started = 0; local
84 if (do_digit(str + pos, &area, 10, &pos, len, &started))
87 if (do_digit(str + pos, &area, 1, &pos, len, &started))
95 started = 0;
97 if (do_digit(str + pos, &addr, 1000, &pos, len, &started))
100 if (do_digit(str + pos, &addr, 100, &pos, len, &started))
103 if (do_digit(str + pos, &addr, 10, &pos, len, &started))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
parsetok.c 134 int started = 0; local
164 if (type == ENDMARKER && started) {
166 started = 0;
178 started = 1;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
parsetok.c 143 int started = 0; local
175 if (type == ENDMARKER && started) {
179 started = 0;
191 started = 1;
  /external/adhd/cras/src/server/
audio_thread.h 24 * input_streaming - For capture, has the input started?
39 * started - Non-zero if the thread has started successfully.
47 int started; member in struct:audio_thread
187 * Ramping is started/updated in audio thread. This function lets the main
  /external/doclava/src/com/google/doclava/
SampleTagInfo.java 216 boolean started = false;
236 if (started) {
249 started = true;
251 if (started) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
2-5.c 77 int started; /* # of threads which are already waiting */ member in struct:_td
98 /* Tell the parent this thread is started */
99 data.started++;
301 data.started = 0;
316 /* Wait for the threads to be started */
321 loc_started = data.started;
  /external/python/cpython2/Parser/
parsetok.c 134 int started = 0; local
164 if (type == ENDMARKER && started) {
166 started = 0;
178 started = 1;
  /external/syslinux/gpxe/src/net/80211/
rc80211.c 141 int started; member in struct:rc80211_ctx
215 ctx->started = 1;
252 if ( ! ctx->started ) {
319 if ( ! ctx->started )
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/parse/
labelbug.s 15 ; started with a non-numeric character.

Completed in 2205 milliseconds

1 23 4 5 6 7 8 91011>>