Lines Matching refs:flags

209                                         MethodHotness::Flag flags,  in AddMethods()  argument
212 if (!AddMethod(method, flags, annotation)) { in AddMethods()
222 int flags = O_RDONLY; in MergeWith() local
224 int flags = O_RDONLY | O_NOFOLLOW | O_CLOEXEC; in MergeWith() local
227 LockedFile::Open(filename.c_str(), flags, /*block=*/false, &error); in MergeWith()
254 int flags = O_RDWR; in Load() local
256 int flags = O_RDWR | O_NOFOLLOW | O_CLOEXEC; in Load() local
262 LockedFile::Open(filename.c_str(), flags, /*block=*/false, &error); in Load()
296 int flags = O_WRONLY; in Save() local
298 int flags = O_WRONLY | O_NOFOLLOW | O_CLOEXEC; in Save() local
304 LockedFile::Open(filename.c_str(), flags, /*block=*/false, &error); in Save()
715 MethodHotness::Flag flags, in AddMethod() argument
721 if (!data->AddMethod(flags, pmi.ref.index)) { in AddMethod()
724 if ((flags & MethodHotness::kFlagHot) == 0) { in AddMethod()
1830 uint32_t flags = MethodHotness::kFlagHot; in GenerateTestProfile() local
1831 flags |= ((m & 1) != 0) ? MethodHotness::kFlagPostStartup : MethodHotness::kFlagStartup; in GenerateTestProfile()
1832 data->AddMethod(static_cast<MethodHotness::Flag>(flags), method_idx); in GenerateTestProfile()
1887 uint32_t flags = MethodHotness::kFlagHot; in GenerateTestProfile() local
1888 flags |= ((method_index & 1) != 0) in GenerateTestProfile()
1891 data->AddMethod(static_cast<MethodHotness::Flag>(flags), method_index); in GenerateTestProfile()
2019 bool ProfileCompilationInfo::DexFileData::AddMethod(MethodHotness::Flag flags, size_t index) { in AddMethod() argument
2025 SetMethodHotness(index, flags); in AddMethod()
2027 if ((flags & MethodHotness::kFlagHot) != 0) { in AddMethod()
2035 MethodHotness::Flag flags) { in SetMethodHotness() argument
2046 if ((flags & flag) != 0) { in SetMethodHotness()