Searched defs:buffer (Results 1 – 5 of 5) sorted by relevance
66 type buffer struct { struct67 buf []byte68 bootstrap [64]byte // memory to hold first slice71 func (b *buffer) Write(data []byte) (int, error) {76 func (b *buffer) WriteByte(c byte) error {81 func (b *buffer) WriteString(s string) (int, error) {86 func (b *buffer) Bytes() []byte { return b.buf }87 func (b *buffer) Len() int { return len(b.buf) }88 func (b *buffer) String() string { return string(b.buf) }90 func (b *buffer) Reset() {[all …]
163 void* buffer; in CreateProtectedString() local
98 buffer = cStringIO.StringIO() variable
177 buffer = cStringIO.StringIO() variable
74 char buffer[1024]; in main() local