Home
last modified time | relevance | path

Searched refs:fetch (Results 1 – 25 of 25) sorted by relevance

/system/libvintf/include/vintf/
DFileSystem.h40 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,
/system/libvintf/
DFileSystem.cpp28 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()
DHostFileSystem.cpp36 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()
DVintfFm.cpp67 status_t fetch(const std::string& path, std::string* fetched, in fetch() function in android::vintf::__anon2be9fe120111::WritableFileSystemImpl
69 return mRoFileSystem.fetch(path, fetched, error); in fetch()
286 if (OK != mFs->fetch(path, &xmlString, &error)) { in loadMatrices()
DRuntimeInfo-target.cpp174 std::function<status_t(RuntimeInfoFetcher*, RuntimeInfo::FetchFlags)> fetch; member
193 if ((flags & fetchFunction.flags) && ((err = fetchFunction.fetch(this, flags)) != OK)) in fetchAllInformation()
Dutils.h43 status_t result = fileSystem->fetch(path, &info, error); in fetchAllInformation()
Dcheck_vintf.cpp157 status_t err = fileSystem->fetch(path, &xml, &error); in readObject()
DVintfObject.cpp468 status_t status = getFileSystem()->fetch(path, &content, error); in getOneMatrix()
/system/libvintf/test/
Dutils-fake.h36 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()
DVintfFmTest.cpp114 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()
Dvintf_object_tests.cpp412 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()
464 EXPECT_CALL(fetcher(), fetch(StrEq(kVendorLegacyManifest), _)).Times(times); in expectVendorManifest()
468 EXPECT_CALL(fetcher(), fetch(StrEq(kSystemManifest), _)).Times(times); in expectSystemManifest()
472 EXPECT_CALL(fetcher(), fetch(StrEq(kVendorLegacyMatrix), _)).Times(times); in expectVendorMatrix()
476 EXPECT_CALL(fetcher(), fetch(StrEq(kSystemLegacyMatrix), _)).Times(times); in expectSystemMatrix()
481 EXPECT_CALL(fetcher(), fetch(StrEq(path), _)) in expectFetch()
[all …]
/system/libvintf/include-host/vintf/
DHostFileSystem.h38 status_t fetch(const std::string& path, std::string* fetched,
/system/sepolicy/prebuilts/api/28.0/private/
Dincident.te11 # allow incident be able to output data for CTS to fetch.
/system/sepolicy/prebuilts/api/29.0/private/
Dincident.te11 # allow incident be able to output data for CTS to fetch.
Dzygote.te47 # For updateability, the zygote may fetch the current boot
/system/sepolicy/prebuilts/api/30.0/private/
Dincident.te18 # allow incident be able to output data for CTS to fetch.
Dzygote.te48 # For updateability, the zygote may fetch the current boot
/system/sepolicy/prebuilts/api/31.0/private/
Dincident.te18 # allow incident be able to output data for CTS to fetch.
Dzygote.te50 # For updateability, the zygote may fetch the current boot
/system/sepolicy/private/
Dincident.te18 # allow incident be able to output data for CTS to fetch.
Dzygote.te50 # For updateability, the zygote may fetch the current boot
/system/libvintf/analyze_matrix/
Danalyze_matrix.cpp36 status_t err = details::FileSystemImpl().fetch(path, &xml, &error); in readObject()
/system/extras/ANRdaemon/
DREADME14 Use ANRdaemon_get_trace.sh [device serial] to dump and fetch the compressed trace file.
/system/chre/doc/
Dframework_overview.md88 fetch a pointer to the current `Nanoapp` (i.e. it retrieves `mCurrentNanoapp`
/system/core/fastboot/
Dfastboot.cpp1318 auto fetch = std::bind(fetch_partition, _1, borrowed_fd(fd)); in do_fetch() local
1319 do_for_partitions(partition, slot_override, fetch, false /* force slot */); in do_fetch()