Home
last modified time | relevance | path

Searched refs:running (Results 1 – 25 of 874) sorted by relevance

12345678910>>...35

/external/valgrind/main/docs/internals/
Dtm-threadstates.dot4 running;
12 alive -> running;
15 running -> wait_join [ label="wait for another\nthread termination" ];
16 wait_join -> running [ label="target thread\nterminates" ];
18 running -> zombie [ label="non-detached thread\nterminates" ];
20 running -> dead [ label="detached thread\nterminates" ];
22 running -> wait_mutex [ label="wait for mutex\nacquisition" ];
23 wait_mutex -> running [ label="mutex\nacquired" ];
24 wait_mutex -> running [ label="mutex\ngiven up" ];
26 running -> wait_condvar [ label="wait for condition variable" ];
[all …]
/external/valgrind/main/none/tests/x86/
Dyield.c14 static volatile int alive, running; variable
24 running++; in spinner()
39 running++; in rep_nopper()
66 while(running < 2) in main()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAbstractServiceTest.java43 assertFalse(service.running); in testNoOpServiceStartStop()
48 assertTrue(service.running); in testNoOpServiceStartStop()
53 assertFalse(service.running); in testNoOpServiceStartStop()
121 boolean running = false; field in AbstractServiceTest.NoOpService
124 assertFalse(running); in doStart()
125 running = true; in doStart()
130 assertTrue(running); in doStop()
131 running = false; in doStop()
/external/qemu/docs/
DANDROID-ADB-QEMU.TXT9 daemon running in the guest will be broken, and will not be reestablish until ADB
12 ADB daemon running in the guest.
29 accepting connections coming from the ADB daemon running in the guest, and
32 Essentially, ADB server, and ADB client serve as a bridge between ADB running on
33 the host, and ADB running on the guest: ADB server receives data from ADB host,
/external/qemu/
Dvl-android-ui.c70 int running; member
81 ioh->running = 1; in ioh_callback()
88 ioh->running = 0; in ioh_callback()
113 if (ioh->running) { in qemu_set_fd_handler()
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
DDecodeHandler.java40 private boolean running = true; field in DecodeHandler
50 if (!running) { in handleMessage()
56 running = false; in handleMessage()
/external/tinyalsa/
Dpcm.c161 int running:1; member
397 if (!pcm->running) { in pcm_write()
402 pcm->running = 1; in pcm_write()
406 pcm->running = 0; in pcm_write()
434 if (!pcm->running) { in pcm_read()
441 pcm->running = 0; in pcm_read()
594 pcm->running = 0; in pcm_close()
766 pcm->running = 1; in pcm_start()
775 pcm->running = 0; in pcm_stop()
942 if (!pcm->running && in pcm_mmap_write()
[all …]
/external/v8/test/mjsunit/
Ddebug-suspend.js59 assertTrue(backtrace_response.running, backtrace_request + ' -> expected running');
68 assertFalse(suspend_response.running, suspend_request + ' -> expected not running');
Ddebug-continue.js61 assertTrue(response.running, request + ' -> expected running');
64 assertFalse(response.running, request + ' -> expected not running');
Ddebug-backtrace.js72 ParsedResponse.prototype.running = function() { method in ParsedResponse
73 return this.response_.running;
123 assertFalse(response.running(), "expected not running");
253 assertTrue(response.running(), "expected running");
Ddebug-return-value.js54 ParsedResponse.prototype.running = function() { method in ParsedResponse
55 return this.response_.running;
/external/chromium/chrome/browser/ui/views/frame/
Dbrowser_frame.cc38 void BrowserFrame::UpdateThrobber(bool running) { in UpdateThrobber() argument
39 browser_frame_view_->UpdateThrobber(running); in UpdateThrobber()
/external/chromium/chrome/browser/sync/glue/
Dbookmark_change_processor.cc137 DCHECK(!running()) << "BookmarkModel deleted while ChangeProcessor running."; in BookmarkModelBeingDeleted()
144 DCHECK(running()); in BookmarkNodeAdded()
186 DCHECK(running()); in BookmarkNodeRemoved()
192 DCHECK(running()); in BookmarkNodeChanged()
225 DCHECK(running()); in BookmarkNodeMoved()
252 DCHECK(running()); in BookmarkNodeFaviconLoaded()
353 if (!running()) in ApplyChangesFromSyncModel()
Dpassword_change_processor.cc55 DCHECK(running()); in Observe()
131 if (!running()) in ApplyChangesFromSyncModel()
190 if (!running()) in CommitChangesFromSyncModel()
/external/junit/src/junit/framework/
DTestCase.java135 } catch (Throwable running) { in runBare()
136 exception= running; in runBare()
/external/valgrind/main/none/tests/s390x/
Dop_exception.stderr.exp8 location. If you are running Memcheck and you just saw a
21 location. If you are running Memcheck and you just saw a
34 location. If you are running Memcheck and you just saw a
47 location. If you are running Memcheck and you just saw a
/external/quake/quake/src/WinQuake/data/
DREADME.TXT3 This file details how to get Quake running on your system and what to do
17 8MB RAM minimum, 16MB recommended (16 MB required for running under Win95)
30 1) If running from Windows, start Quake from an icon, or from a windowed
31 (not fullscreen) MS-DOS prompt. If Quake is already running and has
35 2) If running from DOS, either put the line
84 Q95.BAT file to exit the first time you run it, without running Quake.
129 Before running Quake, make sure that your sound card works and your
178 If you are going to be running Quake with only 8 megabytes of RAM, it is best
275 If you experience page faults while running Quarterdeck's QDPMI DPMI server,
277 issue the command QDPMI OFF before running QUAKE, or get the update patch
[all …]
/external/oprofile/gui/
Doprof_start_util.cpp50 : running(false), in daemon_status()
60 running = true; in daemon_status()
81 running = true; in daemon_status()
/external/apache-harmony/luni/src/test/resources/net.resources/
DREADME.txt62 Before running the unit tests for the java.net types the following steps should
82 The location of the properties file can be specified to the running tests
89 all running on the local machine of the tests user.
94 * DomainAddress : The domain name of the host where the HTTP server is running.
96 * WebName : The unqualified name of the host where the HTTP server is running.
/external/v8/src/
Dd8-debug.cc101 bool running = false; in HandleDebugEvent() local
102 while (!running) { in HandleDebugEvent()
104 PrintPrompt(running); in HandleDebugEvent()
156 running = in HandleDebugEvent()
/external/wpa_supplicant_8/src/l2_packet/
Dl2_packet_winpcap.c57 int running; member
132 while (l2->running) { in l2_packet_receive_thread()
243 l2->running = 1; in l2_packet_init()
280 l2->running = 0; in l2_packet_deinit()
/external/icu4c/samples/legacy/
DREADME2 This example demonstrates running an instance of ICU 1.8.1. together with a current version of ICU…
15 Building and running of the example:
25 Run make check. You should get two different libraries running at the same time.
40 …n see which data library is not found by the part of the program that is running. Make sure progra…
/external/qemu/distrib/sdl-1.2.15/
DREADME.wscons6 without running X. So far, the driver only runs on the Sharp Zaurus,
15 "--enable-video-wscons" option when running configure. I used the
38 running).
90 When running MAME, DO NOT SET SDL_VIDEO_WSCONS_ROTATION! Performace
/external/chromium-trace/trace-viewer/src/
Dunittest.js137 this.running = false;
185 } else if (this.running) {
199 return this.results && this.running == false;
204 this.running = true;
212 this.running = false;
/external/compiler-rt/lib/tsan/lit_tests/
Dlit.cfg13 "Try running your test from the build tree or running " +
59 # Setup environment variables for running ThreadSanitizer.

12345678910>>...35