| 675 | } |
| 676 | |
| 677 | SC::Result SC::FileSystem::chown(StringSpan path, uint32_t uid, uint32_t gid) |
| 678 | { |
| 679 | StringSpan encodedPath; |
| 680 | SC_TRY(convert(path, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 681 | return FileSystem::Operations::chown(encodedPath, uid, gid); |
| 682 | } |
| 683 | |
| 684 | SC::Result SC::FileSystem::lchown(StringSpan path, uint32_t uid, uint32_t gid) |
| 685 | { |
nothing calls this directly
no test coverage detected