/foundation/filemanagement/file_api/interfaces/kits/cj/src/ |
H A D | lseek.cpp | 28 RetDataI64 LseekImpl::Lseek(int32_t fd, int64_t offset, int pos) in Lseek() function in OHOS::CJSystemapi::LseekImpl 30 LOGI("FS_TEST:: LseekImpl::Lseek start"); in Lseek() 39 int64_t seekRet = ::Lseek(fd, offset, whence); in Lseek()
|
H A D | lseek.h | 25 static RetDataI64 Lseek(int32_t fd, int64_t offset, int pos);
|
H A D | file_fs_ffi.cpp | 534 auto ret = LseekImpl::Lseek(fd, offset, whence); in FfiOHOSFileFsLseek()
|
/foundation/filemanagement/file_api/interfaces/test/unittest/class_file/ |
H A D | rust_test.cpp | 159 * @tc.desc: Test function of Lseek() interface for SUCCESS. 173 long long ret = Lseek(fd, offset, END); in HWTEST_F() 182 * @tc.desc: Test function of Lseek() interface for SUCCESS. 196 long long ret = Lseek(fd, offset, END); in HWTEST_F() 199 ret = Lseek(fd, offset, CURRENT); in HWTEST_F() 208 * @tc.desc: Test function of Lseek() interface for SUCCESS. 222 long long ret = Lseek(fd, offset, START); in HWTEST_F() 231 * @tc.desc: Test function of Lseek() interface for SUCCESS. 245 long long ret = Lseek(fd, offset, START); in HWTEST_F() 254 * @tc.desc: Test function of Lseek() interfac [all...] |
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fs/properties/ |
H A D | lseek.cpp | 28 napi_value Lseek::Sync(napi_env env, napi_callback_info info) in Sync() 62 int64_t ret = ::Lseek(fd, offset, whence); in Sync()
|
H A D | lseek.h | 25 class Lseek final {
|
H A D | prop_n_exporter.cpp | 807 NVal::DeclareNapiFunction("lseek", Lseek::Sync),
in ExportSync()
|
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fileio/properties/ |
H A D | lseek.h | 24 class Lseek final {
|
H A D | lseek.cpp | 51 napi_value Lseek::Sync(napi_env env, napi_callback_info info) in Sync() 73 napi_value Lseek::Async(napi_env env, napi_callback_info info) in Async()
|
H A D | prop_n_exporter.cpp | 611 NVal::DeclareNapiFunction("lseekSync", Lseek::Sync), in ExportSync() 652 NVal::DeclareNapiFunction("lseek", Lseek::Async), in ExportAsync()
|
/foundation/filemanagement/file_api/interfaces/kits/rust/include/ |
H A D | rust_file.h | 108 long long int Lseek(int fd, long long offset, enum SeekPos pos);
|
/foundation/filemanagement/file_api/interfaces/kits/rust/src/ |
H A D | ffi.rs | 52 pub extern "C" fn Lseek(fd: i32, offset: i64, pos: SeekPos) -> c_longlong { in Lseek() functions
|
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/cloud_disk/ |
H A D | fuse_operations.cpp | 343 void FuseOperations::Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence, in Lseek() function in OHOS::FileManagement::CloudDisk::FuseOperations 348 opsPtr->Lseek(req, ino, off, whence, fi); in Lseek() 357 inoPtr->ops->Lseek(req, ino, off, whence, fi); in Lseek()
|
H A D | file_operations_base.cpp | 167 void FileOperationsBase::Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence, in Lseek() function in OHOS::FileManagement::CloudDisk::FileOperationsBase 170 LOGE("Lseek operation is not supported!"); in Lseek()
|
H A D | file_operations_cloud.cpp | 1525 void FileOperationsCloud::Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence, in Lseek() function in OHOS::FileManagement::CloudDisk::FileOperationsCloud
|
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/include/cloud_disk/ |
H A D | file_operations_cloud.h | 51 void Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence,
|
H A D | file_operations_base.h | 58 virtual void Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence,
|
H A D | fuse_operations.h | 53 static void Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence,
|
/foundation/filemanagement/dfs_service/test/unittests/cloud_disk/ |
H A D | fuse_operations_test.cpp | 1626 * @tc.desc: Verify the Lseek function 1639 fuseoperations_->Lseek(req, FUSE_ROOT_ID, off, whence, &fi); in HWTEST_F() 1650 * @tc.desc: Verify the Lseek function 1665 fuseoperations_->Lseek(req, 0, off, whence, &fi); in HWTEST_F() 1676 * @tc.desc: Verify the Lseek function 1699 fuseoperations_->Lseek(req, 0, off, whence, &fi); in HWTEST_F()
|
H A D | file_operations_cloud_test.cpp | 2508 * @tc.desc: Verify the Lseek function 2525 fileOperationsCloud_->Lseek(req, ino, off, whence, &fi); in HWTEST_F() 2536 * @tc.desc: Verify the Lseek function 2554 fileOperationsCloud_->Lseek(req, ino, off, whence, &fi); in HWTEST_F() 2565 * @tc.desc: Verify the Lseek function 2583 fileOperationsCloud_->Lseek(req, ino, off, whence, &fi); in HWTEST_F() 2594 * @tc.desc: Verify the Lseek function 2613 fileOperationsCloud_->Lseek(req, ino, off, whence, &fi); in HWTEST_F() 2624 * @tc.desc: Verify the Lseek function 2643 fileOperationsCloud_->Lseek(re in HWTEST_F() [all...] |
/foundation/filemanagement/dfs_service/test/unittests/cloud_disk/mock/ |
H A D | file_operations_cloud_mock.cpp | 641 void FileOperationsCloud::Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence, in Lseek() function in OHOS::FileManagement::CloudDisk::FileOperationsCloud
|
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/fuse_manager/ |
H A D | fuse_manager.cpp | 1462 .lseek = CloudDisk::FuseOperations::Lseek,
|