Home
last modified time | relevance | path

Searched refs:Flag (Results 1 – 10 of 10) 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/runtime/jit/
Dprofile_compilation_info.h178 enum Flag { enum
196 void AddFlag(Flag flag) { in AddFlag()
244 bool AddMethods(const std::vector<ProfileMethodInfo>& methods, MethodHotness::Flag flags);
273 bool AddMethodIndex(MethodHotness::Flag flags,
278 bool AddMethodIndex(MethodHotness::Flag flags, const MethodReference& ref);
281 bool AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags);
286 bool AddMethodsForDex(MethodHotness::Flag flags, in AddMethodsForDex()
500 bool AddMethod(MethodHotness::Flag flags, size_t index);
509 void SetMethodHotness(size_t index, MethodHotness::Flag flags);
570 MethodHotness::Flag flags);
Dprofile_compilation_info.cc147 bool ProfileCompilationInfo::AddMethodIndex(MethodHotness::Flag flags, const MethodReference& ref) { in AddMethodIndex()
155 bool ProfileCompilationInfo::AddMethodIndex(MethodHotness::Flag flags, in AddMethodIndex()
170 MethodHotness::Flag flags) { in AddMethods()
647 MethodHotness::Flag flags) { in AddMethod()
704 bool ProfileCompilationInfo::AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags) { in AddMethod()
1576 static_cast<MethodHotness::Flag>(hotness.GetFlags()), method_ref.index); in AddMethodHotness()
1847 info.AddMethodIndex(static_cast<MethodHotness::Flag>(flags), in GenerateTestProfile()
1909 info.AddMethodIndex(static_cast<MethodHotness::Flag>(flags), in GenerateTestProfile()
1976 bool ProfileCompilationInfo::DexFileData::AddMethod(MethodHotness::Flag flags, size_t index) { in AddMethod()
1993 MethodHotness::Flag flags) { in SetMethodHotness()
Dprofile_compilation_info_test.cc104 Hotness::Flag flags) { in SaveProfilingInfo()
135 Hotness::Flag flags, in SaveProfilingInfoWithFakeInlineCaches()
964 info.AddMethodsForDex(static_cast<Hotness::Flag>(Hotness::kFlagHot | Hotness::kFlagStartup), in TEST_F()
Dprofile_saver.cc437 static_cast<Hotness::Flag>(flags), in FetchAndCacheResolvedClassesAndMethods()
/art/profman/
Dprofman.cc945 profile->AddMethods(methods, static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags)); in ProcessLine()
998 static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags)); in ProcessLine()
1002 static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), ref)) { in ProcessLine()
Dprofile_assistant_test.cc89 Hotness::Flag flags = Hotness::kFlagPostStartup; in SetupProfile()
/art/dex2oat/
Ddex2oat_image_test.cc330 static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), in TEST_F()
/art/dexlayout/
Ddexlayout_test.cc356 pfi.AddMethodIndex(static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), in CreateProfile()