Searched defs:offset (Results 76 - 100 of 225) sorted by relevance

123456789

/forgerock/opendj2.6.2/ext/svnkit/
H A Djna.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/jna/ com/sun/jna/linux ...
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DSASLContext.java594 * Unwrap the specified byte array using the provided offset and length
600 * @param offset
601 * The offset in the array.
603 * The length from the offset of the number of bytes to unwrap.
608 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
611 return saslServer.unwrap(bytes, offset, len);
617 * Wrap the specified clear byte array using the provided offset and length
623 * @param offset
624 * The offset into the clear byte array..
626 * The length from the offset o
631 wrap(final byte[] clearBytes, final int offset, final int len) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DByteString.java159 * @param offset
160 * The offset of the byte array to be used; must be
165 * offset}.
168 * If {@code offset} is negative or if {@code length} is
169 * negative or if {@code offset + length} is greater than
172 public static ByteString wrap(byte[] b, int offset, int length) argument
175 checkArrayBounds(b, offset, length);
176 return new ByteString(b, offset, length);
188 * @param offset
189 * The offset o
200 checkArrayBounds(byte[] b, int offset, int length) argument
311 hashCode(byte[] b, int offset, int length) argument
338 toString(byte[] b, int offset, int length) argument
366 private final int offset; field in class:ByteString
388 ByteString(byte[] b, int offset, int length) argument
428 compareTo(byte[] b, int offset, int length) argument
463 copyTo(byte[] b, int offset) argument
512 equals(byte[] b, int offset, int length) argument
[all...]
H A DByteStringBuilder.java64 // The offset of the sub-sequence.
72 * @param offset
73 * The offset of the sub-sequence.
77 private SubSequence(int offset, int length) argument
79 this.subOffset = offset;
114 public int compareTo(byte[] b, int offset, int length) argument
117 ByteString.checkArrayBounds(b, offset, length);
121 b, offset, length);
153 public byte[] copyTo(byte[] b, int offset) argument
156 if (offset <
205 equals(byte[] b, int offset, int length) argument
432 append(byte[] b, int offset, int length) argument
836 compareTo(byte[] b, int offset, int length) argument
960 copyTo(byte[] b, int offset) argument
1031 equals(byte[] b, int offset, int length) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DManagedObjectPath.java1298 * @param offset
1299 * The number of path elements (0 - means no offset, 1
1304 * If the offset is less than 0, or greater than the
1307 public ManagedObjectPath<?, ?> parent(int offset) argument
1309 if (offset < 0) {
1310 throw new IllegalArgumentException("Negative offset");
1313 if (offset > elements.size()) {
1318 // An offset of 0 leaves the path unchanged.
1319 if (offset == 0) {
1324 if (elements.size() == offset) {
[all...]
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DSASLContext.java596 * Unwrap the specified byte array using the provided offset and length
602 * @param offset
603 * The offset in the array.
605 * The length from the offset of the number of bytes to unwrap.
610 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
613 return saslServer.unwrap(bytes, offset, len);
619 * Wrap the specified clear byte array using the provided offset and length
625 * @param offset
626 * The offset into the clear byte array..
628 * The length from the offset o
633 wrap(final byte[] clearBytes, final int offset, final int len) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DManagedObjectPath.java1299 * @param offset
1300 * The number of path elements (0 - means no offset, 1
1305 * If the offset is less than 0, or greater than the
1308 public ManagedObjectPath<?, ?> parent(int offset) argument
1310 if (offset < 0) {
1311 throw new IllegalArgumentException("Negative offset");
1314 if (offset > elements.size()) {
1319 // An offset of 0 leaves the path unchanged.
1320 if (offset == 0) {
1325 if (elements.size() == offset) {
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DByteString.java158 * @param offset
159 * The offset of the byte array to be used; must be
164 * offset}.
167 * If {@code offset} is negative or if {@code length} is
168 * negative or if {@code offset + length} is greater than
171 public static ByteString wrap(byte[] b, int offset, int length) argument
174 checkArrayBounds(b, offset, length);
175 return new ByteString(b, offset, length);
187 * @param offset
188 * The offset o
199 checkArrayBounds(byte[] b, int offset, int length) argument
310 hashCode(byte[] b, int offset, int length) argument
337 toString(byte[] b, int offset, int length) argument
365 private final int offset; field in class:ByteString
387 ByteString(byte[] b, int offset, int length) argument
427 compareTo(byte[] b, int offset, int length) argument
462 copyTo(byte[] b, int offset) argument
511 equals(byte[] b, int offset, int length) argument
[all...]
H A DByteStringBuilder.java65 // The offset of the sub-sequence.
73 * @param offset
74 * The offset of the sub-sequence.
78 private SubSequence(int offset, int length) argument
80 this.subOffset = offset;
115 public int compareTo(byte[] b, int offset, int length) argument
118 ByteString.checkArrayBounds(b, offset, length);
122 b, offset, length);
154 public byte[] copyTo(byte[] b, int offset) argument
157 if (offset <
206 equals(byte[] b, int offset, int length) argument
433 append(byte[] b, int offset, int length) argument
864 compareTo(byte[] b, int offset, int length) argument
988 copyTo(byte[] b, int offset) argument
1059 equals(byte[] b, int offset, int length) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DManagedObjectPath.java1299 * @param offset
1300 * The number of path elements (0 - means no offset, 1
1305 * If the offset is less than 0, or greater than the
1308 public ManagedObjectPath<?, ?> parent(int offset) argument
1310 if (offset < 0) {
1311 throw new IllegalArgumentException("Negative offset");
1314 if (offset > elements.size()) {
1319 // An offset of 0 leaves the path unchanged.
1320 if (offset == 0) {
1325 if (elements.size() == offset) {
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DSASLContext.java594 * Unwrap the specified byte array using the provided offset and length
600 * @param offset
601 * The offset in the array.
603 * The length from the offset of the number of bytes to unwrap.
608 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
611 return saslServer.unwrap(bytes, offset, len);
617 * Wrap the specified clear byte array using the provided offset and length
623 * @param offset
624 * The offset into the clear byte array..
626 * The length from the offset o
631 wrap(final byte[] clearBytes, final int offset, final int len) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DByteString.java159 * @param offset
160 * The offset of the byte array to be used; must be
165 * offset}.
168 * If {@code offset} is negative or if {@code length} is
169 * negative or if {@code offset + length} is greater than
172 public static ByteString wrap(byte[] b, int offset, int length) argument
175 checkArrayBounds(b, offset, length);
176 return new ByteString(b, offset, length);
188 * @param offset
189 * The offset o
200 checkArrayBounds(byte[] b, int offset, int length) argument
311 hashCode(byte[] b, int offset, int length) argument
338 toString(byte[] b, int offset, int length) argument
366 private final int offset; field in class:ByteString
388 ByteString(byte[] b, int offset, int length) argument
428 compareTo(byte[] b, int offset, int length) argument
463 copyTo(byte[] b, int offset) argument
512 equals(byte[] b, int offset, int length) argument
[all...]
H A DByteStringBuilder.java64 // The offset of the sub-sequence.
72 * @param offset
73 * The offset of the sub-sequence.
77 private SubSequence(int offset, int length) argument
79 this.subOffset = offset;
114 public int compareTo(byte[] b, int offset, int length) argument
117 ByteString.checkArrayBounds(b, offset, length);
121 b, offset, length);
153 public byte[] copyTo(byte[] b, int offset) argument
156 if (offset <
205 equals(byte[] b, int offset, int length) argument
432 append(byte[] b, int offset, int length) argument
836 compareTo(byte[] b, int offset, int length) argument
960 copyTo(byte[] b, int offset) argument
1031 equals(byte[] b, int offset, int length) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DSASLContext.java594 * Unwrap the specified byte array using the provided offset and length
600 * @param offset
601 * The offset in the array.
603 * The length from the offset of the number of bytes to unwrap.
608 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
611 return saslServer.unwrap(bytes, offset, len);
617 * Wrap the specified clear byte array using the provided offset and length
623 * @param offset
624 * The offset into the clear byte array..
626 * The length from the offset o
631 wrap(final byte[] clearBytes, final int offset, final int len) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DByteString.java159 * @param offset
160 * The offset of the byte array to be used; must be
165 * offset}.
168 * If {@code offset} is negative or if {@code length} is
169 * negative or if {@code offset + length} is greater than
172 public static ByteString wrap(byte[] b, int offset, int length) argument
175 checkArrayBounds(b, offset, length);
176 return new ByteString(b, offset, length);
188 * @param offset
189 * The offset o
200 checkArrayBounds(byte[] b, int offset, int length) argument
311 hashCode(byte[] b, int offset, int length) argument
338 toString(byte[] b, int offset, int length) argument
366 private final int offset; field in class:ByteString
388 ByteString(byte[] b, int offset, int length) argument
428 compareTo(byte[] b, int offset, int length) argument
463 copyTo(byte[] b, int offset) argument
512 equals(byte[] b, int offset, int length) argument
[all...]
H A DByteStringBuilder.java64 // The offset of the sub-sequence.
72 * @param offset
73 * The offset of the sub-sequence.
77 private SubSequence(int offset, int length) argument
79 this.subOffset = offset;
114 public int compareTo(byte[] b, int offset, int length) argument
117 ByteString.checkArrayBounds(b, offset, length);
121 b, offset, length);
153 public byte[] copyTo(byte[] b, int offset) argument
156 if (offset <
205 equals(byte[] b, int offset, int length) argument
432 append(byte[] b, int offset, int length) argument
836 compareTo(byte[] b, int offset, int length) argument
960 copyTo(byte[] b, int offset) argument
1031 equals(byte[] b, int offset, int length) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DManagedObjectPath.java1298 * @param offset
1299 * The number of path elements (0 - means no offset, 1
1304 * If the offset is less than 0, or greater than the
1307 public ManagedObjectPath<?, ?> parent(int offset) argument
1309 if (offset < 0) {
1310 throw new IllegalArgumentException("Negative offset");
1313 if (offset > elements.size()) {
1318 // An offset of 0 leaves the path unchanged.
1319 if (offset == 0) {
1324 if (elements.size() == offset) {
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DSASLContext.java596 * Unwrap the specified byte array using the provided offset and length
602 * @param offset
603 * The offset in the array.
605 * The length from the offset of the number of bytes to unwrap.
610 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
613 return saslServer.unwrap(bytes, offset, len);
619 * Wrap the specified clear byte array using the provided offset and length
625 * @param offset
626 * The offset into the clear byte array..
628 * The length from the offset o
633 wrap(final byte[] clearBytes, final int offset, final int len) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DByteString.java158 * @param offset
159 * The offset of the byte array to be used; must be
164 * offset}.
167 * If {@code offset} is negative or if {@code length} is
168 * negative or if {@code offset + length} is greater than
171 public static ByteString wrap(byte[] b, int offset, int length) argument
174 checkArrayBounds(b, offset, length);
175 return new ByteString(b, offset, length);
187 * @param offset
188 * The offset o
199 checkArrayBounds(byte[] b, int offset, int length) argument
310 hashCode(byte[] b, int offset, int length) argument
337 toString(byte[] b, int offset, int length) argument
365 private final int offset; field in class:ByteString
387 ByteString(byte[] b, int offset, int length) argument
427 compareTo(byte[] b, int offset, int length) argument
462 copyTo(byte[] b, int offset) argument
511 equals(byte[] b, int offset, int length) argument
[all...]
H A DByteStringBuilder.java65 // The offset of the sub-sequence.
73 * @param offset
74 * The offset of the sub-sequence.
78 private SubSequence(int offset, int length) argument
80 this.subOffset = offset;
115 public int compareTo(byte[] b, int offset, int length) argument
118 ByteString.checkArrayBounds(b, offset, length);
122 b, offset, length);
154 public byte[] copyTo(byte[] b, int offset) argument
157 if (offset <
206 equals(byte[] b, int offset, int length) argument
433 append(byte[] b, int offset, int length) argument
864 compareTo(byte[] b, int offset, int length) argument
988 copyTo(byte[] b, int offset) argument
1059 equals(byte[] b, int offset, int length) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DManagedObjectPath.java1299 * @param offset
1300 * The number of path elements (0 - means no offset, 1
1305 * If the offset is less than 0, or greater than the
1308 public ManagedObjectPath<?, ?> parent(int offset) argument
1310 if (offset < 0) {
1311 throw new IllegalArgumentException("Negative offset");
1314 if (offset > elements.size()) {
1319 // An offset of 0 leaves the path unchanged.
1320 if (offset == 0) {
1325 if (elements.size() == offset) {
[all...]
/forgerock/openam-v13/openam-rest/src/test/java/org/forgerock/openam/rest/query/
H A DQueryResponsePresentationTest.java218 private static QueryRequest makePagedQueryRequest(int size, int offset) { argument
221 given(request.getPagedResultsOffset()).willReturn(offset);
225 private QueryRequest makeDeprecatedQueryRequest(int pageSize, int offset) { argument
226 QueryRequest mockRequest = makePagedQueryRequest(pageSize, offset);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/
H A DManagedObjectPath.java1251 * @param offset
1252 * The number of path elements (0 - means no offset, 1
1257 * If the offset is less than 0, or greater than the
1260 public ManagedObjectPath<?, ?> parent(int offset) argument
1262 if (offset < 0) {
1263 throw new IllegalArgumentException("Negative offset");
1266 if (offset > elements.size()) {
1271 // An offset of 0 leaves the path unchanged.
1272 if (offset == 0) {
1277 if (elements.size() == offset) {
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DSASLContext.java566 * Unwrap the specified byte array using the provided offset and length
572 * @param offset
573 * The offset in the array.
575 * The length from the offset of the number of bytes to unwrap.
580 byte[] unwrap(final byte[] bytes, final int offset, final int len) argument
583 return saslServer.unwrap(bytes, offset, len);
589 * Wrap the specified clear byte array using the provided offset and length
595 * @param offset
596 * The offset into the clear byte array..
598 * The length from the offset o
603 wrap(final byte[] clearBytes, final int offset, final int len) argument
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DTaskRunner.java307 private void setInstanceTasksOffset(int offset) { argument
308 instanceTasksOffset = offset;

Completed in 85 milliseconds

123456789