Home
last modified time | relevance | path

Searched refs:IsRegularFile (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/foundation/multimedia/media_foundation/interface/inner_api/osal/filesystem/
H A Dfile_system.h26 static bool IsRegularFile(const std::string& path);
28 static bool IsRegularFile(int32_t fd);
/ohos5.0/foundation/multimedia/media_foundation/engine/include/foundation/osal/filesystem/
H A Dfile_system.h27 static bool IsRegularFile(const std::string& path);
29 static bool IsRegularFile(int32_t fd);
/ohos5.0/foundation/multimedia/media_foundation/src/osal/filesystem/
H A Dfile_system.cpp43 bool FileSystem::IsRegularFile(const std::string& path) in IsRegularFile() function in OHOS::Media::FileSystem
54 bool FileSystem::IsRegularFile(int32_t fd) in IsRegularFile() function in OHOS::Media::FileSystem
68 return IsRegularFile(fd) && lseek(fd, 0, SEEK_CUR) != -1; in IsSeekable()
/ohos5.0/foundation/multimedia/ringtone_library/test/unittest/ringtone_scanner_test/src/
H A Dringtone_scanner_utils_test.cpp144 bool ret = RingtoneScannerUtils::IsRegularFile(RINGTONE_DEFAULT_STR);
147 ret = RingtoneScannerUtils::IsRegularFile(path);
151 ret = RingtoneScannerUtils::IsRegularFile(pathSecond);
/ohos5.0/foundation/multimedia/media_foundation/engine/foundation/osal/filesystem/
H A Dfile_system.cpp41 bool FileSystem::IsRegularFile(const std::string& path) in IsRegularFile() function in OHOS::Media::OSAL::FileSystem
52 bool FileSystem::IsRegularFile(int32_t fd) in IsRegularFile() function in OHOS::Media::OSAL::FileSystem
66 return IsRegularFile(fd) && lseek(fd, 0, SEEK_CUR) != -1; in IsSeekable()
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_scanner/src/scanner/
H A Dmedia_scanner_manager.cpp57 if (!ScannerUtils::IsRegularFile(realPath)) { in ScanFile()
80 if (!ScannerUtils::IsRegularFile(realPath)) { in ScanFileSync()
106 if (!ScannerUtils::IsRegularFile(realPath)) { in ScanFileSyncWithoutAlbumUpdate()
H A Dscanner_utils.cpp90 bool ScannerUtils::IsRegularFile(const string &path) in IsRegularFile() function in OHOS::Media::ScannerUtils
H A Dmedia_scanner.cpp981 } else if (ScannerUtils::IsRegularFile(realPath)) { in ScanError()
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_scanner_test/src/
H A Dmedialibrary_scanner_test.cpp143 bool ret = ScannerUtils::IsRegularFile(path);
146 ret = ScannerUtils::IsRegularFile(path);
151 ret = ScannerUtils::IsRegularFile(path);
/ohos5.0/base/startup/init/services/modules/init_eng/
H A Dinit_eng.c61 static bool IsRegularFile(const char *file) in IsRegularFile() function
127 if (IsRegularFile(targetFullPath)) { in BindMountFile()
/ohos5.0/foundation/multimedia/ringtone_library/services/ringtone_scanner/src/
H A Dringtone_scanner_manager.cpp55 if (!RingtoneScannerUtils::IsRegularFile(realPath)) { in ScanFile()
78 if (!RingtoneScannerUtils::IsRegularFile(realPath)) { in ScanFileSync()
H A Dringtone_scanner_utils.cpp85 bool RingtoneScannerUtils::IsRegularFile(const string &path) in IsRegularFile() function in OHOS::Media::RingtoneScannerUtils
H A Dringtone_scanner.cpp202 } else if (RingtoneScannerUtils::IsRegularFile(realPath)) { in BootScan()
/ohos5.0/foundation/multimedia/media_foundation/tests/unittest/osal/
H A Dfile_system_unit_test.cpp49 EXPECT_EQ(false, fileSystem->IsRegularFile("/data/test/makedir"));
/ohos5.0/foundation/multimedia/ringtone_library/services/ringtone_scanner/include/
H A Dringtone_scanner_utils.h59 EXPORT static bool IsRegularFile(const std::string &path);
/ohos5.0/base/startup/init/remount/
H A Dremount_overlay.c295 static bool IsRegularFile(const char *file) in IsRegularFile() function
341 if (IsRegularFile(targetFullPath)) { // file exist, moung bind targetFullPath in MountBindEngFile()
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_scanner/include/scanner/
H A Dscanner_utils.h98 EXPORT static bool IsRegularFile(const std::string &path);
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/source/file_source/
H A Dfile_fd_source_plugin.cpp147 FALSE_RETURN_V_MSG_E(fd_ != -1 && OSAL::FileSystem::IsRegularFile(fd_), in ParseUriInfo()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/hls/
H A Dplaylist_downloader.cpp149 FALSE_RETURN_V_MSG_E(fd_ != -1 && FileSystem::IsRegularFile(fd_), in ParseUriInfo()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/
H A Dfile_fd_source_plugin.cpp323 FALSE_RETURN_V_MSG_E(fd_ != -1 && FileSystem::IsRegularFile(fd_), in ParseUriInfo()