Home
last modified time | relevance | path

Searched refs:Lseek (Results 1 - 22 of 22) sorted by relevance

/foundation/filemanagement/file_api/interfaces/kits/cj/src/
H A Dlseek.cpp28 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 Dlseek.h25 static RetDataI64 Lseek(int32_t fd, int64_t offset, int pos);
H A Dfile_fs_ffi.cpp534 auto ret = LseekImpl::Lseek(fd, offset, whence); in FfiOHOSFileFsLseek()
/foundation/filemanagement/file_api/interfaces/test/unittest/class_file/
H A Drust_test.cpp159 * @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 Dlseek.cpp28 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 Dlseek.h25 class Lseek final {
H A Dprop_n_exporter.cpp807 NVal::DeclareNapiFunction("lseek", Lseek::Sync), in ExportSync()
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fileio/properties/
H A Dlseek.h24 class Lseek final {
H A Dlseek.cpp51 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 Dprop_n_exporter.cpp611 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 Drust_file.h108 long long int Lseek(int fd, long long offset, enum SeekPos pos);
/foundation/filemanagement/file_api/interfaces/kits/rust/src/
H A Dffi.rs52 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 Dfuse_operations.cpp343 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 Dfile_operations_base.cpp167 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 Dfile_operations_cloud.cpp1525 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 Dfile_operations_cloud.h51 void Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence,
H A Dfile_operations_base.h58 virtual void Lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence,
H A Dfuse_operations.h53 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 Dfuse_operations_test.cpp1626 * @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 Dfile_operations_cloud_test.cpp2508 * @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 Dfile_operations_cloud_mock.cpp641 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 Dfuse_manager.cpp1462 .lseek = CloudDisk::FuseOperations::Lseek,

Completed in 25 milliseconds