Home
last modified time | relevance | path

Searched refs:EXCLUDES (Results 1 – 21 of 21) sorted by relevance

/external/llvm-project/libcxx/utils/google-benchmark/src/
Dthread_manager.h21 bool StartStopBarrier() EXCLUDES(end_cond_mutex_) { in StartStopBarrier()
25 void NotifyThreadComplete() EXCLUDES(end_cond_mutex_) { in NotifyThreadComplete()
33 void WaitForAllThreads() EXCLUDES(end_cond_mutex_) { in WaitForAllThreads()
Dmutex.h55 #define EXCLUDES(...) THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(__VA_ARGS__)) macro
104 bool wait() EXCLUDES(lock_) { in wait()
114 void removeThread() EXCLUDES(lock_) { in removeThread()
/external/libcxx/utils/google-benchmark/src/
Dthread_manager.h21 bool StartStopBarrier() EXCLUDES(end_cond_mutex_) { in StartStopBarrier()
25 void NotifyThreadComplete() EXCLUDES(end_cond_mutex_) { in NotifyThreadComplete()
33 void WaitForAllThreads() EXCLUDES(end_cond_mutex_) { in WaitForAllThreads()
Dmutex.h55 #define EXCLUDES(...) THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(__VA_ARGS__)) macro
104 bool wait() EXCLUDES(lock_) { in wait()
114 void removeThread() EXCLUDES(lock_) { in removeThread()
/external/google-benchmark/src/
Dthread_manager.h21 bool StartStopBarrier() EXCLUDES(end_cond_mutex_) { in StartStopBarrier()
25 void NotifyThreadComplete() EXCLUDES(end_cond_mutex_) { in NotifyThreadComplete()
33 void WaitForAllThreads() EXCLUDES(end_cond_mutex_) { in WaitForAllThreads()
Dmutex.h55 #define EXCLUDES(...) THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(__VA_ARGS__)) macro
104 bool wait() EXCLUDES(lock_) { in wait()
114 void removeThread() EXCLUDES(lock_) { in removeThread()
/external/llvm-project/llvm/utils/benchmark/src/
Dthread_manager.h21 bool StartStopBarrier() EXCLUDES(end_cond_mutex_) { in StartStopBarrier()
25 void NotifyThreadComplete() EXCLUDES(end_cond_mutex_) { in NotifyThreadComplete()
33 void WaitForAllThreads() EXCLUDES(end_cond_mutex_) { in WaitForAllThreads()
Dmutex.h55 #define EXCLUDES(...) THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(__VA_ARGS__)) macro
104 bool wait() EXCLUDES(lock_) { in wait()
114 void removeThread() EXCLUDES(lock_) { in removeThread()
/external/swiftshader/third_party/marl/include/marl/
Dscheduler.h340 void start() EXCLUDES(work.mutex);
344 void stop() EXCLUDES(work.mutex);
351 EXCLUDES(work.mutex);
357 bool wait(const TimePoint* timeout) EXCLUDES(work.mutex);
365 void enqueue(Fiber* fiber) EXCLUDES(work.mutex);
368 void enqueue(Task&& task) EXCLUDES(work.mutex);
373 bool tryLock() EXCLUDES(work.mutex) TRY_ACQUIRE(true, work.mutex);
386 bool steal(Task& out) EXCLUDES(work.mutex);
Dtsa.h68 #define EXCLUDES(...) THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(__VA_ARGS__)) macro
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DAgentOptions.java67 public static final String EXCLUDES = "excludes"; field in AgentOptions
192 DESTFILE, APPEND, INCLUDES, EXCLUDES, EXCLCLASSLOADER,
327 return getOption(EXCLUDES, ""); in getExcludes()
338 setOption(EXCLUDES, excludes); in setExcludes()
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DInlineByteBuddyMockMaker.java29 import static org.mockito.internal.creation.bytebuddy.InlineBytecodeGenerator.EXCLUDES;
294 return INSTRUMENTATION.isModifiableClass(type) && !EXCLUDES.contains(type); in isTypeMockable()
305 if (EXCLUDES.contains(type)) { in isTypeMockable()
DInlineBytecodeGenerator.java51 static final Set<Class<?>> EXCLUDES = new HashSet<Class<?>>(Arrays.asList(Class.class, field in InlineBytecodeGenerator
207 || EXCLUDES.contains(classBeingRedefined)) { in transform()
/external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
DClassTransformer.java50 private static final Set<Class<? extends java.io.Serializable>> EXCLUDES = new HashSet<>( field in ClassTransformer
138 if (!EXCLUDES.contains(type)) { in mockClass()
/external/dexmaker/dexmaker-mockito-inline-extended/src/main/java/com/android/dx/mockito/inline/
DStaticClassTransformer.java49 private static final Set<Class<? extends java.io.Serializable>> EXCLUDES = new HashSet<>( field in StaticClassTransformer
132 if (!EXCLUDES.contains(type)) { in mockClass()
/external/python/cpython3/kokoro/
Dbuild.py115 EXCLUDES = [
133 for pattern in EXCLUDES:
/external/clang/docs/
DThreadSafetyAnalysis.rst278 EXCLUDES(...)
283 ``EXCLUDES`` is an attribute on functions or methods, which declares that
293 void clear() EXCLUDES(mu) {
305 Unlike ``REQUIRES``, ``EXCLUDES`` is optional. The analysis will not issue a
466 and the EXCLUDES attribute prevents deadlock, by making sure that a mutex is
469 However, EXCLUDES is an optional attribute, and does not provide the same
476 As a result, EXCLUDES can easily produce false negatives:
490 void bar() { // No warning. (Should have EXCLUDES(mu)).
497 bif(); // No warning. (Should have EXCLUDES(mu)).
500 void bif() EXCLUDES(mu);
[all …]
/external/llvm-project/clang/docs/
DThreadSafetyAnalysis.rst281 EXCLUDES(...)
286 ``EXCLUDES`` is an attribute on functions or methods, which declares that
296 void clear() EXCLUDES(mu) {
308 Unlike ``REQUIRES``, ``EXCLUDES`` is optional. The analysis will not issue a
497 and the EXCLUDES attribute prevents deadlock, by making sure that a mutex is
500 However, EXCLUDES is an optional attribute, and does not provide the same
507 As a result, EXCLUDES can easily produce false negatives:
521 void bar() { // No warning. (Should have EXCLUDES(mu)).
528 bif(); // No warning. (Should have EXCLUDES(mu)).
531 void bif() EXCLUDES(mu);
[all …]
/external/compiler-rt/cmake/Modules/
DCompilerRTDarwinUtils.cmake126 file(READ ${file} EXCLUDES)
127 string(REPLACE "\n" ";" EXCLUDES ${EXCLUDES})
128 set(${output_var} ${EXCLUDES} PARENT_SCOPE)
/external/llvm-project/compiler-rt/cmake/Modules/
DCompilerRTDarwinUtils.cmake218 file(READ ${file} EXCLUDES)
219 string(REPLACE "\n" ";" EXCLUDES ${EXCLUDES})
220 set(${output_var} ${EXCLUDES} PARENT_SCOPE)
/external/emma/core/java12/com/vladium/util/args/
DOptsParser.java1391 KEYWORDS.put (Token.EXCLUDES.getValue (), Token.EXCLUDES); in Token.EXCLUDES.getValue()
1486 static final Token EXCLUDES = new Token (EXCLUDES_ID, "excludes"); field in OptsParser.Token