/art/runtime/base/ |
D | scoped_flock_test.cc | 34 ASSERT_TRUE(file_lock.Init(scratch_file.GetFilename().c_str(), in TEST_F() 37 ASSERT_FALSE(file_lock.Init("/guaranteed/not/to/exist", &error_msg)); in TEST_F()
|
D | scoped_flock.h | 39 bool Init(const char* filename, std::string* error_msg); 43 bool Init(File* file, std::string* error_msg);
|
D | scoped_flock.cc | 28 bool ScopedFlock::Init(const char* filename, std::string* error_msg) { in Init() function in art::ScopedFlock 64 bool ScopedFlock::Init(File* file, std::string* error_msg) { in Init() function in art::ScopedFlock
|
D | logging.cc | 63 Locks::Init(); in InitLogging()
|
/art/runtime/mirror/ |
D | stack_trace_element.cc | 49 trace->Init<true>(declaring_class, method_name, file_name, line_number); in Alloc() 51 trace->Init<false>(declaring_class, method_name, file_name, line_number); in Alloc() 58 void StackTraceElement::Init(Handle<String> declaring_class, Handle<String> method_name, in Init() function in art::mirror::StackTraceElement
|
D | dex_cache.cc | 34 void DexCache::Init(const DexFile* dex_file, in Init() function in art::mirror::DexCache
|
D | stack_trace_element.h | 72 void Init(Handle<String> declaring_class, Handle<String> method_name, Handle<String> file_name,
|
/art/runtime/gc/accounting/ |
D | atomic_stack.h | 40 mark_stack->Init(); in Create() 159 Init(); in Resize() 211 void Init() { in Init() function
|
/art/runtime/ |
D | barrier.h | 61 void Init(Thread* self, int count);
|
D | dex_instruction_visitor_test.cc | 28 TEST(InstructionTest, Init) { in TEST() argument
|
D | barrier.cc | 39 void Barrier::Init(Thread* self, int count) { in Init() function in art::Barrier
|
D | fault_handler.cc | 116 void FaultManager::Init() { in Init() function in art::FaultManager 393 fault_manager.Init(); in Action()
|
D | fault_handler.h | 41 void Init();
|
D | barrier_test.cc | 84 timeout_barrier.Init(self, 0); // Reset to zero for destruction. in TEST_F()
|
D | well_known_classes.h | 36 static void Init(JNIEnv* env); // Run before native methods are registered.
|
D | mem_map.h | 141 static void Init() LOCKS_EXCLUDED(Locks::mem_maps_lock_);
|
D | runtime.cc | 340 if (!instance_->Init(options, ignore_unrecognized)) { in Create() 669 bool Runtime::Init(const RuntimeOptions& raw_options, bool ignore_unrecognized) { in Init() function in art::Runtime 672 MemMap::Init(); in Init() 683 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_); in Init() 776 fault_manager.Init(); in Init() 841 verifier::MethodVerifier::Init(); in Init() 917 WellKnownClasses::Init(env); in InitNativeMethods()
|
D | dex_file.cc | 336 if (!dex_file->Init(error_msg)) { in OpenMemory() 377 bool DexFile::Init(std::string* error_msg) { in Init() function in art::DexFile 1253 Init(code_item, offset); in CatchHandlerIterator() 1259 Init(code_item, try_item.handler_off_); in CatchHandlerIterator() 1262 void CatchHandlerIterator::Init(const DexFile::CodeItem& code_item, in Init() function in art::CatchHandlerIterator 1265 Init(DexFile::GetCatchHandlerData(code_item, offset)); in Init() 1275 void CatchHandlerIterator::Init(const byte* handler_data) { in Init() function in art::CatchHandlerIterator
|
/art/compiler/ |
D | elf_writer_mclinker.h | 63 void Init();
|
D | compilers.h | 28 void Init() const OVERRIDE;
|
D | compiler.h | 46 virtual void Init() const = 0;
|
/art/runtime/gc/space/ |
D | image_space.h | 131 static ImageSpace* Init(const char* image_filename, const char* image_location,
|
D | image_space.cc | 536 image_lock.Init(image_filename->c_str(), error_msg); in Create() 543 space = ImageSpace::Init(image_filename->c_str(), image_location, in Create() 601 image_lock.Init(cache_filename.c_str(), error_msg); in Create() 602 space = ImageSpace::Init(cache_filename.c_str(), image_location, true, error_msg); in Create() 625 ImageSpace* ImageSpace::Init(const char* image_filename, const char* image_location, in Init() function in art::gc::space::ImageSpace
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 139 Init(base, disp); in Address() 143 Init(base, disp.Int32Value()); in Address() 148 Init(ESP, disp.Int32Value()); in Address() 152 Init(base, disp.Int32Value()); in Address() 155 void Init(Register base, int32_t disp) { in Init() function
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 167 Init(base, disp); in Address() 171 Init(base, disp.Int32Value()); in Address() 176 Init(CpuRegister(RSP), disp.Int32Value()); in Address() 180 Init(base, disp.Int32Value()); in Address() 183 void Init(CpuRegister base, int32_t disp) { in Init() function
|