Searched refs:Init (Results 26 - 50 of 58) sorted by relevance

123

/art/runtime/
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 Dcommon_runtime_test.cc188 MemMap::Init(); // For LoadExpectSingleDexFile
220 WellKnownClasses::Init(Thread::Current()->GetJniEnv());
H A Ddex_file.h932 // Top-level initializer that calls other Init methods.
933 bool Init(std::string* error_msg);
1303 Init(handler_data);
1323 void Init(const DexFile::CodeItem& code_item, int32_t offset);
1324 void Init(const byte* handler_data);
H A Dmonitor.h57 static void Init(uint32_t lock_profiling_threshold, bool (*is_sensitive_thread_hook)());
H A Dmem_map_test.cc89 MemMap::Init();
H A Druntime.h495 bool Init(const RuntimeOptions& options, bool ignore_unrecognized)
H A Dwell_known_classes.cc147 void WellKnownClasses::Init(JNIEnv* env) { function in class:art::WellKnownClasses
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)) {
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 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
/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/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/compiler/
H A Delf_writer_mclinker.cc74 Init();
101 void ElfWriterMclinker::Init() { function in class:art::ElfWriterMclinker
H A Dimage_test.cc140 MemMap::Init();
H A Dcommon_compiler_test.cc407 MemMap::Init();
/art/runtime/verifier/
H A Dmethod_verifier.h119 void Init(RegisterTrackingMode mode, InstructionFlags* flags, uint32_t insns_size,
199 static void Init() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
H A Dreg_type_cache.h45 static void Init() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
/art/runtime/gc/collector/
H A Dmark_compact.h84 void Init();
H A Dsemi_space.h95 void Init();
H A Dmark_sweep.h83 void Init();
/art/patchoat/
H A Dpatchoat.cc312 img_flock.Init(out, &error_msg);
764 MemMap::Init();
1094 if (have_oat_files && !output_oat_lock.Init(output_oat.get(), &error_msg)) {
/art/runtime/base/
H A Dmutex.h484 static void Init();
H A Dmutex.cc832 void Locks::Init() { function in class:art::Locks
/art/dex2oat/
H A Ddex2oat.cc1243 art::MemMap::Init(); // For ZipEntry::ExtractToMemMap.
1287 // done ahead of WellKnownClasses::Init that causes verification. Note: doesn't force
1290 WellKnownClasses::Init(self->GetJniEnv());

Completed in 373 milliseconds

123