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 BufferProxyBuffer.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 booleanBuffer.CanRead(BufferProxy buf) Check whether or not the buffer can be read from (i.e., is non-empty).static booleanBuffer.CanWrite(BufferProxy buf) Check whether or not the buffer can be written to (i.e., is not full).static longBuffer.Capacity(BufferProxy buf) Check the total capacity of a buffer object.static voidBuffer.Free(BufferProxy buf) Destroy a buffer object, freeing its resources.static intBuffer.Get(BufferProxy buf) Get a single character from the buffer.static PRFDProxyPR.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 intBuffer.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 longBuffer.ReadCapacity(BufferProxy buf) Check the remaining number of bytes that can be read from the buffer.static longBuffer.Write(BufferProxy buf, byte[] input) Write the specified bytes to the buffer.static longBuffer.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 BufferProxyJSSEngineReferenceImpl.read_bufData to be read by the NSS SSL implementation; data from the peer.private BufferProxyJSSEngineReferenceImpl.write_bufData written by the NSS SSL implementation; data sent to the peer.