OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_lockCount
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h
48
BitmapTexture() :
m_lockCount
(0) {}
74
inline void lock() { ++
m_lockCount
; }
75
inline void unlock() { --
m_lockCount
; }
76
inline bool isLocked() { return
m_lockCount
; }
84
int
m_lockCount
;
/external/webkit/Source/JavaScriptCore/runtime/
JSLock.cpp
181
m_lockCount
= 0;
185
m_lockCount
= JSLock::lockCount();
186
for (intptr_t i = 0; i <
m_lockCount
; i++)
196
m_lockCount
= 0;
203
m_lockCount
= JSLock::lockCount();
204
for (intptr_t i = 0; i <
m_lockCount
; i++)
210
for (intptr_t i = 0; i <
m_lockCount
; i++)
JSLock.h
101
intptr_t
m_lockCount
;
Completed in 53 milliseconds