Home
last modified time | relevance | path

Searched refs:is_zygote (Results 1 – 14 of 14) sorted by relevance

/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc293 jboolean is_zygote, in ZygoteHooks_nativePostForkChild() argument
295 DCHECK(!(is_system_server && is_zygote)); in ZygoteHooks_nativePostForkChild()
298 Runtime::Current()->SetAsZygoteChild(is_system_server, is_zygote); in ZygoteHooks_nativePostForkChild()
345 /* is_system_server= */ false, is_zygote); in ZygoteHooks_nativePostForkChild()
348 runtime->GetJit()->PostForkChildAction(is_system_server, is_zygote); in ZygoteHooks_nativePostForkChild()
396 DCHECK(!(is_zygote && do_hidden_api_checks)) in ZygoteHooks_nativePostForkChild()
415 runtime->InitNonZygoteOrPostFork(env, is_system_server, is_zygote, action, isa_string.c_str()); in ZygoteHooks_nativePostForkChild()
420 is_zygote, in ZygoteHooks_nativePostForkChild()
/art/runtime/jit/
Djit_memory_region.cc47 bool is_zygote, in Initialize() argument
67 if (is_zygote) { in Initialize()
95 std::string data_cache_name = is_zygote ? "zygote-data-code-cache" : "data-code-cache"; in Initialize()
96 std::string exec_cache_name = is_zygote ? "zygote-jit-code-cache" : "jit-code-cache"; in Initialize()
245 if (is_zygote && !ProtectZygoteMemory(mem_fd.get(), error_msg)) { in Initialize()
Ddebugger_interface.cc493 bool is_zygote = Runtime::Current()->IsZygote(); in RepackEntries() local
499 if (it == descriptor.zygote_head_entry_ && !is_zygote) { in RepackEntries()
598 bool is_zygote = Runtime::Current()->IsZygote(); in AddNativeDebugInfoForJit() local
599 RepackEntries(/*compress_entries=*/ is_zygote, /*removed=*/ ArrayRef<const void*>()); in AddNativeDebugInfoForJit()
Djit_memory_region.h71 bool is_zygote,
Djit_code_cache.h193 bool is_zygote,
390 void PostForkChildAction(bool is_system_server, bool is_zygote);
Djit_code_cache.cc209 bool is_zygote, in Create() argument
240 is_zygote, in Create()
246 if (is_zygote) { in Create()
1936 void JitCodeCache::PostForkChildAction(bool is_system_server, bool is_zygote) { in PostForkChildAction() argument
1954 if (is_zygote || Runtime::Current()->IsSafeMode()) { in PostForkChildAction()
1975 is_zygote, in PostForkChildAction()
Djit.h390 void PostForkChildAction(bool is_system_server, bool is_zygote);
Djit.cc1734 void Jit::PostForkChildAction(bool is_system_server, bool is_zygote) { in PostForkChildAction() argument
1743 if (!is_zygote && fd_methods_ != -1) { in PostForkChildAction()
1759 if (is_zygote || runtime->IsSafeMode()) { in PostForkChildAction()
/art/runtime/gc/space/
Dimage_space.h134 bool is_zygote,
Dlarge_object_space.h171 bool is_zygote; member
Dlarge_object_space.cc177 return it->second.is_zygote; in IsZygoteLargeObject()
183 pair.second.is_zygote = true; in SetAllLargeObjectsAsZygoteObjects()
Dimage_space.cc322 bool is_zygote, in ImageCreationAllowed() argument
332 if (is_zygote) { in ImageCreationAllowed()
2496 bool is_zygote) in BootImageLoader() argument
2503 is_zygote_(is_zygote), in BootImageLoader()
3561 bool is_zygote, in LoadBootImage() argument
3583 is_zygote); in LoadBootImage()
3669 is_zygote, in LoadBootImage()
/art/runtime/
Druntime.h188 void SetAsZygoteChild(bool is_system_server, bool is_zygote) { in SetAsZygoteChild() argument
191 is_zygote_ = is_zygote; in SetAsZygoteChild()
/art/runtime/gc/
Dheap.cc378 const bool is_zygote = runtime->IsZygote(); in Heap() local
379 if (!is_zygote) { in Heap()
401 bool separate_non_moving_space = is_zygote || in Heap()
411 } else if (foreground_collector_type_ != kCollectorTypeCC && is_zygote) { in Heap()
425 is_zygote, in Heap()
484 const char* space_name = is_zygote ? kZygoteSpaceName : kNonMovingSpaceName; in Heap()
503 if (separate_non_moving_space || !is_zygote) { in Heap()
729 (is_zygote || separate_non_moving_space)) { in Heap()