radare2/libr/io
2015-07-23 03:34:46 +02:00
..
p Add more details for OSX code signing 2015-07-23 03:34:46 +02:00
t
buffer.c
cache.c
desc.c Fix r2 -c 'o-*;s++' - use-after-free and other from #2220 2015-03-23 00:32:31 +01:00
io.c Fix af in debugger mode 2015-07-21 13:38:34 +02:00
Jamroot
Makefile
map.c Fix visual regression and add dummy dalvik regprofile 2015-04-11 04:45:09 +02:00
plugin.c
README
section.c Add anal.noncode to avoid analyzing data by default 2015-07-05 01:44:45 +02:00
undo.c
undo.h
vio.c

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

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

What do io.va means?
--------------------
- obey sections

- Plugins 

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
}