Home
last modified time | relevance | path

Searched refs:cbuf (Results 1 – 2 of 2) sorted by relevance

/unit/go/
H A Dunit.go20 type cbuf struct { struct
44 func (buf *cbuf) init_bytes(b []byte) { argument
55 func (buf *cbuf) GoBytes() []byte { argument
/unit/src/java/nginx/unit/websocket/
H A DWsRemoteEndpointImplBase.java1031 public void write(char[] cbuf, int off, int len) throws IOException { in write() argument
1039 if ((off < 0) || (off > cbuf.length) || (len < 0) || in write()
1040 ((off + len) > cbuf.length) || ((off + len) < 0)) { in write()
1052 buffer.put(cbuf, off + written, remaining); in write()
1057 buffer.put(cbuf, off + written, len - written); in write()