Home
last modified time | relevance | path

Searched refs:Create (Results 151 – 175 of 203) sorted by relevance

123456789

/art/runtime/
Doat.cc48 OatHeader* OatHeader::Create(InstructionSet instruction_set, in Create() function in art::OatHeader
Druntime.h124 static bool Create(RuntimeArgumentMap&& runtime_options)
128 static bool Create(const RuntimeOptions& raw_options, bool ignore_unrecognized)
Dclass_loader_context.cc109 return Create(""); in Default()
112 std::unique_ptr<ClassLoaderContext> ClassLoaderContext::Create(const std::string& spec) { in Create() function in art::ClassLoaderContext
1226 return ClassLoaderContext::Create(possible_encoded_class_loader_context.c_str()) != nullptr in IsValidEncoding()
Dthread.cc441 static FrameIdToShadowFrame* Create(size_t frame_id, in Create() function in art::FrameIdToShadowFrame
523 FrameIdToShadowFrame* record = FrameIdToShadowFrame::Create(frame_id, in FindOrCreateDebuggerShadowFrame()
869 JNIEnvExt::Create(child_thread, Runtime::Current()->GetJavaVM(), &error_msg)); in CreateNativeThread()
962 tlsPtr_.jni_env = JNIEnvExt::Create(this, java_vm, &error_msg); in Init()
2156 std::unique_ptr<Context> context(Context::Create()); in DumpJavaStack()
3053 std::unique_ptr<Context> context(Context::Create()); in CreateAnnotatedStackTrace()
3631 result = Context::Create(); in GetLongJumpContext()
4108 std::unique_ptr<Context> context(Context::Create()); in VerifyStackImpl()
Dthread_list.cc136 std::unique_ptr<BacktraceMap> map(BacktraceMap::Create(getpid())); in DumpNativeStacks()
207 backtrace_map_(dump_native_stack ? BacktraceMap::Create(getpid()) : nullptr), in DumpCheckpoint()
Dcommon_runtime_test.cc116 if (!Runtime::Create(options, false)) { in SetUp()
/art/runtime/gc/collector/
Dimmune_spaces_test.cc73 accounting::ContinuousSpaceBitmap::Create("bitmap", in ReserveBitmaps()
Dconcurrent_copying.cc80 gc_mark_stack_(accounting::ObjectStack::Create("concurrent copying gc mark stack", in ConcurrentCopying()
85 rb_mark_bit_stack_(accounting::ObjectStack::Create("rb copying gc mark stack", in ConcurrentCopying()
137 accounting::AtomicStack<mirror::Object>::Create( in ConcurrentCopying()
300 region_space_inter_region_bitmap_ = accounting::ContinuousSpaceBitmap::Create( in CreateInterRegionRefBitmaps()
308 non_moving_space_inter_region_bitmap_ = accounting::ContinuousSpaceBitmap::Create( in CreateInterRegionRefBitmaps()
1785 accounting::AtomicStack<mirror::Object>::Create( in PushOntoMarkStack()
/art/runtime/gc/space/
Drosalloc_space.cc136 RosAllocSpace* RosAllocSpace::Create(const std::string& name, in Create() function in art::gc::space::RosAllocSpace
Dregion_space.cc97 RegionSpace* RegionSpace::Create( in Create() function in art::gc::space::RegionSpace
130 accounting::ContinuousSpaceBitmap::Create("region space live bitmap", Begin(), Capacity()); in RegionSpace()
Dregion_space.h65 static RegionSpace* Create(const std::string& name, MemMap&& mem_map, bool use_generational_cc);
/art/compiler/optimizing/
Doptimizing_compiler.cc586 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy); in AllocateRegisters()
811 CodeGenerator::Create(graph, in TryCompile()
937 CodeGenerator::Create(graph, in TryCompileIntrinsic()
Dcode_generator.cc142 static std::unique_ptr<CodeGenerationData> Create(ArenaStack* arena_stack, in Create() function in art::CodeGenerator::CodeGenerationData
374 code_generation_data_ = CodeGenerationData::Create(graph_->GetArenaStack(), GetInstructionSet()); in InitializeCodeGenerationData()
978 std::unique_ptr<CodeGenerator> CodeGenerator::Create(HGraph* graph, in Create() function in art::CodeGenerator
Dinliner.cc883 ReferenceTypeInfo::Create(monomorphic_type, /* is_exact= */ true), in TryInlineMonomorphicCall()
1051 ReferenceTypeInfo::Create(handle, /* is_exact= */ true), in TryInlinePolymorphicCall()
2270 ? ReferenceTypeInfo::Create(graph_->GetHandleCache()->NewHandle(cls)) in FixUpReturnReferenceType()
/art/dex2oat/linker/
Drelative_patcher_test.h83 patcher_ = RelativePatcher::Create(instruction_set_, in Reset()
/art/test/common/
Druntime_state.cc281 ProfilingInfo::Create(self, method, /* retry_allocation */ true); in ForceJitCompiled()
/art/runtime/interpreter/mterp/arm/
Dmain.S410 add rPC, r1, r0, lsl #1 @ Create direct pointer to 1st dex opcode
/art/runtime/jit/
Djit_code_cache.h191 static JitCodeCache* Create(bool used_only_for_profile_data,
Djit_code_cache.cc207 JitCodeCache* JitCodeCache::Create(bool used_only_for_profile_data, in Create() function in art::jit::JitCodeCache
1147 live_bitmap_.reset(CodeCacheBitmap::Create( in GarbageCollectCache()
1786 if (ProfilingInfo::Create(self, method, /* retry_allocation= */ true)) { in NotifyCompilationOf()
/art/openjdkjvmti/
Dti_stack.cc849 art::Context::Create(), in REQUIRES_SHARED()
1066 std::unique_ptr<art::Context> context(art::Context::Create()); in NotifyFramePop()
1160 std::unique_ptr<art::Context> context(art::Context::Create()); in NonStandardExitFrames()
/art/runtime/jni/
Djava_vm_ext.cc528 std::unique_ptr<JavaVMExt> JavaVMExt::Create(Runtime* runtime, in Create() function in art::JavaVMExt
1210 if (!Runtime::Create(options, ignore_unrecognized)) { in JNI_CreateJavaVM()
/art/runtime/gc/
Dheap.cc559 region_space_ = space::RegionSpace::Create( in Heap()
600 large_object_space_ = space::FreeListSpace::Create("free list large object space", capacity_); in Heap()
603 large_object_space_ = space::LargeObjectMapSpace::Create("mem map large object space"); in Heap()
632 card_table_.reset(accounting::CardTable::Create(reinterpret_cast<uint8_t*>(kMinHeapAddress), in Heap()
657 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize, in Heap()
660 allocation_stack_.reset(accounting::ObjectStack::Create( in Heap()
662 live_stack_.reset(accounting::ObjectStack::Create( in Heap()
/art/dexlayout/
Dcompact_dex_writer.cc154 const uint16_t* preheader = disk_code_item.Create( in WriteCodeItem()
/art/runtime/gc/accounting/
Dmod_union_table.cc490 card_bitmap_.reset(CardBitmap::Create( in ModUnionTableCardCache()
/art/cmdline/
Dcmdline_types.h336 existing_value.push_back(Plugin::Create(args));

123456789