Home
last modified time | relevance | path

Searched refs:Flag (Results 1 – 9 of 9) 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.h175 enum Flag { enum
193 void AddFlag(Flag flag) { in AddFlag()
260 bool AddMethodIndex(MethodHotness::Flag flags,
265 bool AddMethodIndex(MethodHotness::Flag flags, const MethodReference& ref);
273 bool AddMethodsForDex(MethodHotness::Flag flags, in AddMethodsForDex()
433 bool AddMethod(MethodHotness::Flag flags, size_t index);
Dprofile_compilation_info.cc138 bool ProfileCompilationInfo::AddMethodIndex(MethodHotness::Flag flags, const MethodReference& ref) { in AddMethodIndex()
146 bool ProfileCompilationInfo::AddMethodIndex(MethodHotness::Flag flags, in AddMethodIndex()
1260 static_cast<MethodHotness::Flag>(hotness.GetFlags()), in AddMethodHotness()
1626 bool ProfileCompilationInfo::DexFileData::AddMethod(MethodHotness::Flag flags, size_t index) { in AddMethod()
Dprofile_saver.cc422 static_cast<Hotness::Flag>(flags), in FetchAndCacheResolvedClassesAndMethods()
Dprofile_compilation_info_test.cc910 info.AddMethodsForDex(static_cast<Hotness::Flag>(Hotness::kFlagHot | Hotness::kFlagStartup), in TEST_F()
/art/dexlayout/
Ddexlayout_test.cc349 pfi.AddMethodIndex(static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags), in CreateProfile()
/art/profman/
Dprofman.cc885 if (!profile->AddMethodIndex(static_cast<Hotness::Flag>(flags), ref)) { in ProcessLine()
/art/dex2oat/
Ddex2oat_test.cc1241 static_cast<Hotness::Flag>(Hotness::kFlagHot | Hotness::kFlagStartup), in TEST_F()