HomeSort by relevance Sort by last modified time
    Searched defs:EXCLUSIVE_LOCKS_REQUIRED (Results 1 - 16 of 16) sorted by null

  /art/runtime/
thread_list.h 44 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
83 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_);
87 EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_)
98 std::list<Thread*> GetList() EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_) {
108 bool Contains(Thread* thread) EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_);
109 bool Contains(pid_t tid) EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_);
thread_pool.h 103 Task* TryGetTaskLocked(Thread* self) EXCLUSIVE_LOCKS_REQUIRED(task_queue_lock_);
106 bool IsShuttingDown() const EXCLUSIVE_LOCKS_REQUIRED(task_queue_lock_) {
179 WorkStealingTask* FindTaskToStealFrom(Thread* self) EXCLUSIVE_LOCKS_REQUIRED(work_steal_lock_);
runtime.cc 749 void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
    [all...]
runtime.h 204 bool IsShuttingDown() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
208 size_t NumberOfThreadsBeingBorn() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
212 void StartThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
216 void EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_);
308 void DisallowNewSystemWeaks() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
thread.h 120 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
124 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
151 int GetSuspendCount() const EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_suspend_count_lock_) {
155 int GetDebugSuspendCount() const EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_suspend_count_lock_) {
166 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_suspend_count_lock_);
635 void Init(ThreadList*, JavaVMExt*) EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_);
646 void NotifyLocked(Thread* self) EXCLUSIVE_LOCKS_REQUIRED(wait_mutex_);
debugger.cc 248 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
    [all...]
  /art/runtime/gc/accounting/
heap_bitmap.h 46 void Clear(const mirror::Object* obj) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
57 void Set(const mirror::Object* obj) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
91 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_)
96 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_);
100 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_);
mod_union_table.cc 76 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_)
173 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_)
  /external/chromium_org/third_party/leveldatabase/src/port/
thread_annotations.h 11 #ifndef EXCLUSIVE_LOCKS_REQUIRED
12 #define EXCLUSIVE_LOCKS_REQUIRED(...)
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
thread_annotations.h 93 #define EXCLUSIVE_LOCKS_REQUIRED(x) \
94 THREAD_ANNOTATION_ATTRIBUTE__(exclusive_locks_required(x))
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
thread_annotations.h 93 #define EXCLUSIVE_LOCKS_REQUIRED(x) \
94 THREAD_ANNOTATION_ATTRIBUTE__(exclusive_locks_required(x))
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 20 #define EXCLUSIVE_LOCKS_REQUIRED(...) \
21 __attribute__ ((exclusive_locks_required(__VA_ARGS__)))
54 int Foo_fun1(int i) SHARED_LOCKS_REQUIRED(mu2) EXCLUSIVE_LOCKS_REQUIRED(mu1) {
58 int Foo_fun2(int i) EXCLUSIVE_LOCKS_REQUIRED(mu2) SHARED_LOCKS_REQUIRED(mu1) {
66 static int Bar_fun1(int i) EXCLUSIVE_LOCKS_REQUIRED(mu1) {
70 void set_value(int *a, int value) EXCLUSIVE_LOCKS_REQUIRED(foo_.mu_) {
  /art/runtime/base/
macros.h 164 #define EXCLUSIVE_LOCKS_REQUIRED(...) __attribute__ ((exclusive_locks_required(__VA_ARGS__)))
185 #define EXCLUSIVE_LOCKS_REQUIRED(...)
  /external/clang/test/PCH/
thread-safety-attrs.cpp 26 #define EXCLUSIVE_LOCKS_REQUIRED(...) \
27 __attribute__ ((exclusive_locks_required(__VA_ARGS__)))
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 20 #define EXCLUSIVE_LOCKS_REQUIRED(...) \
21 __attribute__ ((exclusive_locks_required(__VA_ARGS__)))
    [all...]
warn-thread-safety-analysis.cpp 23 #define EXCLUSIVE_LOCKS_REQUIRED(...) \
24 __attribute__ ((exclusive_locks_required(__VA_ARGS__)))
501 void foo() __attribute__((exclusive_locks_required(mu))) { }
683 void aa_elr_fun() __attribute__((exclusive_locks_required(aa_mu)));
690 void test() __attribute__((exclusive_locks_required(sls_mu)));
694 void elr_fun() __attribute__((exclusive_locks_required(sls_mu)));
757 void es_fun_10() __attribute__((exclusive_locks_required(aa_mu)));
832 static int func1() EXCLUSIVE_LOCKS_REQUIRED(mu1_);
892 int method1(int i) SHARED_LOCKS_REQUIRED(mu2) EXCLUSIVE_LOCKS_REQUIRED(mu1);
900 int foo(int i) EXCLUSIVE_LOCKS_REQUIRED(mu2) SHARED_LOCKS_REQUIRED(mu1)
    [all...]

Completed in 521 milliseconds