Home
last modified time | relevance | path

Searched refs:FsReqCleanup (Results 1 - 14 of 14) sorted by relevance

/foundation/filemanagement/file_api/interfaces/kits/cj/src/
H A DrandomAccessFile_impl.cpp33 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> write_req = { in DoWriteRAF()
34 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in DoWriteRAF()
46 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> read_req = { in DoReadRAF()
47 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in DoReadRAF()
85 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> close_req = { in CloseSync()
86 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in CloseSync()
H A Dfile_fs_impl.cpp73 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> stat_req = { in GetUvStat()
74 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in GetUvStat()
111 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> stat_req = { in GetFsAccess()
112 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in GetFsAccess()
212 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> lstat_req = { in Lstat()
213 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in Lstat()
246 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> open_req = { in CreateRandomAccessFileSync()
247 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in CreateRandomAccessFileSync()
316 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> mkdir_req = { in Mkdir()
317 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in Mkdir()
[all...]
H A Dfsync.cpp31 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> fsync_req = { in Fsync()
32 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in Fsync()
H A Dcopy_file.cpp80 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> copyfile_req = { in IsAllPath()
81 new (nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in IsAllPath()
98 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> sendfile_req = { in SendFileCore()
99 new (nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in SendFileCore()
128 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> ftruncate_req = { in TruncateCore()
129 new (nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in TruncateCore()
144 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> open_req = { in OpenCore()
145 new (nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in OpenCore()
H A Dsymlink.cpp33 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> symlink_req = { in Symlink()
34 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in Symlink()
H A Dfdatasync.cpp32 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> fdatasync_req = { in Fdatasync()
33 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in Fdatasync()
H A Dmove_file.cpp63 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> utime_req = { in ChangeTime()
64 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in ChangeTime()
81 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> stat_req = { in CopyAndDeleteFile()
82 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in CopyAndDeleteFile()
H A Dmkdtemp.cpp48 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> mkdtemp_req = { in Mkdtemp()
49 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in Mkdtemp()
H A Dfile_impl.cpp56 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> open_req = { in OpenFileByPath()
57 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in OpenFileByPath()
252 unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> readlink_req = { in Dup()
253 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in Dup()
277 static tuple<int, unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*>> RealPathCore(const string &srcPath) in RealPathCore()
279 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> realpath_req = { in RealPathCore()
280 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in RealPathCore()
H A Dutils.cpp39 void CommonFunc::FsReqCleanup(uv_fs_t* req) in FsReqCleanup() function in OHOS::CJSystemapi::CommonFunc
H A Dutils.h72 static void FsReqCleanup(uv_fs_t* req);
H A Dcopy.cpp79 std::unique_ptr<uv_fs_t, decltype(CommonFunc::FsReqCleanup)*> sendFileReq = { in SendFileCore()
80 new (std::nothrow) uv_fs_t, CommonFunc::FsReqCleanup }; in SendFileCore()
/foundation/ability/ability_runtime/frameworks/simulator/ability_simulator/src/
H A Dability_stage_context.cpp247 std::unique_ptr<uv_fs_t, decltype(AbilityStageContext::FsReqCleanup)*> access_req = { in Access()
248 new uv_fs_t, AbilityStageContext::FsReqCleanup }; in Access()
260 std::unique_ptr<uv_fs_t, decltype(AbilityStageContext::FsReqCleanup)*> mkdir_req = { in Mkdir()
261 new uv_fs_t, AbilityStageContext::FsReqCleanup }; in Mkdir()
308 void AbilityStageContext::FsReqCleanup(uv_fs_t *req) in FsReqCleanup() function in OHOS::AbilityRuntime::AbilityStageContext
/foundation/ability/ability_runtime/frameworks/simulator/ability_simulator/include/
H A Dability_stage_context.h56 static void FsReqCleanup(uv_fs_t *req);

Completed in 8 milliseconds