Searched defs:bytes (Results 176 - 200 of 280) sorted by relevance

1234567891011>>

/forgerock/opendj-b2.6/src/server/org/opends/server/util/
H A DStaticUtils.java190 * return new String(bytes, "UTF-8");
199 * @param bytes
203 public static String decodeUTF8(final byte[] bytes) argument
205 Validator.ensureNotNull(bytes);
207 if (bytes.length == 0)
212 final StringBuilder builder = new StringBuilder(bytes.length);
213 final int sz = bytes.length;
217 final byte b = bytes[i];
222 builder.append(new String(bytes, i, (sz - i), "UTF-8"));
961 * hex bytes i
[all...]
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java687 * than what is specified with the bytes parameter.
689 * @param bytes the disk space.
691 * than what is specified with the bytes parameter.
694 long bytes)
711 raf.setLength(bytes);
693 hasEnoughSpace(String directoryPath, long bytes) argument
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java688 * than what is specified with the bytes parameter.
690 * @param bytes the disk space.
692 * than what is specified with the bytes parameter.
695 long bytes)
712 raf.setLength(bytes);
694 hasEnoughSpace(String directoryPath, long bytes) argument
/forgerock/opendj2/src/server/org/opends/server/util/
H A DStaticUtils.java153 * return new String(bytes, "UTF-8");
162 * @param bytes
166 public static String decodeUTF8(final byte[] bytes) argument
168 Validator.ensureNotNull(bytes);
170 if (bytes.length == 0)
175 final StringBuilder builder = new StringBuilder(bytes.length);
176 final int sz = bytes.length;
180 final byte b = bytes[i];
185 builder.append(new String(bytes, i, (sz - i), "UTF-8"));
924 * hex bytes i
[all...]
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java688 * than what is specified with the bytes parameter.
690 * @param bytes the disk space.
692 * than what is specified with the bytes parameter.
695 long bytes)
712 raf.setLength(bytes);
694 hasEnoughSpace(String directoryPath, long bytes) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/util/
H A DStaticUtils.java190 * return new String(bytes, "UTF-8");
199 * @param bytes
203 public static String decodeUTF8(final byte[] bytes) argument
205 Validator.ensureNotNull(bytes);
207 if (bytes.length == 0)
212 final StringBuilder builder = new StringBuilder(bytes.length);
213 final int sz = bytes.length;
217 final byte b = bytes[i];
222 builder.append(new String(bytes, i, (sz - i), "UTF-8"));
961 * hex bytes i
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/
H A DStaticUtils.java228 * return new String(bytes, "UTF-8");
237 * @param bytes
241 public static String decodeUTF8(final byte[] bytes) argument
243 Validator.ensureNotNull(bytes);
245 if (bytes.length == 0)
250 final StringBuilder builder = new StringBuilder(bytes.length);
251 final int sz = bytes.length;
255 final byte b = bytes[i];
260 builder.append(new String(bytes, i, (sz - i), "UTF-8"));
999 * hex bytes i
[all...]
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java687 * than what is specified with the bytes parameter.
689 * @param bytes the disk space.
691 * than what is specified with the bytes parameter.
694 long bytes)
711 raf.setLength(bytes);
693 hasEnoughSpace(String directoryPath, long bytes) argument
/forgerock/opendj2-hg/src/server/org/opends/server/util/
H A DStaticUtils.java153 * return new String(bytes, "UTF-8");
162 * @param bytes
166 public static String decodeUTF8(final byte[] bytes) argument
168 Validator.ensureNotNull(bytes);
170 if (bytes.length == 0)
175 final StringBuilder builder = new StringBuilder(bytes.length);
176 final int sz = bytes.length;
180 final byte b = bytes[i];
185 builder.append(new String(bytes, i, (sz - i), "UTF-8"));
924 * hex bytes i
[all...]
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java706 * than what is specified with the bytes parameter.
708 * @param bytes the disk space.
710 * than what is specified with the bytes parameter.
713 long bytes)
730 raf.setLength(bytes);
712 hasEnoughSpace(String directoryPath, long bytes) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/
H A DUtils.java633 * than what is specified with the bytes parameter.
637 * @param bytes
640 * than what is specified with the bytes parameter.
642 public static synchronized boolean hasEnoughSpace(String directoryPath, long bytes) argument
660 raf.setLength(bytes);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pdb/
H A DPDBStorage.java1144 private static Key bytesToKey(final Key key, final ByteSequence bytes) argument
1146 final byte[] tmp = bytes.toByteArray();
1150 private static Value bytesToValue(final Value value, final ByteSequence bytes) argument
1152 value.clear().putByteArray(bytes.toByteArray());
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2SDKUtils.java391 * @param bytes Byte Array to be converted.
394 public static String byteArrayToString(byte[] bytes) { argument
395 char chars[] = new char[bytes.length];
396 for (int i = 0; i < bytes.length; i++) {
397 chars[i] = (char) bytes[i];
441 byte[] bytes = hexStringToByteArray(norm);
443 return bytes;
447 * Converts two bytes to an integer.
449 * @param bytes byte array whose length is 2.
453 public static int twoBytesToInt(byte[] bytes) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DStaticUtils.java80 /** The number of bytes of a Java int. A Java int is 32 bits, i.e. 4 bytes. */
82 /** The number of bytes of a Java long. A Java int is 64 bits, i.e. 8 bytes. */
86 * Number of bytes in a Kibibyte.
95 * Number of bytes in a Mebibyte.
132 * return new String(bytes, &quot;UTF-8&quot;);
141 * @param bytes
145 public static String decodeUTF8(final byte[] bytes) argument
147 Reject.ifNull(bytes);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2SDKUtils.java391 * @param bytes Byte Array to be converted.
394 public static String byteArrayToString(byte[] bytes) { argument
395 char chars[] = new char[bytes.length];
396 for (int i = 0; i < bytes.length; i++) {
397 chars[i] = (char) bytes[i];
441 byte[] bytes = hexStringToByteArray(norm);
443 return bytes;
447 * Converts two bytes to an integer.
449 * @param bytes byte array whose length is 2.
453 public static int twoBytesToInt(byte[] bytes) argument
[all...]
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsequence-library.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt de/ de/regnis/ de/ ...
/forgerock/opendj2/ext/svnkit/lib/
H A Dsequence-library-1.0.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt de/ de/regnis/ de/ ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dsequence-library.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt de/ de/regnis/ de/ ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Dsequence-library-1.0.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt de/ de/regnis/ de/ ...
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/util/
H A DUtilities.java1004 * Creates an image icon using an array of bytes that contain the image and
1006 * @param bytes the byte array.
1011 * @return an image icon using an array of bytes that contain the image and
1014 public static ImageIcon createImageIcon(byte[] bytes, int maxHeight, argument
1017 ImageIcon icon = new ImageIcon(bytes, description.toString());
/forgerock/opendj2/ext/ant/lib/
H A Dant-apache-bcel.jar ... .bcel.classfile.Field field int i byte[] bytes StringBuffer sb java.io.ByteArrayInputStream bis org. ...
H A Dant-launcher.jar ... String) throws java.io.UnsupportedEncodingException byte b byte[] bytes String path int i int len int ch StringBuffer sb ...
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/util/
H A DUtilities.java1003 * Creates an image icon using an array of bytes that contain the image and
1005 * @param bytes the byte array.
1010 * @return an image icon using an array of bytes that contain the image and
1013 public static ImageIcon createImageIcon(byte[] bytes, int maxHeight, argument
1016 ImageIcon icon = new ImageIcon(bytes, description.toString());
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-apache-bcel.jar ... .bcel.classfile.Field field int i byte[] bytes StringBuffer sb java.io.ByteArrayInputStream bis org. ...
H A Dant-launcher.jar ... String) throws java.io.UnsupportedEncodingException byte b byte[] bytes String path int i int len int ch StringBuffer sb ...

Completed in 149 milliseconds

1234567891011>>