HomeSort by relevance Sort by last modified time
    Searched defs:NO_THREAD_SAFETY_ANALYSIS (Results 26 - 44 of 44) sorted by null

12

  /art/runtime/
utils.h 252 NO_THREAD_SAFETY_ANALYSIS;
instrumentation.h 460 void SetEntrypointsInstrumented(bool instrumented) NO_THREAD_SAFETY_ANALYSIS;
trace.h 202 NO_THREAD_SAFETY_ANALYSIS;
profiler.h 174 // NO_THREAD_SAFETY_ANALYSIS for static function calling into member function with excludes lock.
176 NO_THREAD_SAFETY_ANALYSIS;
177 // NO_THREAD_SAFETY_ANALYSIS for static function calling into member function with excludes lock.
178 static void Shutdown() REQUIRES(!Locks::profiler_lock_) NO_THREAD_SAFETY_ANALYSIS;
195 // NO_THREAD_SAFETY_ANALYSIS for static function calling into member function with excludes lock.
197 NO_THREAD_SAFETY_ANALYSIS;
art_method.h 103 // NO_THREAD_SAFETY_ANALYSIS for calling with held locks. Visitor is passed a pair of ArtMethod*
106 void Visit(const Visitor& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS {
566 // NO_THREAD_SAFETY_ANALYSIS since we don't know what the callback requires.
568 void VisitRoots(RootVisitorType& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS;
  /external/clang/test/SemaCXX/
warn-thread-safety-negative.cpp 27 #define NO_THREAD_SAFETY_ANALYSIS __attribute__ ((no_thread_safety_analysis))
warn-thread-safety-verbose.cpp 24 #define NO_THREAD_SAFETY_ANALYSIS __attribute__ ((no_thread_safety_analysis))
warn-thread-safety-parsing.cpp 24 #define NO_THREAD_SAFETY_ANALYSIS __attribute__ ((no_thread_safety_analysis))
99 #if !__has_attribute(no_thread_safety_analysis)
100 #error "Should support no_thread_safety_analysis attribute"
103 void noanal_fun() NO_THREAD_SAFETY_ANALYSIS;
105 void noanal_fun_args() __attribute__((no_thread_safety_analysis(1))); // \
106 // expected-error {{'no_thread_safety_analysis' attribute takes no arguments}}
108 int noanal_testfn(int y) NO_THREAD_SAFETY_ANALYSIS;
111 int x NO_THREAD_SAFETY_ANALYSIS = y; // \
112 // expected-warning {{'no_thread_safety_analysis' attribute only applies to functions}
    [all...]
warn-thread-safety-analysis.cpp 27 #define NO_THREAD_SAFETY_ANALYSIS __attribute__((no_thread_safety_analysis))
450 void testNoAnal() __attribute__((no_thread_safety_analysis)) {
789 void es_fun_8() __attribute__((no_thread_safety_analysis));
    [all...]
  /external/google-benchmark/src/
mutex.h 69 #define NO_THREAD_SAFETY_ANALYSIS \
70 THREAD_ANNOTATION_ATTRIBUTE__(no_thread_safety_analysis)
  /external/regex-re2/util/
util.h 100 #define NO_THREAD_SAFETY_ANALYSIS
  /art/runtime/base/
macros.h 253 #define NO_THREAD_SAFETY_ANALYSIS THREAD_ANNOTATION_ATTRIBUTE__(no_thread_safety_analysis)
arena_allocator.h 268 void ReclaimMemory() NO_THREAD_SAFETY_ANALYSIS;
mutex.h 453 void Wait(Thread* self) NO_THREAD_SAFETY_ANALYSIS;
454 bool TimedWait(Thread* self, int64_t ms, int32_t ns) NO_THREAD_SAFETY_ANALYSIS;
458 void WaitHoldingLocks(Thread* self) NO_THREAD_SAFETY_ANALYSIS;
559 static void InitConditions() NO_THREAD_SAFETY_ANALYSIS; // Condition variables.
  /art/runtime/gc/space/
large_object_space.h 140 bool Contains(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS;
region_space.h 231 void WalkInternal(ObjectCallback* callback, void* arg) NO_THREAD_SAFETY_ANALYSIS;
486 Region* RefToRegionUnlocked(mirror::Object* ref) NO_THREAD_SAFETY_ANALYSIS {
  /external/clang/test/PCH/
thread-safety-attrs.cpp 30 #define NO_THREAD_SAFETY_ANALYSIS __attribute__ ((no_thread_safety_analysis))
  /art/runtime/jdwp/
jdwp.h 132 * NO_THREAD_SAFETY_ANALYSIS since we can't annotate that we do not have
136 REQUIRES(!Locks::mutator_lock_) NO_THREAD_SAFETY_ANALYSIS;
  /art/runtime/gc/
heap.h 260 // TODO: NO_THREAD_SAFETY_ANALYSIS since we call this everywhere and it is impossible to find a
262 void VerifyObjectBody(mirror::Object* o) NO_THREAD_SAFETY_ANALYSIS;
381 bool HaveContinuousSpaces() const NO_THREAD_SAFETY_ANALYSIS {
563 void PreZygoteFork() NO_THREAD_SAFETY_ANALYSIS;
651 void DumpObject(std::ostream& stream, mirror::Object* obj) NO_THREAD_SAFETY_ANALYSIS;
653 std::string SafeGetClassDescriptor(mirror::Class* klass) NO_THREAD_SAFETY_ANALYSIS;
654 std::string SafePrettyTypeOf(mirror::Object* obj) NO_THREAD_SAFETY_ANALYSIS;
    [all...]

Completed in 435 milliseconds

12