Function name_to_handle_at [src]

Prototype

pub fn name_to_handle_at( dirfd: fd_t, pathname: []const u8, handle: *std.os.linux.file_handle, mount_id: *i32, flags: u32, ) NameToFileHandleAtError!void

Parameters

dirfd: fd_tpathname: []const u8handle: *std.os.linux.file_handlemount_id: *i32flags: u32

Possible Errors

FileNotFound
NameTooLong
NotDir
OperationNotSupported
Unexpected

Source

pub fn name_to_handle_at( dirfd: fd_t, pathname: []const u8, handle: *std.os.linux.file_handle, mount_id: *i32, flags: u32, ) NameToFileHandleAtError!void { const pathname_c = try toPosixPath(pathname); return name_to_handle_atZ(dirfd, &pathname_c, handle, mount_id, flags); }