Uses of Class
org.mozilla.jss.nss.BufferProxy
Packages that use BufferProxy
-
Uses of BufferProxy in org.mozilla.jss.nss
Methods in org.mozilla.jss.nss that return BufferProxyModifier and TypeMethodDescriptionstatic BufferProxy
Buffer.Create
(long length) Create a new j_buffer object with the specified number of bytes.Methods in org.mozilla.jss.nss with parameters of type BufferProxyModifier and TypeMethodDescriptionstatic boolean
Buffer.CanRead
(BufferProxy buf) Check whether or not the buffer can be read from (i.e., is non-empty).static boolean
Buffer.CanWrite
(BufferProxy buf) Check whether or not the buffer can be written to (i.e., is not full).static long
Buffer.Capacity
(BufferProxy buf) Check the total capacity of a buffer object.static void
Buffer.Free
(BufferProxy buf) Destroy a buffer object, freeing its resources.static int
Buffer.Get
(BufferProxy buf) Get a single character from the buffer.static PRFDProxy
PR.NewBufferPRFD
(BufferProxy read_buf, BufferProxy write_buf, byte[] peer_info) Create a new j_buffer backed PRFileDesc, mimicing a TCP socket with the specified peer_info.static int
Buffer.Put
(BufferProxy buf, byte input) Put a single character into the buffer.static byte[]
Buffer.Read
(BufferProxy buf, long length) Read the specified number of bytes from the buffer.static long
Buffer.ReadCapacity
(BufferProxy buf) Check the remaining number of bytes that can be read from the buffer.static long
Buffer.Write
(BufferProxy buf, byte[] input) Write the specified bytes to the buffer.static long
Buffer.WriteCapacity
(BufferProxy buf) Check the remaining number of bytes that can be written to the buffer. -
Uses of BufferProxy in org.mozilla.jss.ssl.javax
Fields in org.mozilla.jss.ssl.javax declared as BufferProxyModifier and TypeFieldDescriptionprivate BufferProxy
JSSEngineReferenceImpl.read_buf
Data to be read by the NSS SSL implementation; data from the peer.private BufferProxy
JSSEngineReferenceImpl.write_buf
Data written by the NSS SSL implementation; data sent to the peer.