HomeSort by relevance Sort by last modified time
    Searched refs:Lock (Results 226 - 250 of 957) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ipc/
ipc_sync_message_filter.h 12 #include "base/synchronization/lock.h"
63 base::Lock lock_;
  /external/chromium_org/media/audio/
audio_device_thread.h 13 #include "base/synchronization/lock.h"
106 base::Lock thread_lock_;
  /external/chromium_org/media/base/
audio_renderer_mixer.h 10 #include "base/synchronization/lock.h"
51 base::Lock mixer_inputs_lock_;
  /external/chromium_org/media/filters/
ffmpeg_glue.cc 10 #include "base/synchronization/lock.h"
67 static int LockManagerOperation(void** lock, enum AVLockOp op) {
70 *lock = new base::Lock();
74 static_cast<base::Lock*>(*lock)->Acquire();
78 static_cast<base::Lock*>(*lock)->Release();
82 delete static_cast<base::Lock*>(*lock);
    [all...]
  /external/chromium_org/media/video/capture/android/
video_capture_device_android.h 12 #include "base/synchronization/lock.h"
62 base::Lock lock_;
  /external/chromium_org/media/video/capture/win/
video_capture_device_mf_win.h 17 #include "base/synchronization/lock.h"
73 base::Lock lock_; // Used to guard the below variables.
  /external/chromium_org/net/android/
network_change_notifier_delegate_android.h 12 #include "base/synchronization/lock.h"
74 mutable base::Lock connection_type_lock_; // Protects the state below.
  /external/chromium_org/net/disk_cache/
in_flight_io.h 11 #include "base/synchronization/lock.h"
63 base::Lock controller_lock_; // A lock protecting clearing of controller_.
  /external/chromium_org/remoting/protocol/
message_decoder.cc 46 message_buffer->Lock();
  /external/chromium_org/sync/engine/
all_status.h 15 #include "base/synchronization/lock.h"
72 mutable base::Lock mutex_; // Protects all data members.
  /external/chromium_org/sync/syncable/
syncable_base_transaction.cc 21 void BaseTransaction::Lock() {
syncable_base_transaction.h 57 void Lock();
62 // be called from any thread. Holding the transaction lock ensures only one
  /external/chromium_org/third_party/leveldatabase/src/port/
port_example.h 25 // A Mutex represents an exclusive lock.
31 // Lock the mutex. Waits until other lockers have exited.
33 void Lock();
port_posix.cc 26 void Mutex::Lock() { PthreadCall("lock", pthread_mutex_lock(&mu_)); }
  /external/chromium_org/third_party/mesa/src/scons/
fixes.py 9 spawn_lock = threading.Lock()
  /external/chromium_org/tools/memory_watcher/
memory_watcher.h 17 #include "base/synchronization/lock.h"
79 base::Lock block_map_lock_;
  /external/chromium_org/webkit/child/
fling_curve_configuration.h 10 #include "base/synchronization/lock.h"
49 base::Lock lock_;
worker_task_runner.h 12 #include "base/synchronization/lock.h"
54 base::Lock loop_map_lock_;
  /external/chromium_org/webkit/common/gpu/
context_provider_in_process.h 10 #include "base/synchronization/lock.h"
65 base::Lock destroyed_lock_;
  /external/lzma/CPP/Windows/
Synchronization.h 47 WRes Lock() { return Event_Wait(&_object); }
90 WRes Lock(DWORD timeoutInterval = INFINITE)
121 CMutexLock(CMutex &object): _object(&object) { _object->Lock(); }
140 WRes Lock() { return Semaphore_Wait(&_object); }
  /external/mesa3d/scons/
fixes.py 9 spawn_lock = threading.Lock()
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 65 Lock();
110 Lock();
183 return(Lock());
230 Lock();
  /external/valgrind/main/drd/tests/
hold_lock_1.stderr.exp 6 Lock on mutex 0x........ was held during ... ms (threshold: 500 ms).
17 Lock on rwlock 0x........ was held during ... ms (threshold: 500 ms).
  /external/chromium/chrome/browser/sync/util/
user_settings.h 12 #include "base/synchronization/lock.h"
93 mutable base::Lock mutex_; // protects email_.
97 base::Lock dbhandle_mutex_;
  /external/chromium_org/base/memory/
discardable_memory_android.cc 13 #include "base/synchronization/lock.h"
18 base::LazyInstance<base::Lock>::Leaky g_discardable_memory_lock =
50 base::AutoLock lock(g_discardable_memory_lock.Get());
59 base::AutoLock lock(g_discardable_memory_lock.Get());
104 LockDiscardableMemoryStatus DiscardableMemory::Lock() {
132 // Lock() and Unlock(), data could get lost if they are not written to the

Completed in 1578 milliseconds

1 2 3 4 5 6 7 8 91011>>