Searched refs:is_zygote (Results 1 – 12 of 12) sorted by relevance
/art/runtime/native/ |
D | dalvik_system_ZygoteHooks.cc | 299 jboolean is_zygote, in ZygoteHooks_nativePostForkChild() argument 301 DCHECK(!(is_system_server && is_zygote)); in ZygoteHooks_nativePostForkChild() 306 Runtime::Current()->SetAsZygoteChild(is_system_server, is_zygote); in ZygoteHooks_nativePostForkChild() 353 /* is_system_server= */ false, is_zygote); in ZygoteHooks_nativePostForkChild() 356 runtime->GetJit()->PostForkChildAction(is_system_server, is_zygote); in ZygoteHooks_nativePostForkChild() 404 DCHECK(!(is_zygote && do_hidden_api_checks)) in ZygoteHooks_nativePostForkChild() 423 runtime->InitNonZygoteOrPostFork(env, is_system_server, is_zygote, action, isa_string.c_str()); in ZygoteHooks_nativePostForkChild() 428 is_zygote, in ZygoteHooks_nativePostForkChild()
|
/art/runtime/jit/ |
D | jit_memory_region.cc | 47 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()
|
D | debugger_interface.cc | 496 bool is_zygote = Runtime::Current()->IsZygote(); in RepackEntries() local 502 if (it == descriptor.zygote_head_entry_ && !is_zygote) { in RepackEntries() 601 bool is_zygote = Runtime::Current()->IsZygote(); in AddNativeDebugInfoForJit() local 602 RepackEntries(/*compress_entries=*/ is_zygote, /*removed=*/ ArrayRef<const void*>()); in AddNativeDebugInfoForJit()
|
D | jit_code_cache.h | 194 bool is_zygote, 379 void PostForkChildAction(bool is_system_server, bool is_zygote);
|
D | jit_memory_region.h | 71 bool is_zygote,
|
D | jit_code_cache.cc | 210 bool is_zygote, in Create() argument 241 is_zygote, in Create() 247 if (is_zygote) { in Create() 1792 void JitCodeCache::PostForkChildAction(bool is_system_server, bool is_zygote) { in PostForkChildAction() argument 1810 if (is_zygote || Runtime::Current()->IsSafeMode()) { in PostForkChildAction() 1831 is_zygote, in PostForkChildAction()
|
D | jit.h | 397 void PostForkChildAction(bool is_system_server, bool is_zygote);
|
D | jit.cc | 1663 void Jit::PostForkChildAction(bool is_system_server, bool is_zygote) { in PostForkChildAction() argument 1672 if (!is_zygote && fd_methods_ != -1) { in PostForkChildAction() 1688 if (is_zygote || runtime->IsSafeMode()) { in PostForkChildAction()
|
/art/runtime/gc/space/ |
D | large_object_space.h | 171 bool is_zygote; member
|
D | large_object_space.cc | 177 return it->second.is_zygote; in IsZygoteLargeObject() 183 pair.second.is_zygote = true; in SetAllLargeObjectsAsZygoteObjects()
|
/art/runtime/ |
D | runtime.h | 191 void SetAsZygoteChild(bool is_system_server, bool is_zygote) { in SetAsZygoteChild() argument 194 is_zygote_ = is_zygote; in SetAsZygoteChild()
|
/art/runtime/gc/ |
D | heap.cc | 417 const bool is_zygote = runtime->IsZygote(); in Heap() local 418 if (!is_zygote) { in Heap() 440 bool separate_non_moving_space = is_zygote || in Heap() 450 } else if (foreground_collector_type_ != kCollectorTypeCC && is_zygote) { in Heap() 521 const char* space_name = is_zygote ? kZygoteSpaceName : kNonMovingSpaceName; in Heap() 540 if (separate_non_moving_space || !is_zygote) { in Heap() 767 (is_zygote || separate_non_moving_space)) { in Heap()
|