Home
last modified time | relevance | path

Searched refs:NotifyOpsType (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/clouddisk_database/
H A Dclouddisk_notify_test.cpp77 paramDisk.opsType = NotifyOpsType::DAEMON_SETATTR;
99 paramDisk.opsType = NotifyOpsType::DAEMON_SETATTR;
120 paramDisk.opsType = NotifyOpsType::DAEMON_SETXATTR;
163 paramDisk.opsType = NotifyOpsType::DAEMON_RECYCLE;
302 paramDisk.opsType = NotifyOpsType::DAEMON_MKDIR;
323 paramDisk.opsType = NotifyOpsType::DAEMON_MKDIR;
346 paramDisk.opsType = NotifyOpsType::DAEMON_MKDIR;
365 paramDisk.opsType = NotifyOpsType::DAEMON_RMDIR;
386 paramDisk.opsType = NotifyOpsType::DAEMON_RMDIR;
409 paramDisk.opsType = NotifyOpsType::DAEMON_RMDIR;
[all …]
/ohos5.0/foundation/filemanagement/dfs_service/services/clouddisk_database/include/
H A Dclouddisk_notify_const.h28 enum class NotifyOpsType : uint32_t { enum
50 NotifyOpsType opsType = NotifyOpsType::OPS_NONE;
64 NotifyOpsType opsType = NotifyOpsType::OPS_NONE;
/ohos5.0/foundation/filemanagement/dfs_service/services/clouddisk_database/src/
H A Dclouddisk_notify.cpp222 case NotifyOpsType::DAEMON_SETATTR: in TryNotify()
226 case NotifyOpsType::DAEMON_RECYCLE: in TryNotify()
227 case NotifyOpsType::DAEMON_RESTORE: in TryNotify()
230 case NotifyOpsType::DAEMON_MKDIR: in TryNotify()
233 case NotifyOpsType::DAEMON_RMDIR: in TryNotify()
234 case NotifyOpsType::DAEMON_UNLINK: in TryNotify()
237 case NotifyOpsType::DAEMON_RENAME: in TryNotify()
240 case NotifyOpsType::DAEMON_WRITE: in TryNotify()
359 case NotifyOpsType::SERVICE_INSERT: in TryNotifyService()
362 case NotifyOpsType::SERVICE_UPDATE: in TryNotifyService()
[all …]
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/cloud_disk/
H A Dfile_operations_cloud.cpp749 NotifyOpsType::DAEMON_SETXATTR, inoPtr}); in HandleCloudLocation()
793 val == 0 ? NotifyOpsType::DAEMON_RESTORE : NotifyOpsType::DAEMON_RECYCLE, inoPtr}); in HandleCloudRecycle()
817 NotifyOpsType::DAEMON_SETXATTR, inoPtr}); in HandleFavorite()
839 NotifyOpsType::DAEMON_SETXATTR, inoPtr}); in HandleExtAttribute()
1032 NotifyOpsType::DAEMON_MKDIR, parentInode, parent, name}); in MkDir()
1134 NotifyOpsType::DAEMON_RMDIR, nullptr, parent, name}); in RmDir()
1152 NotifyOpsType::DAEMON_UNLINK, nullptr, parent, name}); in Unlink()
1197 NotifyOpsType::DAEMON_RENAME, nullptr, parent, name, newParent, newName}, in Rename()
1281 NotifyOpsType::DAEMON_WRITE, inoPtr}, {dirtyType}); in UpdateCloudStore()
1380 NotifyOpsType::DAEMON_WRITE, inoPtr}, {dirtyType}); in UploadLocalFile()
[all …]
/ohos5.0/foundation/filemanagement/dfs_service/test/fuzztest/clouddisknotify_fuzzer/
H A Dclouddisknotify_fuzzer.cpp56 paramService.opsType = static_cast<NotifyOpsType>(fuzzData.GetData<uint32_t>() % OPS_TYE_SIZE); in TryNotifyServiceFuzzTest()