/foundation/filemanagement/file_api/interfaces/kits/cj/src/ |
H A D | randomAccessFile_impl.cpp | 33 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 D | file_fs_impl.cpp | 73 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 D | fsync.cpp | 31 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 D | copy_file.cpp | 80 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 D | symlink.cpp | 33 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 D | fdatasync.cpp | 32 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 D | move_file.cpp | 63 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 D | mkdtemp.cpp | 48 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 D | file_impl.cpp | 56 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 D | utils.cpp | 39 void CommonFunc::FsReqCleanup(uv_fs_t* req) in FsReqCleanup() function in OHOS::CJSystemapi::CommonFunc
|
H A D | utils.h | 72 static void FsReqCleanup(uv_fs_t* req);
|
H A D | copy.cpp | 79 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 D | ability_stage_context.cpp | 247 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 D | ability_stage_context.h | 56 static void FsReqCleanup(uv_fs_t *req);
|