OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lock_owner_tid_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.cc
147
pthread_t MemoryRegionMap::
lock_owner_tid_
; // GUARDED_BY(owner_lock_)
member in class:MemoryRegionMap
250
//
lock_owner_tid_
is the previous owner, but we don't rely on
252
// * recursion_count_ and
lock_owner_tid_
are only written while
256
// owns lock_ iff pthread_equal(
lock_owner_tid_
, pthread_self())
261
if (recursion_count_ > 0 && current_thread_is(
lock_owner_tid_
)) {
275
lock_owner_tid_
= pthread_self();
285
RAW_CHECK(current_thread_is(
lock_owner_tid_
), "unlock by non-holder");
294
return lock_.IsHeld() && current_thread_is(
lock_owner_tid_
);
memory_region_map.h
291
static pthread_t
lock_owner_tid_
;
member in class:MemoryRegionMap
/external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.cc
148
pthread_t MemoryRegionMap::
lock_owner_tid_
; // GUARDED_BY(owner_lock_)
member in class:MemoryRegionMap
287
//
lock_owner_tid_
is the previous owner, but we don't rely on
289
// * recursion_count_ and
lock_owner_tid_
are only written while
293
// owns lock_ iff pthread_equal(
lock_owner_tid_
, pthread_self())
298
if (recursion_count_ > 0 && current_thread_is(
lock_owner_tid_
)) {
312
lock_owner_tid_
= pthread_self();
322
RAW_CHECK(current_thread_is(
lock_owner_tid_
), "unlock by non-holder");
331
return lock_.IsHeld() && current_thread_is(
lock_owner_tid_
);
[
all
...]
memory_region_map.h
315
static pthread_t
lock_owner_tid_
;
member in class:MemoryRegionMap
Completed in 30 milliseconds