OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lock_count_
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/webrtc/base/
sigslot_unittest.cc
103
multi_threaded_local_fake() :
lock_count_
(0), unlock_count_(0) {
107
++
lock_count_
;
113
int lock_count() { return
lock_count_
; }
115
bool InCriticalSection() { return
lock_count_
!= unlock_count_; }
118
int
lock_count_
;
member in class:multi_threaded_local_fake
/art/runtime/
monitor.cc
84
lock_count_
(0),
107
lock_count_
(0),
141
lock_count_
= lw.ThinLockCount();
324
CHECK_EQ(
lock_count_
, 0);
331
lock_count_
++;
573
if (
lock_count_
== 0) {
580
--
lock_count_
;
631
int prev_lock_count =
lock_count_
;
632
lock_count_
= 0;
721
lock_count_
= prev_lock_count
[
all
...]
monitor.h
286
int
lock_count_
GUARDED_BY(monitor_lock_);
/toolchain/binutils/binutils-2.25/gold/
fileread.h
268
: start_(start), size_(size), data_(data),
lock_count_
(0),
341
int
lock_count_
;
member in class:gold::File_read::View
fileread.cc
158
++this->
lock_count_
;
164
gold_assert(this->
lock_count_
> 0);
165
--this->
lock_count_
;
171
return this->
lock_count_
> 0;
Completed in 679 milliseconds