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

/art/runtime/mirror/
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
H A Ddex_cache.cc34 void DexCache::Init(const DexFile* dex_file, function in class:art::mirror::DexCache
/art/runtime/
H A Dbarrier.cc41 void Barrier::Init(Thread* self, int count) { function in class:art::Barrier
H A Dfault_handler.cc117 void FaultManager::Init() { function in class:art::FaultManager
224 fault_manager.Init();
242 fault_manager.Init();
H A Dmem_map.cc739 void MemMap::Init() { function in class:art::MemMap
742 // dex2oat calls MemMap::Init twice since its needed before the runtime is created.
H A Dmonitor.cc72 void Monitor::Init(uint32_t lock_profiling_threshold) { function in class:art::Monitor
H A Dwell_known_classes.cc218 void WellKnownClasses::Init(JNIEnv* env) { function in class:art::WellKnownClasses
H A Druntime.cc477 InitLogging(/* argv */ nullptr); // Calls Locks::Init() as a side effect.
492 if (!instance_->Init(std::move(runtime_options))) {
932 bool Runtime::Init(RuntimeArgumentMap&& runtime_options_in) { function in class:art::Runtime
941 MemMap::Init();
944 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
951 Monitor::Init(runtime_options.GetOrDefault(Opt::LockProfThreshold));
1113 fault_manager.Init();
1227 verifier::MethodVerifier::Init();
1280 // Runtime::Init() (zygote):
1296 // Runtime::Init()
[all...]
H A Ddex_file.cc419 if (!dex_file->Init(error_msg)) {
464 bool DexFile::Init(std::string* error_msg) { function in class:art::DexFile
2503 Init(code_item, offset);
2509 Init(code_item, try_item.handler_off_);
2512 void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item, function in class:art::CatchHandlerIterator
2515 Init(DexFile::GetCatchHandlerData(code_item, offset));
2525 void CatchHandlerIterator::Init(const uint8_t* handler_data) { function in class:art::CatchHandlerIterator
H A Dthread.cc423 // after self->Init().
432 CHECK(self->Init(runtime->GetThreadList(), runtime->GetJavaVM(), self->tlsPtr_.tmp_jni_env));
668 // Manually delete the global reference since Thread::Init will not have been run.
685 bool Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm, JNIEnvExt* jni_env_ext) { function in class:art::Thread
748 bool init_success = self->Init(runtime->GetThreadList(), runtime->GetJavaVM());
1756 bool initialized = (tlsPtr_.jni_env != nullptr); // Did Thread::Init run?
2025 bool Init(int depth) SHARED_REQUIRES(Locks::mutator_lock_) ACQUIRE(Roles::uninterruptible_) {
2123 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
29 return Init(filename, O_CREAT | O_RDWR, true, error_msg);
32 bool ScopedFlock::Init(const char* filename, int flags, bool block, std::string* error_msg) { function in class:art::ScopedFlock
85 bool ScopedFlock::Init(File* file, std::string* error_msg) { function in class:art::ScopedFlock
H A Dmutex.cc939 void Locks::Init() { function in class:art::Locks
/art/profman/
H A Dprofile_assistant.cc73 return flock.Init(filename.c_str(), O_RDWR, /* block */ true, error);
81 return flock.Init(&file, error);
89 bool Init(const std::vector<std::string>& filenames, /* out */ std::string* error) { function in class:art::ScopedCollectionFlock
100 bool Init(const std::vector<int>& fds, /* out */ std::string* error) { function in class:art::ScopedCollectionFlock
123 if (!profile_files_flocks.Init(profile_files_fd, &error)) {
142 if (!profile_files_flocks.Init(profile_files, &error)) {
/art/runtime/gc/accounting/
H A Datomic_stack.h58 mark_stack->Init();
182 Init();
240 void Init() { function in class:art::gc::accounting::AtomicStack
/art/compiler/utils/x86/
H A Dassembler_x86.h151 Init(base_in, disp);
155 Init(base_in, disp);
160 Init(base_in, disp.Int32Value());
165 Init(ESP, disp.Int32Value());
169 Init(base_in, disp.Int32Value());
180 Init(base_in, index_in, scale_in, disp);
187 Init(base_in, index_in, scale_in, disp);
205 void Init(Register base_in, int32_t disp) { function in class:art::x86::Address
220 void Init(Register base_in, Register index_in, ScaleFactor scale_in, int32_t disp) { function in class:art::x86::Address
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h172 Init(base_in, disp);
176 Init(base_in, disp.Int32Value());
181 Init(CpuRegister(RSP), disp.Int32Value());
185 Init(base_in, disp.Int32Value());
188 void Init(CpuRegister base_in, int32_t disp) { function in class:art::x86_64::Address
/art/compiler/optimizing/
H A Doptimizing_compiler.cc285 void Init() OVERRIDE;
339 void OptimizingCompiler::Init() { function in class:art::OptimizingCompiler
340 // Enable C1visualizer output. Must be done in Init() because the compiler
/art/runtime/gc/space/
H A Dimage_space.cc479 // ScopedFlock::GetFile to Init the image file. We want the file
489 image_lock.Init(image_filename->c_str(),
501 space = ImageSpace::Init(image_filename->c_str(),
572 // ScopedFlock::GetFile to Init the image file. We want the file
576 image_lock.Init(cache_filename.c_str(), error_msg);
577 space = ImageSpace::Init(cache_filename.c_str(), image_location, true, nullptr, error_msg);
1149 ImageSpace* ImageSpace::Init(const char* image_filename, function in class:art::gc::space::ImageSpace
1158 VLOG(image) << "ImageSpace::Init entering image_filename=" << image_filename;
1370 // VerifyImageAllocations() will be called later in Runtime::Init()
1427 VLOG(image) << "ImageSpace::Init exitin
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc68 void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags, function in class:art::verifier::PcToRegisterLineTable
1561 reg_table_.Init(kTrackCompilerInterestPoints,
5080 void MethodVerifier::Init() { function in class:art::MethodVerifier
5081 art::verifier::RegTypeCache::Init();

Completed in 438 milliseconds