HomeSort by relevance Sort by last modified time
    Searched full:lockable (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium_org/third_party/leveldatabase/src/port/
thread_annotations.h 27 #ifndef LOCKABLE
28 #define LOCKABLE
  /external/chromium_org/third_party/WebKit/Source/wtf/
Locker.h 38 Locker(T& lockable) : m_lockable(lockable) { m_lockable.lock(); }
  /external/chromium_org/win8/metro_driver/
print_handler.h 54 // Callback from Metro and entry point called on lockable thread.
58 // Called on the lockable thread to set/release the doc.
63 // Called on the lockable thread for the exported C functions.
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 3 #define LOCKABLE __attribute__ ((lockable))
28 struct LOCKABLE Mutex {};
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 3 #define LOCKABLE __attribute__ ((lockable))
27 class LOCKABLE Mutex {
215 // Lockable Attribute (l)
220 #if !__has_attribute(lockable)
221 #error "Should support lockable attribute"
224 class LOCKABLE LTestClass {
227 class __attribute__((lockable (1))) LTestClass_args { // \
228 // expected-error {{'lockable' attribute takes no arguments}}
231 void l_test_function() LOCKABLE; // \
    [all...]
warn-thread-safety-analysis.cpp 6 #define LOCKABLE __attribute__ ((lockable))
30 class __attribute__((lockable)) Mutex {
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
thread_annotations.h 108 // Document if a class/type is a lockable type (such as the Mutex class).
109 #define LOCKABLE THREAD_ANNOTATION_ATTRIBUTE__(lockable)
111 // Document if a class is a scoped lockable type (such as the MutexLock class).
spinlock.h 52 class LOCKABLE SpinLock {
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
thread_annotations.h 108 // Document if a class/type is a lockable type (such as the Mutex class).
109 #define LOCKABLE THREAD_ANNOTATION_ATTRIBUTE__(lockable)
111 // Document if a class is a scoped lockable type (such as the MutexLock class).
spinlock.h 52 class LOCKABLE SpinLock {
  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked3.c 15 lockable lock, and one thread holds the lock more than once. Point
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Image9.h 72 D3DPOOL mD3DPool; // can only be D3DPOOL_SYSTEMMEM or D3DPOOL_MANAGED since it needs to be lockable.
  /external/clang/test/PCH/
thread-safety-attrs.cpp 11 #define LOCKABLE __attribute__ ((lockable))
33 class __attribute__((lockable)) Mutex {
  /art/runtime/base/
macros.h 168 #define LOCKABLE __attribute__ ((lockable))
189 #define LOCKABLE
mutex.h 139 class LOCKABLE Mutex : public BaseMutex {
221 class LOCKABLE ReaderWriterMutex : public BaseMutex {
  /external/chromium_org/ui/surface/
d3d9_utils_win.h 53 // Ensures that |surface| is a lockable surface of a specified |size|. If
accelerated_surface_transformer_win.h 80 // red chrominance) planes. This method will allocate three lockable surfaces,
accelerated_surface_transformer_win_unittest.cc 384 IDirect3DSurface9* lockable) {
389 lockable->LockRect(&locked_rect, NULL, D3DLOCK_READONLY));
395 lockable->UnlockRect();
400 lockable->UnlockRect();
    [all...]
  /external/clang/test/Misc/
ast-dump-attr.cpp 44 class __attribute__((lockable)) Mutex {
  /art/runtime/
locks.h 26 class LOCKABLE Mutex;
27 class LOCKABLE ReaderWriterMutex;
  /external/clang/docs/
LanguageExtensions.rst     [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafety.h 74 /// Warn about lock expressions which fail to resolve to lockable objects.
  /external/qemu/distrib/sdl-1.2.15/src/audio/mint/
SDL_mintaudio_dma8.c 107 /* Check if audio is lockable */
SDL_mintaudio_gsxb.c 111 /* Check if audio is lockable */
  /external/clang/lib/Sema/
SemaDeclAttr.cpp 374 /// resolves to a lockable object.
386 // Don't check for lockable if the class hasn't been defined yet.
390 // Allow smart pointers to be used as lockable objects.
395 // Check if the type is lockable.
400 // Else check if any base classes are lockable.
412 /// from Sidx, resolve to a lockable object.
553 // check that all arguments are lockable objects
592 // FIXME: Lockable structs for C code.
704 // Check that this attribute only applies to lockable types.
715 // Check that all arguments are lockable objects
    [all...]

Completed in 338 milliseconds

1 2 3