/art/runtime/base/ |
D | scoped_flock.h | 54 bool Init(const char* filename, 60 bool Init(const char* filename, int flags, bool block, std::string* error_msg); 62 bool Init(const char* filename, std::string* error_msg); 66 bool Init(File* file, std::string* error_msg);
|
D | scoped_flock.cc | 31 bool ScopedFlock::Init(const char* filename, std::string* error_msg) { in Init() function in art::ScopedFlock 32 return Init(filename, O_CREAT | O_RDWR, true, error_msg); in Init() 35 bool ScopedFlock::Init(const char* filename, int flags, bool block, std::string* error_msg) { in Init() function in art::ScopedFlock 36 return Init(filename, flags, block, true, error_msg); in Init() 39 bool ScopedFlock::Init(const char* filename, in Init() function in art::ScopedFlock 99 bool ScopedFlock::Init(File* file, std::string* error_msg) { in Init() function in art::ScopedFlock
|
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 | logging.cc | 63 Locks::Init(); in InitLogging()
|
/art/profman/ |
D | profile_assistant.cc | 78 return flock.Init(filename.c_str(), O_RDWR, /* block */ true, error); in InitFlock() 86 return flock.Init(&file, error); in InitFlock() 94 bool Init(const std::vector<std::string>& filenames, /* out */ std::string* error) { in Init() function in art::ScopedCollectionFlock 105 bool Init(const std::vector<int>& fds, /* out */ std::string* error) { in Init() function in art::ScopedCollectionFlock 128 if (!profile_files_flocks.Init(profile_files_fd, &error)) { in ProcessProfiles() 147 if (!profile_files_flocks.Init(profile_files, &error)) { in ProcessProfiles()
|
/art/test/008-exceptions/ |
D | expected.txt | 10 Static Init 18 BadSuperClass Static Init 20 MultiDexBadInit Static Init
|
/art/runtime/mirror/ |
D | stack_trace_element.cc | 51 trace->Init<true>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number); in Alloc() 53 trace->Init<false>(declaring_class.Get(), method_name.Get(), file_name.Get(), line_number); in Alloc() 60 void StackTraceElement::Init(ObjPtr<String> declaring_class, in Init() function in art::mirror::StackTraceElement
|
D | stack_trace_element.h | 74 void Init(ObjPtr<String> declaring_class,
|
D | dex_cache.cc | 154 dex_cache->Init(dex_file, in InitializeDexCache() 171 void DexCache::Init(const DexFile* dex_file, in Init() function in art::mirror::DexCache
|
/art/runtime/openjdkjvmti/ |
D | ti_class_definition.h | 55 jvmtiError Init(ArtJvmTiEnv* env, jclass klass); 56 jvmtiError Init(ArtJvmTiEnv* env, const jvmtiClassDefinition& def);
|
D | ti_class_definition.cc | 133 jvmtiError ArtClassDefinition::Init(ArtJvmTiEnv* env, jclass klass) { in Init() function in openjdkjvmti::ArtClassDefinition 165 jvmtiError ArtClassDefinition::Init(ArtJvmTiEnv* env, const jvmtiClassDefinition& def) { in Init() function in openjdkjvmti::ArtClassDefinition
|
D | transform.cc | 122 res = def.Init(env, classes[i]); in RetransformClasses()
|
/art/build/ |
D | art.go | 259 module, props := library.Init() 268 module, props := binary.Init() 277 module, props := test.Init() 289 module, props := test.Init()
|
/art/runtime/ |
D | barrier.h | 62 void Init(Thread* self, int count) REQUIRES(!lock_);
|
D | dex_instruction_visitor_test.cc | 27 TEST(InstructionTest, Init) { in TEST() argument
|
D | barrier.cc | 41 void Barrier::Init(Thread* self, int count) { in Init() function in art::Barrier
|
D | fault_handler.h | 38 void Init();
|
D | barrier_test.cc | 84 timeout_barrier.Init(self, 0); // Reset to zero for destruction. in TEST_F()
|
D | mem_map.h | 182 static void Init() REQUIRES(!MemMap::mem_maps_lock_);
|
/art/runtime/gc/accounting/ |
D | atomic_stack.h | 60 mark_stack->Init(); in Create() 184 Init(); in Resize() 242 void Init() { in Init() function
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 152 Init(base_in, disp); in Address() 156 Init(base_in, disp); in Address() 161 Init(base_in, disp.Int32Value()); in Address() 166 Init(ESP, disp.Int32Value()); in Address() 170 Init(base_in, disp.Int32Value()); in Address() 181 Init(base_in, index_in, scale_in, disp); in Address() 188 Init(base_in, index_in, scale_in, disp); in Address() 206 void Init(Register base_in, int32_t disp) { in Init() function 221 void Init(Register base_in, Register index_in, ScaleFactor scale_in, int32_t disp) { in Init() function
|
/art/dexdump/ |
D | dexdump_main.cc | 64 MemMap::Init(); in dexdumpDriver()
|
/art/compiler/ |
D | compiler.h | 56 virtual void Init() = 0;
|
/art/dexlayout/ |
D | dexlayout_main.cc | 71 MemMap::Init(); in DexlayoutDriver()
|
/art/runtime/gc/space/ |
D | image_space.h | 172 static std::unique_ptr<ImageSpace> Init(const char* image_filename,
|