/aosp12/system/libvintf/include/vintf/ |
H A D | FileSystem.h | 40 virtual status_t fetch(const std::string& path, std::string* fetched, 63 status_t fetch(const std::string&, std::string*, std::string*) const; 70 status_t fetch(const std::string&, std::string*, std::string*) const; 78 virtual status_t fetch(const std::string& path, std::string* fetched,
|
/aosp12/system/libvintf/ |
H A D | FileSystem.cpp | 28 status_t FileSystemImpl::fetch(const std::string& path, std::string* fetched, in fetch() function in android::vintf::details::FileSystemImpl 66 status_t FileSystemNoOp::fetch(const std::string&, std::string*, std::string*) const { in fetch() function in android::vintf::details::FileSystemNoOp 82 status_t FileSystemUnderPath::fetch(const std::string& path, std::string* fetched, in fetch() function in android::vintf::details::FileSystemUnderPath 84 return mImpl.fetch(mRootDir + path, fetched, error); in fetch()
|
H A D | HostFileSystem.cpp | 36 status_t HostFileSystem::fetch(const std::string& path, std::string* fetched, in fetch() function in android::vintf::details::HostFileSystem 42 status_t status = mImpl->fetch(resolved, fetched, error); in fetch()
|
H A D | VintfFm.cpp | 67 status_t fetch(const std::string& path, std::string* fetched, in fetch() function in android::vintf::__anona9c147f70110::WritableFileSystemImpl 69 return mRoFileSystem.fetch(path, fetched, error); in fetch() 286 if (OK != mFs->fetch(path, &xmlString, &error)) { in loadMatrices()
|
H A D | RuntimeInfo-target.cpp | 174 std::function<status_t(RuntimeInfoFetcher*, RuntimeInfo::FetchFlags)> fetch; member 193 if ((flags & fetchFunction.flags) && ((err = fetchFunction.fetch(this, flags)) != OK)) in fetchAllInformation()
|
/aosp12/system/libvintf/test/ |
H A D | utils-fake.h | 36 MOCK_CONST_METHOD2(fetch, status_t(const std::string& path, std::string& fetched)); 40 status_t fetch(const std::string& path, std::string* fetched, std::string*) const override { in fetch() function 42 return fetch(path, *fetched); in fetch()
|
H A D | VintfFmTest.cpp | 114 MOCK_METHOD(status_t, fetch, (const std::string&, std::string*, std::string*), 195 ON_CALL(*fs, fetch(StartsWith(gFakeRoot), _, _)).WillByDefault(Return(NAME_NOT_FOUND)); in SetUp() 196 ON_CALL(*fs, fetch(PathEq(gFrameworkManifestPath), _, _)) in SetUp() 260 ON_CALL(*fs, fetch(StartsWith(gFrozenDir + "/"s), _, _)) in SetUp()
|
H A D | vintf_object_tests.cpp | 412 EXPECT_CALL(fetcher(), fetch(_, _)).Times(AnyNumber()) in useEmptyFileSystem() 423 ON_CALL(fetcher(), fetch(StrEq(kVendorLegacyManifest), _)) in setupMockFetcher() 430 ON_CALL(fetcher(), fetch(StrEq(kSystemManifest), _)) in setupMockFetcher() 437 ON_CALL(fetcher(), fetch(StrEq(kVendorLegacyMatrix), _)) in setupMockFetcher() 443 ON_CALL(fetcher(), fetch(StrEq(kSystemLegacyMatrix), _)) in setupMockFetcher() 468 EXPECT_CALL(fetcher(), fetch(StrEq(kSystemManifest), _)).Times(times); in expectSystemManifest() 472 EXPECT_CALL(fetcher(), fetch(StrEq(kVendorLegacyMatrix), _)).Times(times); in expectVendorMatrix() 481 EXPECT_CALL(fetcher(), fetch(StrEq(path), _)) in expectFetch() 490 EXPECT_CALL(fetcher(), fetch(StrEq(path), _)) in expectFetchRepeatedly() 500 EXPECT_CALL(fetcher(), fetch(StrEq(path), _)).Times(0); in expectNeverFetch() [all …]
|
/aosp12/art/compiler/optimizing/ |
H A D | induction_var_analysis.cc | 815 c->fetch, in SolveOp() 1372 info1->fetch == info2->fetch && in InductionEqual() 1382 DCHECK(fetch != nullptr); in FetchToString() 1383 if (fetch->IsIntConstant()) { in FetchToString() 1384 return std::to_string(fetch->AsIntConstant()->GetValue()); in FetchToString() 1385 } else if (fetch->IsLongConstant()) { in FetchToString() 1386 return std::to_string(fetch->AsLongConstant()->GetValue()); in FetchToString() 1388 return std::to_string(fetch->GetId()) + ":" + fetch->DebugName(); in FetchToString() 1409 case kFetch: inv += FetchToString(info->fetch); break; in InductionToString() 1431 DCHECK(info->fetch != nullptr); in InductionToString() [all …]
|
H A D | induction_var_range.cc | 320 HInstruction* fetch, in Replace() argument 360 *offset = info->op_b->fetch; in IsUnitStride() 420 if (IsInt64AndGet(info->fetch, value)) { in IsConstant() 611 IsInt64AndGet(info->fetch, &f) && f >= 1) { in GetGeometric() 725 return GetFetch(info->fetch, trip, in_body, is_min); in GetVal() 1272 *result = info->fetch; // already in HIR in GenerateCode() 1359 HInstruction* fetch, in ReplaceInduction() argument 1364 info->fetch == fetch) { in ReplaceInduction() 1365 info->fetch = replacement; in ReplaceInduction() 1367 ReplaceInduction(info->op_a, fetch, replacement); in ReplaceInduction() [all …]
|
H A D | induction_var_analysis.h | 111 fetch(f), in InductionInfo() 117 HInstruction* fetch; member 255 static std::string FetchToString(HInstruction* fetch);
|
H A D | induction_var_range.h | 133 void Replace(HInstruction* instruction, HInstruction* fetch, HInstruction* replacement); 335 HInstruction* fetch,
|
/aosp12/frameworks/av/media/bufferpool/1.0/ |
H A D | Connection.cpp | 27 Return<void> Connection::fetch(uint64_t transactionId, uint32_t bufferId, fetch_cb _hidl_cb) { in fetch() function in android::hardware::media::bufferpool::V1_0::implementation::Connection 32 status = mAccessor->fetch( in fetch()
|
H A D | Accessor.cpp | 154 ResultStatus Accessor::fetch( in fetch() function in android::hardware::media::bufferpool::V1_0::implementation::Accessor 158 return mImpl->fetch(connectionId, transactionId, bufferId, handle); in fetch()
|
H A D | Connection.h | 44 Return<void> fetch(uint64_t transactionId, uint32_t bufferId, fetch_cb _hidl_cb) override;
|
/aosp12/frameworks/av/media/bufferpool/2.0/ |
H A D | Connection.cpp | 27 Return<void> Connection::fetch(uint64_t transactionId, uint32_t bufferId, fetch_cb _hidl_cb) { in fetch() function in android::hardware::media::bufferpool::V2_0::implementation::Connection 32 status = mAccessor->fetch( in fetch()
|
H A D | Accessor.cpp | 178 ResultStatus Accessor::fetch( in fetch() function in android::hardware::media::bufferpool::V2_0::implementation::Accessor 182 return mImpl->fetch(connectionId, transactionId, bufferId, handle); in fetch()
|
H A D | Connection.h | 44 Return<void> fetch(uint64_t transactionId, uint32_t bufferId, fetch_cb _hidl_cb) override;
|
/aosp12/frameworks/native/libs/ftl/ |
H A D | future_test.cpp | 77 auto fetch = fetch_string.get_future(); in TEST() local 84 ftl::chain(std::move(fetch)) in TEST()
|
/aosp12/packages/apps/ThemePicker/src/com/android/customization/model/clock/ |
H A D | ClockProvider.java | 34 void fetch(OptionsFetchedListener<Clockface> callback, boolean reload); in fetch() method
|
H A D | BaseClockManager.java | 43 mClockProvider.fetch(callback, false); in fetchOptions()
|
/aosp12/packages/apps/Dialer/java/com/android/voicemail/impl/imap/ |
H A D | ImapHelper.java | 35 import com.android.voicemail.impl.fetch.VoicemailFetchedCallback; 247 folder.fetch(new Message[] {messageDetails}, fetchProfile, listener); in getVoicemailFromMessageStructure() 309 folder.fetch(new Message[] {message}, fetchProfile, listener); in fetchMessageStructure() 347 folder.fetch(new Message[] {message}, fetchProfile, listener); in fetchVoicemailPayload() 373 folder.fetch(new Message[] {message}, fetchProfile, listener); in fetchTranscription()
|
/aosp12/packages/apps/ThemePicker/src/com/android/customization/model/theme/ |
H A D | ThemeBundleProvider.java | 40 void fetch(OptionsFetchedListener<ThemeBundle> callback, boolean reload); in fetch() method
|
/aosp12/packages/apps/Settings/src/com/android/settings/development/ |
H A D | DSULoader.java | 128 private void fetch(URL url) in fetch() method in DSULoader.Fetcher 144 fetch(new URL(include.getString(i))); in fetch() 174 fetch(mDsuList); in run()
|
/aosp12/system/libvintf/include-host/vintf/ |
H A D | HostFileSystem.h | 38 status_t fetch(const std::string& path, std::string* fetched,
|