Searched refs:Init (Results 1 - 25 of 61) sorted by relevance

123

/art/runtime/base/
H A Dscoped_flock.h39 bool Init(const char* filename, std::string* error_msg);
43 bool Init(File* file, std::string* error_msg);
H A Dscoped_flock_test.cc34 ASSERT_TRUE(file_lock.Init(scratch_file.GetFilename().c_str(),
37 ASSERT_FALSE(file_lock.Init("/guaranteed/not/to/exist", &error_msg));
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
/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, String* location, ObjectArray<String>* strings, function in class:art::mirror::DexCache
H A Dstack_trace_element.h72 void Init(Handle<String> declaring_class, Handle<String> method_name, Handle<String> file_name,
H A Ddex_cache.h49 void Init(const DexFile* dex_file, String* location, ObjectArray<String>* strings,
/art/runtime/
H A Dbarrier.h62 void Init(Thread* self, int count);
H A Ddex_instruction_visitor_test.cc27 TEST(InstructionTest, Init) {
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 Dbarrier_test.cc84 timeout_barrier.Init(self, 0); // Reset to zero for destruction.
H A Dfault_handler.h38 void Init();
H A Dmem_map.h151 static void Init() LOCKS_EXCLUDED(Locks::mem_maps_lock_);
H A Dwell_known_classes.h36 static void Init(JNIEnv* env); // Run before native methods are registered.
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
/art/compiler/
H A Dcompiler.h41 virtual void Init() = 0;
/art/compiler/dex/quick/
H A Dquick_compiler.h33 void Init() OVERRIDE;
H A Ddex_file_method_inliner.cc463 SPECIAL(JavaLangString, Init, _V, kInlineStringInit, 0),
464 SPECIAL(JavaLangString, Init, ByteArray_V, kInlineStringInit, 1),
465 SPECIAL(JavaLangString, Init, ByteArrayI_V, kInlineStringInit, 2),
466 SPECIAL(JavaLangString, Init, ByteArrayII_V, kInlineStringInit, 3),
467 SPECIAL(JavaLangString, Init, ByteArrayIII_V, kInlineStringInit, 4),
468 SPECIAL(JavaLangString, Init, ByteArrayIIString_V, kInlineStringInit, 5),
469 SPECIAL(JavaLangString, Init, ByteArrayString_V, kInlineStringInit, 6),
470 SPECIAL(JavaLangString, Init, ByteArrayIICharset_V, kInlineStringInit, 7),
471 SPECIAL(JavaLangString, Init, ByteArrayCharset_V, kInlineStringInit, 8),
472 SPECIAL(JavaLangString, Init, CharArray_
[all...]
/art/runtime/gc/space/
H A Dimage_space.h131 static ImageSpace* Init(const char* image_filename, const char* image_location,
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/gc/accounting/
H A Datomic_stack.h59 mark_stack->Init();
179 Init();
237 void Init() { function in class:art::gc::accounting::AtomicStack
H A Dspace_bitmap_test.cc32 TEST_F(SpaceBitmapTest, Init) {
/art/dalvikvm/
H A Ddalvikvm.cc163 if (!jni_invocation.Init(lib)) {
/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

Completed in 662 milliseconds

123