Home | History | Annotate | Download | only in vm

Lines Matching full:self

249     /* Buffer for register state during self verification */
288 void dvmLockThreadList(Thread* self);
330 * If "self" is NULL, this will use dvmThreadSelf().
332 bool dvmCheckSuspendPending(Thread* self);
338 INLINE bool dvmCheckSuspendQuick(Thread* self) {
339 return (self->suspendCount != 0);
344 * The "self" argument, which may be NULL, is accepted as an optimization.
354 ThreadStatus dvmChangeStatus(Thread* self, ThreadStatus newStatus);
480 INLINE JNIEnv* dvmGetThreadJNIEnv(Thread* self) { return self->jniEnv; }
481 INLINE void dvmSetThreadJNIEnv(Thread* self, JNIEnv* env) { self->jniEnv = env;}
552 void dvmAddToMonitorList(Thread* self, Object* obj, bool withTrace);
553 void dvmRemoveFromMonitorList(Thread* self, Object* obj);
554 LockedObjectData* dvmFindInMonitorList(const Thread* self, const Object* obj);