/system/libvintf/ |
D | FileSystem.cpp | 28 status_t FileSystemImpl::fetch(const std::string& path, std::string* fetched, in fetch() argument 30 if (!android::base::ReadFileToString(path, fetched, true /* follow_symlinks */)) { in fetch() 82 status_t FileSystemUnderPath::fetch(const std::string& path, std::string* fetched, in fetch() argument 84 return mImpl.fetch(mRootDir + path, fetched, error); in fetch()
|
D | HostFileSystem.cpp | 36 status_t HostFileSystem::fetch(const std::string& path, std::string* fetched, in fetch() argument 42 status_t status = mImpl->fetch(resolved, fetched, error); in fetch()
|
D | VintfFm.cpp | 67 status_t fetch(const std::string& path, std::string* fetched, in fetch() argument 69 return mRoFileSystem.fetch(path, fetched, error); in fetch()
|
/system/libvintf/test/ |
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() argument 42 return fetch(path, *fetched); in fetch()
|
D | VintfFmTest.cpp | 197 .WillByDefault(Invoke([](const auto&, auto* fetched, auto*) { in SetUp() argument 198 *fetched = gFrameworkManifest; in SetUp() 261 .WillByDefault(Invoke([this](const auto& path, auto* fetched, auto*) { in SetUp() argument 266 *fetched = it->second; in SetUp()
|
D | vintf_object_tests.cpp | 425 Invoke([vendorManifestXml](const std::string& path, std::string& fetched) { in setupMockFetcher() argument 427 fetched = vendorManifestXml; in setupMockFetcher() 432 Invoke([systemManifestXml](const std::string& path, std::string& fetched) { in setupMockFetcher() argument 434 fetched = systemManifestXml; in setupMockFetcher() 438 .WillByDefault(Invoke([vendorMatrixXml](const std::string& path, std::string& fetched) { in setupMockFetcher() argument 440 fetched = vendorMatrixXml; in setupMockFetcher() 444 .WillByDefault(Invoke([systemMatrixXml](const std::string& path, std::string& fetched) { in setupMockFetcher() argument 446 fetched = systemMatrixXml; in setupMockFetcher()
|
/system/libvintf/include/vintf/ |
D | FileSystem.h | 40 virtual status_t fetch(const std::string& path, std::string* fetched, 78 virtual status_t fetch(const std::string& path, std::string* fetched,
|
/system/libvintf/include-host/vintf/ |
D | HostFileSystem.h | 38 status_t fetch(const std::string& path, std::string* fetched,
|
/system/libhidl/transport/token/1.0/ |
D | ITokenManager.hal | 31 * @param store Interface which can later be fetched with the returned token.
|
/system/core/fastboot/fuzzy_fastboot/ |
D | main.cpp | 687 TemporaryFile fetched; in TEST_F() local 692 auto ret = fb->FetchToFd(partition, fetched.fd, offset, chunk_size); in TEST_F() 766 TemporaryFile fetched; in TEST_F() local 767 ASSERT_EQ(fb->FetchToFd(partition, fetched.fd, 0, 0), DEVICE_FAIL) in TEST_F()
|