HomeSort by relevance Sort by last modified time
    Searched refs:Thread (Results 801 - 825 of 1369) sorted by null

<<31323334353637383940>>

  /external/chromium/chrome/browser/net/
ssl_config_service_manager_pref.cc 6 #include "base/threading/thread.h"
29 // Store SSL config settings in |config|. Must only be called from IO thread.
36 // This method is posted to the IO thread from the browser thread to carry the
40 // Cached value of prefs, should only be accessed from IO thread.
82 // thread with SetNewSSLConfig.
88 // only be called from UI thread.
91 // The prefs (should only be accessed from UI thread)
118 // Initialize from UI thread. This is okay as there shouldn't be anything on
119 // the IO thread trying to access it yet
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_model_test_util.cc 10 #include "base/threading/thread.h"
36 // Blocks the caller until thread has finished servicing all pending
39 // Schedule a task on the thread that is processed after all
40 // pending requests on the thread.
61 // Starts the I/O thread. This isn't done automatically because not every test
64 base::Thread::Options options;
120 // before shutting down the I/O thread to avoid memory leaks.
127 // The I/O thread must be shutdown before the DB thread.
133 // Note that we must ensure the DB thread is stopped after WD
    [all...]
  /external/chromium/net/test/
test_server_win.cc 18 #include "base/threading/thread.h"
99 base::Thread thread("test_server_watcher");
100 if (!thread.Start())
105 thread.message_loop()->PostDelayedTask(
125 thread.Stop();
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
rawtransportchannel.cc 57 talk_base::Thread *worker_thread,
stunrequest.cc 42 StunRequestManager::StunRequestManager(talk_base::Thread* thread)
43 : thread_(thread) {
  /external/guava/src/com/google/common/util/concurrent/
Executors.java 50 * <p>This is mainly for fixed thread pools.
78 * <p>This is mainly for fixed thread pools.
102 * Add a shutdown hook to wait for thread completion in the given
115 Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
140 * <p>This is mainly for fixed thread pools.
160 * <p>This is mainly for fixed thread pools.
197 * Creates an executor service that runs each task in the thread
201 * tasks will run serially on the calling thread. Tasks are run to
205 * <p>Although all tasks are immediately executed in the thread that
  /external/javassist/src/main/javassist/util/
HotSwapper.java 52 * is used only for inter-thread communication.
209 new Thread() {
211 System.err.print("Exception in thread \"HotSwap\" ");
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageChannel.java 67 * flag be added to this. Niklas Uhrberg suggested that thread pooling support
177 Thread mythread = new Thread(this);
208 Thread mythread = new Thread(this);
245 // Assume no thread pooling (bug fix by spierhj)
265 // We're part of a thread pool. Ask the auditor to
266 // monitor this thread.
272 // Send a heartbeat to the thread auditor
277 // thread auditor is disabled
    [all...]
  /external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
InstallerActivity.java 61 (new Thread(new unzipper(stream))).start();
  /external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
InstallerActivity.java 61 (new Thread(new unzipper(stream))).start();
  /external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
InstallerActivity.java 61 (new Thread(new unzipper(stream))).start();
  /external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
InstallerActivity.java 61 (new Thread(new unzipper(stream))).start();
  /external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
InstallerActivity.java 61 (new Thread(new unzipper(stream))).start();
  /external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
InstallerActivity.java 61 (new Thread(new unzipper(stream))).start();
  /external/svox/picolanginstaller/src/com/svox/langpack/installer/
InstallerActivity.java 62 (new Thread(new unzipper(stream))).start();
  /external/v8/test/cctest/
test-cpu-profiler.cc 30 i::Thread::YieldCPU();
94 i::Thread::YieldCPU();
158 i::Thread::YieldCPU();
251 i::Thread::YieldCPU();
  /frameworks/base/core/java/com/android/internal/view/
BaseSurfaceHolder.java 203 Thread.sleep(nextTime-now);
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiConnectionTest.java 153 Thread.sleep(sometime);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchManyTest.java 116 Thread.sleep((long)(ViewConfiguration.getLongPressTimeout() * 1.25f));
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTestUtils.java 381 Thread.sleep(WAIT_FOR_DEVICE_POLL_TIME);
424 Thread.sleep(WAIT_FOR_DEVICE_POLL_TIME);
434 Thread.sleep(WAIT_FOR_DEVICE_POLL_TIME);
454 Thread.sleep(WAIT_FOR_APP_LAUNCH_POLL_TIME);
677 * @throws InterruptedException if the thread was interrupted
714 * @throws InterruptedException if the thread was interrupted
751 * @throws InterruptedException if the thread was interrupted
    [all...]
  /frameworks/base/include/media/
AudioRecord.h 86 /* As a convenience, if a callback is supplied, a handler thread
87 * is automatically created with the appropriate priority. This thread
336 class ClientRecordThread : public Thread
349 bool processAudioBuffer(const sp<ClientRecordThread>& thread);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaTestUtil.java 60 Thread.sleep(1000);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CameraTest.java 79 new Thread() {
85 // Save the looper so that we can terminate this thread
101 * Terminates the message looper thread.
109 // the method. So we need to join the looper thread here.
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaPlayerStressTest.java 138 Thread.sleep(3000);
  /frameworks/base/services/java/com/android/server/
BootReceiver.java 60 // Log boot events in the background to avoid blocking the main thread with I/O
61 new Thread() {
127 // This gets registered with the singleton file observer thread.

Completed in 1695 milliseconds

<<31323334353637383940>>