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

/art/runtime/base/
H A Dscoped_flock.cc28 bool ScopedFlock::Init(const char* filename, std::string* error_msg) { function in class:art::ScopedFlock
64 bool ScopedFlock::Init(File* file, std::string* error_msg) { function in class:art::ScopedFlock
H A Dmutex.cc919 void Locks::Init() { function in class:art::Locks
/art/runtime/mirror/
H A Ddex_cache.cc34 void DexCache::Init(const DexFile* dex_file, String* location, ObjectArray<String>* strings, 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/runtime/
H A Dbarrier.cc40 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
248 fault_manager.Init();
266 fault_manager.Init();
H A Dmem_map.cc760 void MemMap::Init() { function in class:art::MemMap
763 // dex2oat calls MemMap::Init twice since its needed before the runtime is created.
H A Dmonitor.cc82 void Monitor::Init(uint32_t lock_profiling_threshold, bool (*is_sensitive_thread_hook)()) { function in class:art::Monitor
H A Dwell_known_classes.cc208 void WellKnownClasses::Init(JNIEnv* env) { function in class:art::WellKnownClasses
H A Ddex_file.cc389 if (!dex_file->Init(error_msg)) {
428 bool DexFile::Init(std::string* error_msg) { function in class:art::DexFile
1315 Init(code_item, offset);
1321 Init(code_item, try_item.handler_off_);
1324 void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item, function in class:art::CatchHandlerIterator
1327 Init(DexFile::GetCatchHandlerData(code_item, offset));
1337 void CatchHandlerIterator::Init(const uint8_t* handler_data) { function in class:art::CatchHandlerIterator
H A Druntime.cc415 InitLogging(nullptr); // Calls Locks::Init() as a side effect.
417 if (!instance_->Init(options, ignore_unrecognized)) {
782 bool Runtime::Init(const RuntimeOptions& raw_options, bool ignore_unrecognized) { function in class:art::Runtime
783 ATRACE_BEGIN("Runtime::Init");
786 MemMap::Init();
797 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
801 Monitor::Init(runtime_options.GetOrDefault(Opt::LockProfThreshold),
943 fault_manager.Init();
1039 verifier::MethodVerifier::Init();
1092 // Runtime::Init() (zygot
[all...]
H A Dthread.cc247 // after self->Init().
256 CHECK(self->Init(runtime->GetThreadList(), runtime->GetJavaVM(), self->tlsPtr_.tmp_jni_env));
454 // Manually delete the global reference since Thread::Init will not have been run.
471 bool Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm, JNIEnvExt* jni_env_ext) { function in class:art::Thread
529 bool init_success = self->Init(runtime->GetThreadList(), runtime->GetJavaVM());
1417 bool initialized = (tlsPtr_.jni_env != nullptr); // Did Thread::Init run?
1671 bool Init(int depth)
1742 if (!build_trace_visitor.Init(depth)) {
/art/compiler/dex/quick/
H A Dquick_compiler.cc562 void QuickCompiler::Init() { function in class:art::QuickCompiler
/art/compiler/utils/x86/
H A Dassembler_x86.h136 Init(base_in, disp);
140 Init(base_in, disp.Int32Value());
145 Init(ESP, disp.Int32Value());
149 Init(base_in, disp.Int32Value());
152 void Init(Register base_in, int32_t disp) { function in class:art::x86::Address
/art/runtime/gc/accounting/
H A Datomic_stack.h59 mark_stack->Init();
179 Init();
237 void Init() { function in class:art::gc::accounting::AtomicStack
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h170 Init(base_in, disp);
174 Init(base_in, disp.Int32Value());
179 Init(CpuRegister(RSP), disp.Int32Value());
183 Init(base_in, disp.Int32Value());
186 void Init(CpuRegister base_in, int32_t disp) { function in class:art::x86_64::Address
/art/compiler/optimizing/
H A Doptimizing_compiler.cc207 void Init() OVERRIDE;
254 void OptimizingCompiler::Init() { function in class:art::OptimizingCompiler
255 delegate_->Init();
256 // Enable C1visualizer output. Must be done in Init() because the compiler
/art/runtime/gc/space/
H A Dimage_space.cc568 // ScopedFlock::GetFile to Init the image file. We want the file
572 image_lock.Init(image_filename->c_str(), error_msg);
579 space = ImageSpace::Init(image_filename->c_str(), image_location,
633 // ScopedFlock::GetFile to Init the image file. We want the file
637 image_lock.Init(cache_filename.c_str(), error_msg);
638 space = ImageSpace::Init(cache_filename.c_str(), image_location, true, error_msg);
661 ImageSpace* ImageSpace::Init(const char* image_filename, const char* image_location, function in class:art::gc::space::ImageSpace
669 LOG(INFO) << "ImageSpace::Init entering image_filename=" << image_filename;
747 // VerifyImageAllocations() will be called later in Runtime::Init()
780 LOG(INFO) << "ImageSpace::Init exitin
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc56 void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags, function in class:art::verifier::PcToRegisterLineTable
1226 reg_table_.Init(kTrackCompilerInterestPoints,
4432 void MethodVerifier::Init() { function in class:art::verifier::MethodVerifier
4433 art::verifier::RegTypeCache::Init();

Completed in 7493 milliseconds