Class _Stdio.Fd

Inheritance graph
Description

Low level I/O operations.

Note

This is not the class you want. Use Stdio.File and friends instead.

See also

Stdio.File, Stdio.FILE, _Stdio.Fd_ref


Variable _errno

protected int(0..) _Stdio.Fd._errno

Description

Variable containing the internal value returned by errno().

See also

errno()


Variable _read_callback
Variable _write_callback
Variable _read_oob_callback
Variable _write_oob_callback
Variable _error_callback
Variable _fs_event_callback

mixed _Stdio.Fd._read_callback
mixed _Stdio.Fd._write_callback
mixed _Stdio.Fd._read_oob_callback
mixed _Stdio.Fd._write_oob_callback
mixed _Stdio.Fd._error_callback
mixed _Stdio.Fd._fs_event_callback

Description

Callback functions installed by Stdio.File()->set_callbacks() et al.


Variable _fd

Fd _Stdio.Fd._fd

Note

Read only


Method create

_Stdio.Fd _Stdio.Fd(string filename)
_Stdio.Fd _Stdio.Fd(string filename, string mode)
_Stdio.Fd _Stdio.Fd(string filename, string mode, int access)
_Stdio.Fd _Stdio.Fd(int fd)
_Stdio.Fd _Stdio.Fd(int fd, string mode)

Description

See open().

See also

open()