OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UNLOCK_FUNCTION
(Results
1 - 25
of
29
) sorted by null
1
2
/external/webrtc/webrtc/system_wrappers/include/
rw_lock_wrapper.h
28
virtual void ReleaseLockExclusive()
UNLOCK_FUNCTION
() = 0;
31
virtual void ReleaseLockShared()
UNLOCK_FUNCTION
() = 0;
43
~ReadLockScoped()
UNLOCK_FUNCTION
() {
58
~WriteLockScoped()
UNLOCK_FUNCTION
() {
critical_section_wrapper.h
33
virtual void Leave()
UNLOCK_FUNCTION
() = 0;
46
~CriticalSectionScoped()
UNLOCK_FUNCTION
() { ptr_crit_sec_->Leave(); }
/external/webrtc/webrtc/base/
sharedexclusivelock.h
29
void UnlockExclusive()
UNLOCK_FUNCTION
();
49
~SharedScope()
UNLOCK_FUNCTION
() { lock_->UnlockShared(); }
65
~ExclusiveScope()
UNLOCK_FUNCTION
() { lock_->UnlockExclusive(); }
criticalsection.h
51
void Leave()
UNLOCK_FUNCTION
();
72
~CritScope()
UNLOCK_FUNCTION
();
107
void Unlock()
UNLOCK_FUNCTION
();
121
~GlobalLockScope()
UNLOCK_FUNCTION
();
signalthread.h
125
~EnterExit()
UNLOCK_FUNCTION
() {
thread_annotations.h
92
#define
UNLOCK_FUNCTION
(...) \
93
THREAD_ANNOTATION_ATTRIBUTE__(
unlock_function
(__VA_ARGS__))
criticalsection.cc
74
void CriticalSection::Leave()
UNLOCK_FUNCTION
() {
criticalsection_unittest.cc
119
void Unlock()
UNLOCK_FUNCTION
() {
/art/runtime/native/
scoped_fast_native_object_access.h
39
~ScopedFastNativeObjectAccess()
UNLOCK_FUNCTION
(Locks::mutator_lock_) ALWAYS_INLINE {
/external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp
17
#define
UNLOCK_FUNCTION
(...) __attribute__ ((
unlock_function
(__VA_ARGS__)))
31
void Unlock()
UNLOCK_FUNCTION
();
[
all
...]
warn-thread-safety-negative.cpp
20
#define
UNLOCK_FUNCTION
(...) __attribute__ ((
unlock_function
(__VA_ARGS__)))
34
void Unlock() __attribute__((
unlock_function
));
116
EXCLUSIVE_LOCKS_REQUIRED(F->mutex())
UNLOCK_FUNCTION
(F->mutex()) {}
warn-thread-safety-verbose.cpp
17
#define
UNLOCK_FUNCTION
(...) __attribute__ ((
unlock_function
(__VA_ARGS__)))
31
void Unlock() __attribute__((
unlock_function
));
warn-thread-safety-analysis.cpp
20
#define
UNLOCK_FUNCTION
(...) __attribute__((
unlock_function
(__VA_ARGS__)))
34
void Unlock() __attribute__((
unlock_function
));
50
~MutexLock()
UNLOCK_FUNCTION
();
57
~ReaderMutexLock()
UNLOCK_FUNCTION
();
63
~ReleasableMutexLock()
UNLOCK_FUNCTION
();
65
void Release()
UNLOCK_FUNCTION
();
72
~DoubleMutexLock() __attribute__((
unlock_function
));
78
void endNoWarnOnReads()
UNLOCK_FUNCTION
("*");
80
void endNoWarnOnWrites()
UNLOCK_FUNCTION
("*");
[
all
...]
/external/clang/test/PCH/
thread-safety-attrs.cpp
23
#define
UNLOCK_FUNCTION
(...) __attribute__ ((
unlock_function
(__VA_ARGS__)))
37
void Unlock() __attribute__((
unlock_function
));
46
~MutexLock() __attribute__((
unlock_function
));
52
~ReaderMutexLock() __attribute__((
unlock_function
));
58
~ReleasableMutexLock()
UNLOCK_FUNCTION
();
60
void Release()
UNLOCK_FUNCTION
();
67
void endNoWarnOnReads()
UNLOCK_FUNCTION
("*");
69
void endNoWarnOnWrites()
UNLOCK_FUNCTION
("*");
/external/clang/test/Sema/
warn-thread-safety-analysis.c
17
#define
UNLOCK_FUNCTION
(...) __attribute__ ((
unlock_function
(__VA_ARGS__)))
37
void mutex_unlock(struct Mutex *mu)
UNLOCK_FUNCTION
(mu);
/art/runtime/base/
macros.h
264
#define
UNLOCK_FUNCTION
(...) THREAD_ANNOTATION_ATTRIBUTE__(
unlock_function
(__VA_ARGS__))
284
#define
UNLOCK_FUNCTION
(...) THREAD_ANNOTATION_ATTRIBUTE__(unlock(__VA_ARGS__))
mutex.h
436
void TransitionFromRunnableToSuspended(Thread* self)
UNLOCK_FUNCTION
() ALWAYS_INLINE;
531
~WriterMutexLock()
UNLOCK_FUNCTION
() {
/art/runtime/
scoped_thread_state_change.h
264
~ScopedObjectAccess()
UNLOCK_FUNCTION
(Locks::mutator_lock_) ALWAYS_INLINE {
285
UNLOCK_FUNCTION
(Locks::mutator_lock_)
thread_list.h
59
UNLOCK_FUNCTION
(Locks::mutator_lock_);
216
UNLOCK_FUNCTION
(Locks::mutator_lock_);
monitor.h
76
UNLOCK_FUNCTION
(obj);
runtime.h
200
bool Start()
UNLOCK_FUNCTION
(Locks::mutator_lock_);
/art/runtime/gc/collector/
garbage_collector.h
130
~ScopedPause()
UNLOCK_FUNCTION
();
/external/webrtc/webrtc/modules/video_render/mac/
video_render_nsopengl.h
124
void UnlockAGLCntx()
UNLOCK_FUNCTION
(_nsglContextCritSec);
/external/webrtc/webrtc/modules/audio_device/linux/
audio_device_alsa_linux.h
172
void UnLock()
UNLOCK_FUNCTION
(_critSect) { _critSect.Leave(); };
audio_device_pulse_linux.h
223
void UnLock()
UNLOCK_FUNCTION
(_critSect) {
Completed in 2573 milliseconds
1
2