Home
last modified time | relevance | path

Searched refs:Flag (Results 1 – 12 of 12) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DEncodedMethod.java52 return ((accessFlags & Flag.ACC_STATIC.getValue()) != 0); in isStatic()
56 return ((accessFlags & Flag.ACC_NATIVE.getValue()) != 0); in isNative()
64 accessFlags |= Flag.ACC_STATIC.getValue(); in setStatic()
66 accessFlags &= ~(Flag.ACC_STATIC.getValue()); in setStatic()
70 private static enum Flag { enum in EncodedMethod
87 private Flag(int value) { in Flag() method in EncodedMethod.Flag
DEncodedField.java44 return ((accessFlags & Flag.ACC_VOLATILE.getValue()) != 0); in isVolatile()
52 accessFlags |= Flag.ACC_VOLATILE.getValue(); in setVolatile()
54 accessFlags &= ~(Flag.ACC_VOLATILE.getValue()); in setVolatile()
58 private static enum Flag { enum in EncodedField
71 private Flag(int value) { in Flag() method in EncodedField.Flag
/art/libprofile/profile/
Dprofile_compilation_info.h183 enum Flag { enum
201 void AddFlag(Flag flag) { in AddFlag()
249 bool AddMethods(const std::vector<ProfileMethodInfo>& methods, MethodHotness::Flag flags);
278 bool AddMethodIndex(MethodHotness::Flag flags,
283 bool AddMethodIndex(MethodHotness::Flag flags, const MethodReference& ref);
286 bool AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags);
291 bool AddMethodsForDex(MethodHotness::Flag flags, in AddMethodsForDex()
539 bool AddMethod(MethodHotness::Flag flags, size_t index);
548 void SetMethodHotness(size_t index, MethodHotness::Flag flags);
619 MethodHotness::Flag flags);
Dprofile_compilation_info.cc167 bool ProfileCompilationInfo::AddMethodIndex(MethodHotness::Flag flags, const MethodReference& ref) { in AddMethodIndex()
175 bool ProfileCompilationInfo::AddMethodIndex(MethodHotness::Flag flags, in AddMethodIndex()
190 MethodHotness::Flag flags) { in AddMethods()
710 MethodHotness::Flag flags) { in AddMethod()
767 bool ProfileCompilationInfo::AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags) { in AddMethod()
1731 static_cast<MethodHotness::Flag>(hotness.GetFlags()), method_ref.index); in AddMethodHotness()
1986 info.AddMethodIndex(static_cast<MethodHotness::Flag>(flags), in GenerateTestProfile()
2049 info.AddMethodIndex(static_cast<MethodHotness::Flag>(flags), in GenerateTestProfile()
2114 bool ProfileCompilationInfo::DexFileData::AddMethod(MethodHotness::Flag flags, size_t index) { in AddMethod()
2130 MethodHotness::Flag flags) { in SetMethodHotness()
Dprofile_compilation_info_test.cc733 info.AddMethodsForDex(static_cast<Hotness::Flag>(Hotness::kFlagHot | Hotness::kFlagStartup), in TEST_F()
/art/runtime/jit/
Dprofiling_info_test.cc103 Hotness::Flag flags) { in SaveProfilingInfo()
134 Hotness::Flag flags, in SaveProfilingInfoWithFakeInlineCaches()
Dprofile_saver.cc461 static_cast<Hotness::Flag>(flags), in FetchAndCacheResolvedClassesAndMethods()
/art/dex2oat/
Ddex2oat_image_test.cc263 static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), in TEST_F()
Ddex2oat_test.cc1360 static_cast<Hotness::Flag>(Hotness::kFlagHot | Hotness::kFlagStartup), in TEST_F()
/art/profman/
Dprofman.cc1003 profile->AddMethods(methods, static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags)); in ProcessLine()
1056 static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags)); in ProcessLine()
1060 static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), ref)) { in ProcessLine()
Dprofile_assistant_test.cc91 Hotness::Flag flags = Hotness::kFlagPostStartup; in SetupProfile()
/art/dexlayout/
Ddexlayout_test.cc359 pfi.AddMethodIndex(static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), in CreateProfile()