Home
last modified time | relevance | path

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

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/utils/
H A Ddisk_utils.cpp36 const char *kPath = path.c_str(); in CreateDiskNode() local
37 if (mknod(kPath, NODE_PERM | S_IFBLK, dev) < 0) { in CreateDiskNode()
46 const char *kPath = path.c_str(); in DestroyDiskNode() local
47 if (TEMP_FAILURE_RETRY(unlink(kPath)) < 0) { in DestroyDiskNode()
55 const char *kPath = path.c_str(); in GetDevSize() local
56 int fd = open(kPath, O_RDONLY); in GetDevSize()