Searched refs:Flag (Results 1 – 12 of 12) sorted by relevance
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | EncodedMethod.java | 52 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
|
D | EncodedField.java | 44 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/ |
D | profile_compilation_info.h | 183 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);
|
D | profile_compilation_info.cc | 167 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()
|
D | profile_compilation_info_test.cc | 733 info.AddMethodsForDex(static_cast<Hotness::Flag>(Hotness::kFlagHot | Hotness::kFlagStartup), in TEST_F()
|
/art/runtime/jit/ |
D | profiling_info_test.cc | 103 Hotness::Flag flags) { in SaveProfilingInfo() 134 Hotness::Flag flags, in SaveProfilingInfoWithFakeInlineCaches()
|
D | profile_saver.cc | 461 static_cast<Hotness::Flag>(flags), in FetchAndCacheResolvedClassesAndMethods()
|
/art/dex2oat/ |
D | dex2oat_image_test.cc | 263 static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), in TEST_F()
|
D | dex2oat_test.cc | 1360 static_cast<Hotness::Flag>(Hotness::kFlagHot | Hotness::kFlagStartup), in TEST_F()
|
/art/profman/ |
D | profman.cc | 1003 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()
|
D | profile_assistant_test.cc | 91 Hotness::Flag flags = Hotness::kFlagPostStartup; in SetupProfile()
|
/art/dexlayout/ |
D | dexlayout_test.cc | 359 pfi.AddMethodIndex(static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), in CreateProfile()
|