Home
last modified time | relevance | path

Searched refs:guard (Results 1 – 16 of 16) sorted by relevance

/art/libnativeloader/
Dnative_loader.cpp78 std::lock_guard<std::mutex> guard(g_namespaces_mutex); in InitializeNativeLoader() local
85 std::lock_guard<std::mutex> guard(g_namespaces_mutex); in ResetNativeLoader() local
94 std::lock_guard<std::mutex> guard(g_namespaces_mutex); in CreateClassLoaderNamespace() local
134 std::lock_guard<std::mutex> guard(g_namespaces_mutex); in OpenNativeLibrary() local
240 std::lock_guard<std::mutex> guard(g_namespaces_mutex); in FindNamespaceByClassLoader() local
249 std::lock_guard<std::mutex> guard(g_namespaces_mutex); in FindNativeLoaderNamespaceByClassLoader() local
/art/libartpalette/system/
Dpalette_fake.cc41 std::lock_guard guard(g_tid_priority_map_mutex); in PaletteSchedSetPriority() local
48 std::lock_guard guard(g_tid_priority_map_mutex); in PaletteSchedGetPriority() local
/art/runtime/gc/collector/
Dimmune_spaces_test.cc339 MemMap guard = reservation.TakeReservedMemory(kGuardSize); in TEST_F() local
340 ASSERT_TRUE(guard.IsValid()); in TEST_F()
342 guard.Reset(); // Release the guard memory. in TEST_F()
378 guard = reservation.TakeReservedMemory(kGuardSize); in TEST_F()
379 ASSERT_TRUE(guard.IsValid()); in TEST_F()
381 guard.Reset(); // Release the guard memory. in TEST_F()
/art/test/904-object-allocation/
Dtracking.cc94 std::lock_guard<std::mutex> guard(gEventsMutex); in ObjectAllocated() local
123 std::lock_guard<std::mutex> guard(gEventsMutex); in Java_art_Test904_getTrackingEventMessages() local
/art/
DCPPLINT.cfg20 # Use 'ART_' as the cpp header guard prefix (e.g. #ifndef ART_PATH_TO_FILE_H_).
/art/test/924-threads/
Dthreads.cc195 std::lock_guard<std::mutex> guard(gEventsMutex); in ThreadEvent() local
264 std::lock_guard<std::mutex> guard(gEventsMutex); in Java_art_Test924_getThreadEventMessages() local
/art/libartbase/base/
Dlogging.cc100 std::lock_guard<std::mutex> guard(*logging_lock_); in InitLogging() local
/art/compiler/optimizing/
Dinduction_var_analysis.cc112 HBasicBlock* guard = loop->GetPreHeader(); in IsGuardedBy() local
114 while (guard->GetPredecessors().size() == 1 && in IsGuardedBy()
115 guard->GetSuccessors().size() == 1) { in IsGuardedBy()
116 entry = guard; in IsGuardedBy()
117 guard = guard->GetSinglePredecessor(); in IsGuardedBy()
120 HInstruction* control = guard->GetLastInstruction(); in IsGuardedBy()
Dcode_generator_arm_vixl.cc1378 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateLongTestConstant() local
1454 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateLongTest() local
1533 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateConditionGeneric() local
1596 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateEqualLong() local
1630 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateConditionLong() local
1703 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateConditionIntegralOrNonPrimitive() local
1746 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateConditionIntegralOrNonPrimitive() local
2872 ExactAssemblyScope guard(GetVIXLAssembler(), in VisitSelect() local
5069 ExactAssemblyScope guard(GetVIXLAssembler(), in HandleShift() local
5088 ExactAssemblyScope guard(GetVIXLAssembler(), in HandleShift() local
[all …]
Dcode_generator_arm64.cc2004 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in HandleFieldGet() local
2059 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in HandleFieldSet() local
2495 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArrayGet() local
2558 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArrayGet() local
2588 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArrayLength() local
2658 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArraySet() local
2695 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArraySet() local
2757 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArraySet() local
4121 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitInvokeInterface() local
4127 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitInvokeInterface() local
[all …]
Dnodes.h3293 HInstruction* guard, in HDeoptimize() argument
3298 guard->GetType(), in HDeoptimize()
3307 SetRawInputAt(1, guard); in HDeoptimize()
Dintrinsics_arm64.cc127 vixl::EmissionCheckScope guard(codegen->GetVIXLAssembler(), kInvokeCodeMarginSizeInBytes); in EmitNativeCode() local
/art/test/912-classes/
Dclasses.cc284 std::lock_guard<std::mutex> guard(gEventsMutex); in Java_art_Test912_getClassLoadMessages() local
313 std::lock_guard<std::mutex> guard(gEventsMutex); in ClassLoadCallback() local
336 std::lock_guard<std::mutex> guard(gEventsMutex); in ClassPrepareCallback() local
/art/compiler/utils/arm/
Djni_macro_assembler_arm_vixl.cc514 ExactAssemblyScope guard(asm_.GetVIXLAssembler(), in CreateHandleScopeEntry() local
521 ExactAssemblyScope guard(asm_.GetVIXLAssembler(), in CreateHandleScopeEntry() local
551 ExactAssemblyScope guard(asm_.GetVIXLAssembler(), in CreateHandleScopeEntry() local
/art/runtime/base/
Dmutex.cc910 ConditionVariable::ConditionVariable(const char* name, Mutex& guard) in ConditionVariable() argument
911 : name_(name), guard_(guard) { in ConditionVariable()
/art/runtime/gc/space/
Dimage_space.cc3276 Guard guard(spaces); in LoadComponents() local
3360 guard.Commit(); in LoadComponents()