OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ObjectLock
(Results
1 - 6
of
6
) sorted by null
/art/runtime/
object_lock.cc
25
ObjectLock
<T>::
ObjectLock
(Thread* self, Handle<T> object) : self_(self), obj_(object) {
31
ObjectLock
<T>::~
ObjectLock
() {
36
void
ObjectLock
<T>::WaitIgnoringInterrupts() {
41
void
ObjectLock
<T>::Notify() {
46
void
ObjectLock
<T>::NotifyAll() {
50
template class
ObjectLock
<mirror::Class>;
51
template class
ObjectLock
<mirror::Object>;
object_lock.h
29
class
ObjectLock
{
31
ObjectLock
(Thread* self, Handle<T> object) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
33
~
ObjectLock
() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
45
DISALLOW_COPY_AND_ASSIGN(
ObjectLock
);
class_linker.h
52
template<class T> class
ObjectLock
;
515
ObjectLock
<mirror::Class>& lock);
[
all
...]
class_linker.cc
[
all
...]
thread.cc
[
all
...]
/art/compiler/driver/
compiler_driver.cc
[
all
...]
Completed in 1105 milliseconds