Home
last modified time | relevance | path

Searched refs:tienv (Results 1 – 3 of 3) sorted by relevance

/art/openjdkjvmti/
Dti_logging.cc46 ArtJvmTiEnv* tienv = ArtJvmTiEnv::AsArtJvmTiEnv(env); in GetLastError() local
47 art::MutexLock mu(art::Thread::Current(), tienv->last_error_mutex_); in GetLastError()
48 if (tienv->last_error_.empty()) { in GetLastError()
51 const size_t size = tienv->last_error_.size() + 1; in GetLastError()
53 jvmtiError err = tienv->Allocate(size, reinterpret_cast<unsigned char**>(&out)); in GetLastError()
57 strlcpy(out, tienv->last_error_.c_str(), size); in GetLastError()
66 ArtJvmTiEnv* tienv = ArtJvmTiEnv::AsArtJvmTiEnv(env); in ClearLastError() local
67 art::MutexLock mu(art::Thread::Current(), tienv->last_error_mutex_); in ClearLastError()
68 tienv->last_error_.clear(); in ClearLastError()
DOpenjdkJvmTi.cc1308 ArtJvmTiEnv* tienv = ArtJvmTiEnv::AsArtJvmTiEnv(env); in DisposeEnvironment() local
1309 gEventHandler->RemoveArtJvmTiEnv(tienv); in DisposeEnvironment()
1310 art::Runtime::Current()->RemoveSystemWeakHolder(tienv->object_tag_table.get()); in DisposeEnvironment()
1311 ThreadUtil::RemoveEnvironment(tienv); in DisposeEnvironment()
1312 delete tienv; in DisposeEnvironment()
Dti_stack.cc1017 ArtJvmTiEnv* tienv = ArtJvmTiEnv::AsArtJvmTiEnv(env); in NotifyFramePop() local
1067 art::WriterMutexLock lk(self, tienv->event_info_mutex_); in NotifyFramePop()
1076 tienv->notify_frames.insert(shadow_frame); in NotifyFramePop()