radare2/libr/io
2014-03-20 13:09:37 -05:00
..
p RCore yank_buf is now a RBuffer with a defined API. Tweaked RBuffer so it reallocs buffers correctly. Modified io_zip to write through on new files. 2014-03-20 13:09:37 -05:00
t Purge all r_lib references 2014-02-20 22:16:23 +01:00
buffer.c
cache.c Fix mingw32 build of libzip 2013-11-15 01:25:34 +01:00
desc.c Fixing coverity issues for io_zip, hanging caused by infinite loop in disasm.c, 2014-01-25 23:48:22 -06:00
io.c Fixing coverity issues for io_zip, hanging caused by infinite loop in disasm.c, 2014-01-25 23:48:22 -06:00
Jamroot Fix bjam build 2014-01-03 00:43:22 +01:00
Makefile Fix statically link of libgdbr 2014-03-03 19:09:40 +01:00
map.c Bump sdb to fix memleaks 2014-01-31 18:26:11 +01:00
plugin.c Adding the option to open more than one file via a plugin. Now all the files in a zip can be loaded using zipall:// uri. 2014-01-23 21:51:39 -06:00
README
section.c Fix #458 - Negative baddr 2013-12-19 19:43:44 +01:00
undo.c
undo.h

RIO design
==========

rio api allows to seamlessly access to underlying IO backends
and define rules on top of it to act as an mmu.

Actions
-------
 - open
 - read
 - seek
 - write
 - close

Layers
------
 - cache    caches write ops and modifies reads
 - map      allows to map a certain file at a given offset
 - sections like maps, but provide more information for virtual addressing

Features
--------
 - undo
 - buffer
 - desc

fn read(io: IO) {
	ut64 offset;
	if io.offset
}