OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SpinLock
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
TCSpinLock.h
70
// Corresponding locker object that arranges to acquire a
spinlock
for
82
typedef TCMalloc_SpinLock
SpinLock
;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock.h
39
//
SpinLock
is async signal safe.
52
class LOCKABLE
SpinLock
{
54
SpinLock
() : lockword_(kSpinLockFree) { }
56
// Special constructor for use with static
SpinLock
objects. E.g.,
58
// static
SpinLock
lock(base::LINKER_INITIALIZED);
62
// A
SpinLock
constructed like this can be freely used from global
65
explicit
SpinLock
(base::LinkerInitialized /*x*/) {
69
// Acquire this
SpinLock
.
80
// Try to acquire this
SpinLock
without blocking and return true if the
82
// returned. If this
SpinLock
is free at the time of the call, TryLoc
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock.h
39
//
SpinLock
is async signal safe.
52
class LOCKABLE
SpinLock
{
54
SpinLock
() : lockword_(kSpinLockFree) { }
56
// Special constructor for use with static
SpinLock
objects. E.g.,
58
// static
SpinLock
lock(base::LINKER_INITIALIZED);
62
// A
SpinLock
constructed like this can be freely used from global
65
explicit
SpinLock
(base::LinkerInitialized /*x*/) {
69
// Acquire this
SpinLock
.
80
// Try to acquire this
SpinLock
without blocking and return true if the
82
// returned. If this
SpinLock
is free at the time of the call, TryLoc
[
all
...]
/external/valgrind/unittest/
thread_wrappers_pthread.h
291
class
SpinLock
{
293
SpinLock
() {
296
~
SpinLock
() {
311
class
SpinLock
{
314
SpinLock
() : mu_(OS_SPINLOCK_INIT) {
317
~
SpinLock
() {
/external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h
110
class
SpinLock
{
112
SpinLock
() {
116
~
SpinLock
() {
134
class
SpinLock
{
137
SpinLock
() : mu_(OS_SPINLOCK_INIT) {
140
~
SpinLock
() {
Completed in 135 milliseconds