Searched defs:Init (Results 1 - 20 of 20) sorted by relevance

/art/runtime/
H A Dbarrier.cc39 void Barrier::Init(Thread* self, int count) { function in class:art::Barrier
H A Dfault_handler.cc116 void FaultManager::Init() { function in class:art::FaultManager
392 fault_manager.Init();
H A Dmem_map.cc648 void MemMap::Init() { function in class:art::MemMap
651 // dex2oat calls MemMap::Init twice since its needed before the runtime is created.
H A Dwell_known_classes.cc147 void WellKnownClasses::Init(JNIEnv* env) { function in class:art::WellKnownClasses
H A Dmonitor.cc78 void Monitor::Init(uint32_t lock_profiling_threshold, bool (*is_sensitive_thread_hook)()) { function in class:art::Monitor
H A Druntime.cc333 InitLogging(NULL); // Calls Locks::Init() as a side effect.
335 if (!instance_->Init(options, ignore_unrecognized)) {
653 bool Runtime::Init(const RuntimeOptions& raw_options, bool ignore_unrecognized) { function in class:art::Runtime
656 MemMap::Init();
663 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
667 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
760 fault_manager.Init();
825 verifier::MethodVerifier::Init();
861 // Runtime::Init() (zygote):
877 // Runtime::Init()
[all...]
H A Dcheck_jni.cc155 Init(flags, functionName, true);
164 Init(kFlag_Invocation, functionName, has_method);
668 void Init(int flags, const char* functionName, bool has_method) { function in class:art::ScopedCheck
H A Ddex_file.cc332 if (!dex_file->Init(error_msg)) {
371 bool DexFile::Init(std::string* error_msg) { function in class:art::DexFile
1246 Init(code_item, offset);
1252 Init(code_item, try_item.handler_off_);
1255 void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item, function in class:art::CatchHandlerIterator
1258 Init(DexFile::GetCatchHandlerData(code_item, offset));
1268 void CatchHandlerIterator::Init(const byte* handler_data) { function in class:art::CatchHandlerIterator
H A Dthread.cc154 // after self->Init().
159 self->Init(runtime->GetThreadList(), runtime->GetJavaVM());
330 // Manually delete the global reference since Thread::Init will not have been run.
346 void Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm) { function in class:art::Thread
388 self->Init(runtime->GetThreadList(), runtime->GetJavaVM());
1179 bool initialized = (tlsPtr_.jni_env != nullptr); // Did Thread::Init run?
1420 bool Init(int depth)
1500 if (!build_trace_visitor.Init(depth)) {
/art/runtime/base/
H A Dscoped_flock.cc28 bool ScopedFlock::Init(const char* filename, std::string* error_msg) { function in class:art::ScopedFlock
61 bool ScopedFlock::Init(File* file, std::string* error_msg) { function in class:art::ScopedFlock
H A Dmutex.cc832 void Locks::Init() { function in class:art::Locks
/art/runtime/mirror/
H A Ddex_cache.cc34 void DexCache::Init(const DexFile* dex_file, function in class:art::mirror::DexCache
H A Dstack_trace_element.cc49 trace->Init<true>(declaring_class, method_name, file_name, line_number);
51 trace->Init<false>(declaring_class, method_name, file_name, line_number);
58 void StackTraceElement::Init(Handle<String> declaring_class, Handle<String> method_name, function in class:art::mirror::StackTraceElement
/art/compiler/
H A Dcompilers.cc44 void QuickCompiler::Init() const { function in class:art::QuickCompiler
H A Delf_writer_mclinker.cc74 Init();
101 void ElfWriterMclinker::Init() { function in class:art::ElfWriterMclinker
/art/compiler/utils/x86/
H A Dassembler_x86.h139 Init(base, disp);
143 Init(base, disp.Int32Value());
148 Init(ESP, disp.Int32Value());
152 Init(base, disp.Int32Value());
155 void Init(Register base, int32_t disp) { function in class:art::x86::Address
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h167 Init(base, disp);
171 Init(base, disp.Int32Value());
176 Init(CpuRegister(RSP), disp.Int32Value());
180 Init(base, disp.Int32Value());
183 void Init(CpuRegister base, int32_t disp) { function in class:art::x86_64::Address
/art/runtime/gc/accounting/
H A Datomic_stack.h40 mark_stack->Init();
159 Init();
211 void Init() { function in class:art::gc::accounting::AtomicStack
/art/runtime/gc/space/
H A Dimage_space.cc468 // ScopedFlock::GetFile to Init the image file. We want the file
472 image_lock.Init(image_filename->c_str(), error_msg);
479 space = ImageSpace::Init(image_filename->c_str(), image_location,
526 // ScopedFlock::GetFile to Init the image file. We want the file
530 image_lock.Init(cache_filename.c_str(), error_msg);
531 space = ImageSpace::Init(cache_filename.c_str(), image_location, true, error_msg);
554 ImageSpace* ImageSpace::Init(const char* image_filename, const char* image_location, function in class:art::gc::space::ImageSpace
562 LOG(INFO) << "ImageSpace::Init entering image_filename=" << image_filename;
620 // VerifyImageAllocations() will be called later in Runtime::Init()
658 LOG(INFO) << "ImageSpace::Init exitin
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc54 void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags, function in class:art::verifier::PcToRegisterLineTable
1088 reg_table_.Init(kTrackCompilerInterestPoints,
4161 void MethodVerifier::Init() { function in class:art::verifier::MethodVerifier
4162 art::verifier::RegTypeCache::Init();

Completed in 4420 milliseconds