Searched defs:running (Results 1 - 25 of 83) sorted by relevance

1234

/external/oprofile/gui/
H A Doprof_start_util.h23 bool running; ///< true if daemon is running member in struct:daemon_status
/external/chromium_org/base/
H A Drun_loop.h50 bool running() const { return running_; } function in class:base::RunLoop
56 // RunLoop has already finished running has no effect.
59 // targetted message loop. If a nested message loop continues running, the
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dpost_decode_vad.h54 bool running() const { return running_; } function in class:webrtc::PostDecodeVad
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-backtrace.js72 ParsedResponse.prototype.running = function() {
73 return this.response_.running;
123 assertFalse(response.running(), "expected not running");
244 // New copy of debug command processor in running state.
253 assertTrue(response.running(), "expected running");
H A Ddebug-return-value.js54 ParsedResponse.prototype.running = function() {
55 return this.response_.running;
/external/valgrind/main/none/tests/x86/
H A Dyield.c14 static volatile int alive, running; variable
24 running++;
39 running++;
66 while(running < 2)
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DGeolocationTest.java94 private void ensureGeolocationRunning(final boolean running) throws Exception { argument
98 return mMockLocationProvider.isRunning() == running;
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DContentViewLocationTest.java72 private void ensureGeolocationRunning(final boolean running) throws Exception { argument
76 return mMockLocationProvider.isRunning() == running;
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeHandler.java40 private boolean running = true; field in class:DecodeHandler
50 if (!running) {
56 running = false;
/external/chromium_org/content/shell/renderer/test_runner/
H A DWebTestInterfaces.cpp47 void WebTestInterfaces::setTestIsRunning(bool running) argument
49 m_interfaces->setTestIsRunning(running);
H A DTestInterfaces.cpp108 void TestInterfaces::setTestIsRunning(bool running) argument
110 m_testRunner->SetTestIsRunning(running);
/external/chromium_org/native_client_sdk/src/examples/demo/pi_generator/
H A Dpi_generator.cc79 bool running = true; local
80 while (running) {
90 running = Render(ctx);
/external/chromium_org/v8/src/
H A Dd8-debug.cc69 bool running = false; local
70 while (!running) {
72 PrintPrompt(running);
114 // Convert the debugger response into text details and the running state.
126 running = response_details->Get(String::NewFromUtf8(isolate, "running"))
H A Dcpu-profiler.h135 INLINE(bool running()) { return running_; } function in class:v8::internal::ProfilerEventsProcessor
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Drdpmc.c36 u64 count, cyc = 0, time_offset = 0, enabled, running, delta; local
43 running = pc->time_running;
45 if (enabled != running) {
60 if (enabled != running) {
70 running += delta;
72 quot = count / running;
73 rem = count % running;
74 count = quot * enabled + (rem * enabled) / running;
/external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
H A DSDL_romaudio.c117 static volatile UInt32 running = 0; variable
202 if ( running ) {
290 running = 1;
301 running = 0;
/external/android-clat/
H A Dclatd.c59 volatile sig_atomic_t running = 1; variable
65 running = 0;
338 running = 0;
386 while(running) {
414 * in case the user is running this on the command line
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_frame.cc128 // you're running a binary that doesn't have a matching .desktop
178 void BrowserFrame::UpdateThrobber(bool running) { argument
179 browser_frame_view_->UpdateThrobber(running);
239 // When running under remote desktop, if the remote desktop client is not
/external/chromium_org/net/base/
H A Dprioritized_dispatcher_unittest.cc47 bool running() const { function in class:net::__anon8458::PrioritizedDispatcherTest::TestJob
205 // Allow only one running job.
214 ASSERT_TRUE(job_a->running());
216 ASSERT_TRUE(job_b->running());
218 ASSERT_TRUE(job_c->running());
220 ASSERT_TRUE(job_d->running());
236 ASSERT_TRUE(job_a->running());
238 ASSERT_TRUE(job_c->running());
240 ASSERT_TRUE(job_d->running());
242 ASSERT_TRUE(job_b->running());
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dthread.h215 // Expose private method running() for tests.
221 bool RunningForTest() { return running(); }
226 bool RunningForChannelManager() { return running(); }
241 bool running() { return running_.Wait(0); } function in class:talk_base::Thread
246 Event running_; // Signalled means running.
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_blitter.h82 /* Whether the blitter is running. */
83 boolean running; member in struct:blitter_context
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeDemo.cpp282 SkScalar running = 0; local
285 widths[x] = running;
286 running += width;
/external/chromium_org/third_party/webrtc/base/
H A Dthread.h198 // Expose private method running() for tests.
204 bool RunningForTest() { return running(); }
209 bool RunningForChannelManager() { return running(); }
224 bool running() { return running_.Wait(0); } function in class:rtc::Thread
229 Event running_; // Signalled means running.
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_runner.cc38 bool running() const { return running_; } function in class:views::internal::MenuRunnerImpl
88 // Are we running for a drop?
122 // The menu is running a nested message loop, we can't delete it now
339 return holder_->running();
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.cc108 void ThreadRegistry::GetNumberOfThreads(uptr *total, uptr *running, argument
112 if (running) *running = running_threads_;

Completed in 792 milliseconds

1234