Searched defs:bytes (Results 126 - 150 of 280) sorted by relevance

1234567891011>>

/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/importLDIF/
H A DImportIDSet.java287 * @param bytes The byte array read from JEB.
290 public void remove(byte[] bytes, ImportIDSet importIdSet) argument
292 boolean dbUndefined = ((bytes[0] & 0x80) == 0x80);
301 array = JebFormat.entryIDListFromDatabase(bytes);
322 * @param bytes The byte array of IDs read from a DB.
327 public boolean merge(byte[] bytes, ImportIDSet importIdSet) argument
331 incrementLimitCount = mergeCount(bytes, importIdSet);
333 boolean dbUndefined = ((bytes[0] & 0x80) == 0x80);
345 array = JebFormat.entryIDListFromDatabase(bytes);
559 private byte[] encode(byte[] bytes) argument
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java356 byte[] bytes = new byte[2 * 1024];
363 int len = in.read(bytes);
370 out.write(bytes, 0, len);
613 * @param bytes the byte array.
615 static void updateBase64(JTextComponent base64, byte[] bytes) argument
617 if (bytes.length < MAX_BASE64_TO_DISPLAY)
619 BinaryValue value = BinaryValue.createBase64(bytes);
632 * @param bytes the array of bytes containing the image.
634 static void updateImage(JLabel lImage, byte[] bytes) argument
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java123 * Returns the message describing the provided array of bytes.
124 * @param value the array of bytes.
125 * @param isImage whether the array of bytes represents an image or not.
126 * @return the message describing the provided array of bytes.
204 * @param value the binary value as an array of bytes.
368 private Icon getIcon(byte[] bytes) argument
370 return Utilities.createImageIcon(bytes, THUMBNAIL_HEIGHT,
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DLDAPUpdateMsg.java63 protected byte[] bytes; field in class:LDAPUpdateMsg
207 bytes = getBytes(ProtocolVersion.getCurrentVersion());
266 if (bytes == null)
269 bytes = getBytes_V45(protocolVersion);
271 return bytes;
392 * Return the number of bytes used by the header.
393 * @return The number of bytes used by the header.
/forgerock/opendj2/src/server/org/opends/server/types/
H A DByteStringBuilder.java48 * A mutable sequence of bytes backed by a byte array.
331 // The number of bytes to expose from the buffer.
338 * bytes.
458 * The number of bytes to be appended from {@code buffer}.
488 * @param bytes
493 public ByteStringBuilder append(ByteSequence bytes) argument
495 return bytes.copyTo(this);
508 * The number of bytes to be appended from {@code reader}.
543 * The maximum number of bytes to be appended from {@code
545 * @return The number of bytes rea
[all...]
/forgerock/opendj2/ext/svnkit/lib/
H A Djsch.agentproxy.svnkit-trilead-ssh2-0.0.7.jar ... String getAlgName () public byte[] getPublicKeyBlob () public byte[] sign (byte[]) byte[] bytes } META-INF/maven/ META-INF/maven/com. ...
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/importLDIF/
H A DImportIDSet.java287 * @param bytes The byte array read from JEB.
290 public void remove(byte[] bytes, ImportIDSet importIdSet) argument
292 boolean dbUndefined = ((bytes[0] & 0x80) == 0x80);
301 array = JebFormat.entryIDListFromDatabase(bytes);
322 * @param bytes The byte array of IDs read from a DB.
327 public boolean merge(byte[] bytes, ImportIDSet importIdSet) argument
331 incrementLimitCount = mergeCount(bytes, importIdSet);
333 boolean dbUndefined = ((bytes[0] & 0x80) == 0x80);
345 array = JebFormat.entryIDListFromDatabase(bytes);
559 private byte[] encode(byte[] bytes) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DSASLContext.java598 * @param bytes
603 * The length from the offset of the number of bytes to unwrap.
604 * @return A byte array containing the clear or unwrapped bytes.
606 * If the bytes cannot be unwrapped.
608 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
611 return saslServer.unwrap(bytes, offset, len);
626 * The length from the offset of the number of bytes to wrap.
627 * @return A byte array containing the wrapped bytes.
629 * If the clear bytes cannot be wrapped.
867 * @param bytes
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/internal/
H A DInternalLDAPOutputStream.java89 * An adaptor class for reading from a save buffer and the bytes
92 * Since the bytes being written are only available duing the write
95 * save buffer first before the actual bytes being written to ensure
96 * bytes are read in the same order as they are written.
106 // The number of available bytes is the sum of the save buffer
135 public int read(byte[] bytes) argument
137 return read(bytes, 0, bytes.length);
284 * @param len The number of bytes to read from the array.
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/
H A DLDAPUpdateMsg.java75 protected byte[] bytes = null; field in class:LDAPUpdateMsg
229 bytes = getBytes(ProtocolVersion.getCurrentVersion());
241 * encode the remaining bytes of the UpdateMsg as was specified
303 * encode the remaining bytes of the UpdateMessage as was specified
364 if (bytes == null)
367 bytes = getBytes_V45(reqProtocolVersion);
369 return bytes;
570 * Return the number of bytes used by this message.
572 * @return The number of bytes used by this message.
578 * Return the number of bytes use
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DByteStringBuilder.java47 * A mutable sequence of bytes backed by a byte array.
330 // The number of bytes to expose from the buffer.
337 * bytes.
457 * The number of bytes to be appended from {@code buffer}.
487 * @param bytes
492 public ByteStringBuilder append(ByteSequence bytes) argument
494 return bytes.copyTo(this);
507 * The number of bytes to be appended from {@code reader}.
542 * The maximum number of bytes to be appended from {@code
544 * @return The number of bytes rea
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java357 byte[] bytes = new byte[2 * 1024];
364 int len = in.read(bytes);
371 out.write(bytes, 0, len);
614 * @param bytes the byte array.
616 static void updateBase64(JTextComponent base64, byte[] bytes) argument
618 if (bytes.length < MAX_BASE64_TO_DISPLAY)
620 BinaryValue value = BinaryValue.createBase64(bytes);
633 * @param bytes the array of bytes containing the image.
635 static void updateImage(JLabel lImage, byte[] bytes) argument
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java124 * Returns the message describing the provided array of bytes.
125 * @param value the array of bytes.
126 * @param isImage whether the array of bytes represents an image or not.
127 * @return the message describing the provided array of bytes.
205 * @param value the binary value as an array of bytes.
369 private Icon getIcon(byte[] bytes) argument
371 return Utilities.createImageIcon(bytes, THUMBNAIL_HEIGHT,
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java356 byte[] bytes = new byte[2 * 1024];
363 int len = in.read(bytes);
370 out.write(bytes, 0, len);
613 * @param bytes the byte array.
615 static void updateBase64(JTextComponent base64, byte[] bytes) argument
617 if (bytes.length < MAX_BASE64_TO_DISPLAY)
619 BinaryValue value = BinaryValue.createBase64(bytes);
632 * @param bytes the array of bytes containing the image.
634 static void updateImage(JLabel lImage, byte[] bytes) argument
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java123 * Returns the message describing the provided array of bytes.
124 * @param value the array of bytes.
125 * @param isImage whether the array of bytes represents an image or not.
126 * @return the message describing the provided array of bytes.
204 * @param value the binary value as an array of bytes.
368 private Icon getIcon(byte[] bytes) argument
370 return Utilities.createImageIcon(bytes, THUMBNAIL_HEIGHT,
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Djsch.agentproxy.svnkit-trilead-ssh2-0.0.7.jar ... String getAlgName () public byte[] getPublicKeyBlob () public byte[] sign (byte[]) byte[] bytes } META-INF/maven/ META-INF/maven/com. ...
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DSASLContext.java598 * @param bytes
603 * The length from the offset of the number of bytes to unwrap.
604 * @return A byte array containing the clear or unwrapped bytes.
606 * If the bytes cannot be unwrapped.
608 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
611 return saslServer.unwrap(bytes, offset, len);
626 * The length from the offset of the number of bytes to wrap.
627 * @return A byte array containing the wrapped bytes.
629 * If the clear bytes cannot be wrapped.
867 * @param bytes
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/internal/
H A DInternalLDAPOutputStream.java89 * An adaptor class for reading from a save buffer and the bytes
92 * Since the bytes being written are only available duing the write
95 * save buffer first before the actual bytes being written to ensure
96 * bytes are read in the same order as they are written.
106 // The number of available bytes is the sum of the save buffer
135 public int read(byte[] bytes) argument
137 return read(bytes, 0, bytes.length);
284 * @param len The number of bytes to read from the array.
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DLDAPUpdateMsg.java75 protected byte[] bytes = null; field in class:LDAPUpdateMsg
229 bytes = getBytes(ProtocolVersion.getCurrentVersion());
241 * encode the remaining bytes of the UpdateMsg as was specified
303 * encode the remaining bytes of the UpdateMessage as was specified
364 if (bytes == null)
367 bytes = getBytes_V45(reqProtocolVersion);
369 return bytes;
570 * Return the number of bytes used by this message.
572 * @return The number of bytes used by this message.
578 * Return the number of bytes use
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DByteStringBuilder.java47 * A mutable sequence of bytes backed by a byte array.
330 // The number of bytes to expose from the buffer.
337 * bytes.
457 * The number of bytes to be appended from {@code buffer}.
487 * @param bytes
492 public ByteStringBuilder append(ByteSequence bytes) argument
494 return bytes.copyTo(this);
507 * The number of bytes to be appended from {@code reader}.
542 * The maximum number of bytes to be appended from {@code
544 * @return The number of bytes rea
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/importLDIF/
H A DImportIDSet.java286 * @param bytes The byte array read from JEB.
289 public void remove(byte[] bytes, ImportIDSet importIdSet) argument
291 boolean dbUndefined = ((bytes[0] & 0x80) == 0x80);
300 array = JebFormat.entryIDListFromDatabase(bytes);
321 * @param bytes The byte array of IDs read from a DB.
326 public boolean merge(byte[] bytes, ImportIDSet importIdSet) argument
330 incrementLimitCount = mergeCount(bytes, importIdSet);
332 boolean dbUndefined = ((bytes[0] & 0x80) == 0x80);
344 array = JebFormat.entryIDListFromDatabase(bytes);
558 private byte[] encode(byte[] bytes) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DSASLContext.java600 * @param bytes
605 * The length from the offset of the number of bytes to unwrap.
606 * @return A byte array containing the clear or unwrapped bytes.
608 * If the bytes cannot be unwrapped.
610 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
613 return saslServer.unwrap(bytes, offset, len);
628 * The length from the offset of the number of bytes to wrap.
629 * @return A byte array containing the wrapped bytes.
631 * If the clear bytes cannot be wrapped.
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/internal/
H A DInternalLDAPOutputStream.java88 * An adaptor class for reading from a save buffer and the bytes
91 * Since the bytes being written are only available duing the write
94 * save buffer first before the actual bytes being written to ensure
95 * bytes are read in the same order as they are written.
105 // The number of available bytes is the sum of the save buffer
134 public int read(byte[] bytes) argument
136 return read(bytes, 0, bytes.length);
283 * @param len The number of bytes to read from the array.
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/
H A DByteArrayBuilder.java248 * Append all the bytes from the byte array to this ByteArrayBuilder.
250 * @param bytes
254 public ByteArrayBuilder appendByteArray(byte[] bytes) argument
256 builder.append(bytes);
261 * Append all the bytes from the byte array to this ByteArrayBuilder
268 * @param bytes
272 public ByteArrayBuilder appendZeroTerminatedByteArray(byte[] bytes) argument
274 builder.append(bytes);
317 * Returns a new ASN1Writer that will append bytes to this ByteArrayBuilder.
319 * @return a new ASN1Writer that will append bytes t
366 public static int bytes(int nbFields) method in class:ByteArrayBuilder
[all...]
H A DLDAPUpdateMsg.java63 protected byte[] bytes; field in class:LDAPUpdateMsg
207 bytes = getBytes(ProtocolVersion.getCurrentVersion());
266 if (bytes == null)
269 bytes = getBytes_V45(protocolVersion);
271 return bytes;
392 * Return the number of bytes used by the header.
393 * @return The number of bytes used by the header.

Completed in 170 milliseconds

1234567891011>>