Home
last modified time | relevance | path

Searched refs:getFileId (Results 1 – 12 of 12) sorted by relevance

/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/source/
H A DTsStreamWriter.java161 && getFileId(file) == mInstanceId in deleteOutdatedFiles()
206 int id = getFileId(file); in getExistingIds()
220 private static int getFileId(File file) { in getFileId() method in TsStreamWriter
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiConfigStore.java383 .filter(s -> s.getStoreFileId() == storeFile.getFileId()) in retrieveStoreDataListForStoreFile()
596 readDataFromMigrationSharedStoreFile(sharedStoreFile.getFileId()); in readFromSharedStoreFiles()
610 getMigrationStoreFileId(sharedStoreFile.getFileId())); in readFromSharedStoreFiles()
624 userStoreFile.getFileId(), userStoreFile.mUserHandle); in readFromUserStoreFiles()
638 getMigrationStoreFileId(userStoreFile.getFileId()), in readFromUserStoreFiles()
889 public @StoreFileId int getFileId() { in getFileId() method in WifiConfigStore.StoreFile
/aosp12/frameworks/base/core/tests/coretests/src/android/provider/
H A DMockFontProvider.java132 public int getFileId() { in getFileId() method in MockFontProvider.Font
179 builder.add(Columns.FILE_ID, font.getFileId()); in buildCursor()
/aosp12/frameworks/base/services/incremental/
H A DServiceWrappers.cpp180 FileId getFileId(const Control& control, std::string_view path) const final { in getFileId() function in android::incremental::RealIncFs
181 return incfs::getFileId(control, path); in getFileId()
193 const auto fileId = incfs::getFileId(control, path); in countFilledBlocks()
H A DServiceWrappers.h108 virtual FileId getFileId(const Control& control, std::string_view path) const = 0;
H A DIncrementalService.cpp1908 sourceId = mIncFs->getFileId(ifs->control, apkFullPath); in configureNativeBinaries()
/aosp12/packages/apps/SecureElement/src/com/android/se/security/arf/PKCS15/
H A DEF.java58 public int getFileId() { in getFileId() method in EF
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiConfigStoreTest.java932 when(sharedStoreFile1.getFileId()) in testMigration()
935 when(sharedStoreFile2.getFileId()) in testMigration()
938 when(userStoreFile1.getFileId()) in testMigration()
941 when(userStoreFile2.getFileId()) in testMigration()
/aosp12/system/incremental_delivery/incfs/tests/
H A Dincfs_test.cpp402 ASSERT_EQ(fileId(1), getFileId(control_, file_path)); in TEST_F()
404 ASSERT_EQ(kIncFsInvalidFileId, getFileId(control_, mapped_file_path)); in TEST_F()
412 EXPECT_EQ(id, getFileId(control_, mountPath(test_file_name_))) << "errno = " << errno; in TEST_F()
413 EXPECT_EQ(kIncFsInvalidFileId, getFileId(control_, test_file_name_)); in TEST_F()
414 EXPECT_EQ(kIncFsInvalidFileId, getFileId(control_, "asdf")); in TEST_F()
415 EXPECT_EQ(kIncFsInvalidFileId, getFileId({}, mountPath(test_file_name_))); in TEST_F()
/aosp12/system/incremental_delivery/incfs/include/
H A Dincfs.h233 FileId getFileId(const Control& control, std::string_view path);
H A Dincfs_inline.h228 inline FileId getFileId(const Control& control, std::string_view path) { in getFileId() function
/aosp12/frameworks/base/services/incremental/test/
H A DIncrementalServiceTest.cpp396 MOCK_CONST_METHOD2(getFileId, FileId(const Control& control, std::string_view path));