C# Class IronPython.Modules.MmapModule.mmap

Mostrar archivo Open project: jdhardy/ironpython

Private Properties

Property Type Description
CheckIndex void
CheckIndex void
CheckSeekIndex void
CloseWorker void
EnsureOpen void
EnsureWritable void
FindWorker object
GetLong long?
GetSearchString string
GetString string
MoveWorker void
RFindWorker object
ReturnLong object

Public Methods

Method Description
__delitem__ ( long index ) : void
__delslice__ ( IronPython.Runtime.Slice slice ) : void
__len__ ( ) : object
close ( ) : void
find ( [ s ) : object
find ( [ s, long start ) : object
find ( [ s, long start, long end ) : object
flush ( ) : int
flush ( long offset, long size ) : int
mmap ( CodeContext context, int fileno, long length, [ tagname, [ access, [ offset ) : System
move ( long dest, long src, long count ) : void
read ( int len ) : string
read_byte ( ) : string
readline ( ) : string
resize ( long newsize ) : void
rfind ( [ s ) : object
rfind ( [ s, long start ) : object
rfind ( [ s, long start, long end ) : object
seek ( long pos, [ whence ) : void
size ( ) : object
tell ( ) : object
this ( IronPython.Runtime.Slice slice ) : string
this ( long index ) : string
write ( string s ) : void
write_byte ( string s ) : void

Private Methods

Method Description
CheckIndex ( long index ) : void
CheckIndex ( long index, bool inclusive ) : void
CheckSeekIndex ( long index ) : void
CloseWorker ( ) : void
EnsureOpen ( ) : void
EnsureWritable ( ) : void
FindWorker ( string s, long start, long end ) : object
GetLong ( object o ) : long?
GetSearchString ( ) : string
GetString ( byte buffer0, byte buffer1, int length1 ) : string
MoveWorker ( byte buffer, long src, long dest, int count ) : void
RFindWorker ( string s, long start, long end ) : object
ReturnLong ( long l ) : object

Method Details

__delitem__() public method

public __delitem__ ( long index ) : void
index long
return void

__delslice__() public method

public __delslice__ ( IronPython.Runtime.Slice slice ) : void
slice IronPython.Runtime.Slice
return void

__len__() public method

public __len__ ( ) : object
return object

close() public method

public close ( ) : void
return void

find() public method

public find ( [ s ) : object
s [
return object

find() public method

public find ( [ s, long start ) : object
s [
start long
return object

find() public method

public find ( [ s, long start, long end ) : object
s [
start long
end long
return object

flush() public method

public flush ( ) : int
return int

flush() public method

public flush ( long offset, long size ) : int
offset long
size long
return int

mmap() public method

public mmap ( CodeContext context, int fileno, long length, [ tagname, [ access, [ offset ) : System
context CodeContext
fileno int
length long
tagname [
access [
offset [
return System

move() public method

public move ( long dest, long src, long count ) : void
dest long
src long
count long
return void

read() public method

public read ( int len ) : string
len int
return string

read_byte() public method

public read_byte ( ) : string
return string

readline() public method

public readline ( ) : string
return string

resize() public method

public resize ( long newsize ) : void
newsize long
return void

rfind() public method

public rfind ( [ s ) : object
s [
return object

rfind() public method

public rfind ( [ s, long start ) : object
s [
start long
return object

rfind() public method

public rfind ( [ s, long start, long end ) : object
s [
start long
end long
return object

seek() public method

public seek ( long pos, [ whence ) : void
pos long
whence [
return void

size() public method

public size ( ) : object
return object

tell() public method

public tell ( ) : object
return object

this() public method

public this ( IronPython.Runtime.Slice slice ) : string
slice IronPython.Runtime.Slice
return string

this() public method

public this ( long index ) : string
index long
return string

write() public method

public write ( string s ) : void
s string
return void

write_byte() public method

public write_byte ( string s ) : void
s string
return void