| /dalvik/vm/alloc/ |
| Heap.cpp | 141 Thread *self; 164 Thread* self = dvmThreadSelf(); 199 // (number of allocations ago) (watch for thread effects) 224 * Another failure. Our thread was starved or there may be too 275 /* Throw an OutOfMemoryError if there's a thread to attach it to. 283 Thread *self; 286 /* If the current (failing) dvmMalloc() happened as part of thread 287 * creation/attachment before the thread became part of the root set, 288 * we can't rely on the thread-local trackedAlloc table, so 290 * the thread is in the process of being created, it won't hav [all...] |
| /dalvik/vm/compiler/codegen/ |
| CodegenFactory.cpp | 60 loadWordDisp(cUnit, rSELF, offsetof(Thread, interpSave.retval), reg1); 94 offsetof(Thread, interpSave.retval), 128 loadWordDisp(cUnit, rSELF, offsetof(Thread, interpSave.retval), 169 storeBaseDisp(cUnit, rSELF, offsetof(Thread, interpSave.retval), 198 offsetof(Thread, interpSave.retval), 248 storeBaseDispWide(cUnit, rSELF, offsetof(Thread, interpSave.retval),
|
| /dalvik/vm/interp/ |
| Interp.cpp | 138 Thread* self = dvmThreadSelf(); 412 * This will only be run from the JDWP thread, and it will happen while 430 * This can be called from the JDWP thread (because the debugger has 431 * cancelled the breakpoint) or from an event thread (because it's a 497 * We set up some initial values based on the thread's current state. This 498 * won't work well if the thread is running, so it's up to the caller to 501 * This is only called from the JDWP thread. 503 bool dvmAddSingleStep(Thread* thread, int size, int depth) 507 if (pCtrl->active && thread != pCtrl->thread) 1498 Thread* thread; local 1556 Thread* thread; local [all...] |
| /external/chromium/net/tools/crash_cache/ |
| crash_cache.cc | 21 #include "base/threading/thread.h" 133 base::Thread* cache_thread) { 170 base::Thread* cache_thread) { 213 base::Thread* cache_thread) { 254 base::Thread* cache_thread) { 319 base::Thread cache_thread("CacheThread"); 321 base::Thread::Options(MessageLoop::TYPE_IO, 0)))
|
| /frameworks/base/include/utils/ |
| threads.h | 47 * A thread priority should be chosen inverse-proportionally to 48 * the amount of work the thread is expected to do. The more work 49 * a thread will do, the less favorable priority it should get so that 66 /* the main UI thread has a slightly more favorable priority */ 94 // Create and run a new thread. 97 // Create thread with lots of parameters 105 // Get some sort of unique identifier for the current thread. 108 // Low-level thread creation -- never creates threads that can 131 // Get pid for the current thread. 134 // Change the scheduling group of a particular thread. The grou [all...] |
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/ |
| Experiment.java | 94 Thread thread = new Thread(this); local 95 thread.start();
|
| /cts/tests/tests/net/src/android/net/wifi/cts/ |
| ScanResultTest.java | 86 Thread.sleep(DURATION); 97 Thread.sleep(DURATION);
|
| /cts/tests/tests/os/src/android/os/cts/ |
| ConditionVariableTest.java | 99 Thread.sleep(SLEEP_TIME); 118 Thread.sleep(BLOCK_TIME >> 1);
|
| /cts/tests/tests/security/src/android/security/cts/ |
| BrowserTest.java | 84 Thread.sleep(1000); 122 Thread.sleep(1000);
|
| /development/samples/ApiDemos/src/com/example/android/apis/app/ |
| FragmentRetainInstance.java | 95 * activity instances. It represents some ongoing work, here a thread 105 * This is the thread that will do our work. It sits in a loop running 108 final Thread mThread = new Thread() { 114 // This thread runs almost forever. 119 // Our thread is stopped if the UI is not ready 153 * start our thread. 163 // Start up the worker thread. 181 // We are ready for our thread to go. 194 // Make the thread go away [all...] |
| /development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
| FragmentRetainInstanceSupport.java | 96 * activity instances. It represents some ongoing work, here a thread 106 * This is the thread that will do our work. It sits in a loop running 109 final Thread mThread = new Thread() { 115 // This thread runs almost forever. 120 // Our thread is stopped if the UI is not ready 154 * start our thread. 164 // Start up the worker thread. 182 // We are ready for our thread to go. 195 // Make the thread go away [all...] |
| /development/tools/emulator/system/camera/ |
| EmulatedCameraDevice.h | 120 * This method will start the worker thread that would be pulling frames from 140 * This method will stop the worker thread started by startDeliveringFrames. 238 /* Instance is initialized when the worker thread has been successfuly 269 * Worker thread management. 271 * actual device, it does that in a worker thread created in StartCapturing, 273 * it makes sence to encapsulate worker thread management in the base class 278 /* Starts the worker thread. 279 * Typically, worker thread is started from startDeliveringFrames method of 282 * one_burst - Controls how many times thread loop should run. If this 283 * parameter is 'true', thread routine will run only once If thi [all...] |
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
| DatagramSocketTest.java | 55 class DatagramServer extends Thread { 73 Thread.yield(); 173 class DatagramServer extends Thread { 191 Thread.yield(); 247 Thread.sleep(1000); 311 Thread.sleep(1000); 349 Thread.sleep(1000); 388 Thread.sleep(1000); 527 Thread.sleep(1000); 542 new Thread(new TestDGRcv(), "DGSender").start() 571 Thread thread = new Thread(runnable, "DatagramSocket.receive1"); local [all...] |
| /external/chromium/third_party/libjingle/source/talk/examples/call/ |
| console.cc | 46 Console::Console(talk_base::Thread *thread, CallClient *client) : 47 client_(client), client_thread_(thread), 48 console_thread_(new talk_base::Thread()), prompt_(std::string("call")),
|
| /external/chromium/third_party/libjingle/source/talk/p2p/base/ |
| p2ptransportchannel.h | 139 talk_base::Thread* thread() const { return worker_thread_; } function in class:cricket::P2PTransportChannel 143 talk_base::Thread *worker_thread_;
|
| rawtransport.cc | 43 RawTransport::RawTransport(talk_base::Thread* signaling_thread, 44 talk_base::Thread* worker_thread,
|
| tcpport.h | 50 static TCPPort* Create(talk_base::Thread* thread, 55 TCPPort* port = new TCPPort(thread, factory, network, 74 TCPPort(talk_base::Thread* thread, talk_base::PacketSocketFactory* factory,
|
| /external/chromium/third_party/libjingle/source/talk/session/tunnel/ |
| tunnelsessionclient.h | 69 // This can be called on any thread. The stream interface is 70 // thread-safe, but notifications must be registered on the creating 71 // thread. 97 talk_base::Thread* stream_thread, 156 // Signalling thread methods 158 talk_base::Thread* stream_thread);
|
| /external/guava/src/com/google/common/base/internal/ |
| Finalizer.java | 29 * Thread that finalizes referents. All references should implement 38 * Google Collections, this thread would keep an indirect strong reference 49 public class Finalizer extends Thread { 59 * Starts the Finalizer thread. FinalizableReferenceQueue calls this method 64 * this thread 94 /** Constructs a new finalizer thread. */ 111 logger.log(Level.INFO, "Failed to clear thread local values inherited" 112 + " by reference finalizer thread.", t); 193 = Thread.class.getDeclaredField("inheritableThreadLocals"); 197 logger.log(Level.INFO, "Couldn't access Thread.inheritableThreadLocals. [all...] |
| /external/valgrind/main/drd/tests/ |
| pth_cond_race.stderr.exp | 2 Thread 2: 3 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
|
| /frameworks/base/core/java/android/webkit/ |
| WebSyncManager.java | 33 // thread for syncing 34 private Thread mSyncThread; 35 // Name of thread 37 // handler of the sync thread 66 mSyncThread = new Thread(this);
|
| /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/ |
| WifiApStress.java | 106 Thread.sleep(2 * ConnectivityManagerTestActivity.SHORT_TIMEOUT); 108 fail("thread in sleep is interrupted"); 115 Thread.sleep(30 * 1000); 118 fail("thread in sleep is interrupted");
|
| /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/ |
| DownloadManagerTestApp.java | 313 Thread.sleep(30 * 1000); // wait 30 secs 317 Thread.sleep(30 * 1000); // wait 30 secs 322 Thread.sleep(5 * 1000); // wait 5 seconds 327 Thread.sleep(30 * 1000); // wait 30 secs 384 Thread.sleep(40 * 1000); // wait 40 seconds 394 Thread.sleep(20 * 1000); // wait 20 seconds 454 Thread.sleep(60 * 1000); // wait 1 minute 465 Thread.sleep(20 * 1000); // wait 20 seconds
|
| /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
| MediaRecorderStressTest.java | 65 private Thread mLooperThread; 74 mLooperThread = new Thread() { 167 Thread.sleep(WAIT_TIME_CAMERA_TEST); 218 Thread.sleep(WAIT_TIME_RECORDER_TEST); 255 Thread.sleep(WAIT_TIME_CAMERA_TEST); 281 Thread.sleep(WAIT_TIME_CAMERA_TEST); 370 Thread.sleep(record_duration); 380 Thread.sleep(record_duration);
|
| /frameworks/base/services/java/com/android/server/am/ |
| DeviceMonitor.java | 47 new Thread() { 190 Thread.sleep(INTERVAL);
|