Searched defs:begin (Results 1 - 25 of 54) sorted by relevance

123

/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DIDSetIterator.java58 * @param begin The entry ID of the first entry that should be returned, or
61 public IDSetIterator(long[] entryIDList, EntryID begin) argument
65 if (begin == null)
73 if (entryIDList[i] == begin.longValue())
H A DEntryIDSet.java700 * @param begin The entry ID of the first entry to return in the list.
704 public Iterator<EntryID> iterator(EntryID begin) argument
714 return new IDSetIterator(values, begin);
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DIDSetIterator.java59 * @param begin The entry ID of the first entry that should be returned, or
62 public IDSetIterator(long[] entryIDList, EntryID begin) argument
66 if (begin == null)
74 if (entryIDList[i] == begin.longValue())
H A DEntryIDSet.java701 * @param begin The entry ID of the first entry to return in the list.
705 public Iterator<EntryID> iterator(EntryID begin) argument
715 return new IDSetIterator(values, begin);
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DIDSetIterator.java59 * @param begin The entry ID of the first entry that should be returned, or
62 public IDSetIterator(long[] entryIDList, EntryID begin) argument
66 if (begin == null)
74 if (entryIDList[i] == begin.longValue())
H A DEntryIDSet.java701 * @param begin The entry ID of the first entry to return in the list.
705 public Iterator<EntryID> iterator(EntryID begin) argument
715 return new IDSetIterator(values, begin);
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DIDSetIterator.java58 * @param begin The entry ID of the first entry that should be returned, or
61 public IDSetIterator(long[] entryIDList, EntryID begin) argument
65 if (begin == null)
73 if (entryIDList[i] == begin.longValue())
H A DEntryIDSet.java700 * @param begin The entry ID of the first entry to return in the list.
704 public Iterator<EntryID> iterator(EntryID begin) argument
714 return new IDSetIterator(values, begin);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DIDSetIterator.java59 * @param begin The entry ID of the first entry that should be returned, or
62 public IDSetIterator(long[] entryIDList, EntryID begin) argument
66 if (begin == null)
74 if (entryIDList[i] == begin.longValue())
H A DEntryIDSet.java701 * @param begin The entry ID of the first entry to return in the list.
705 public Iterator<EntryID> iterator(EntryID begin) argument
715 return new IDSetIterator(values, begin);
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexInputBuffer.java54 private final long begin; field in class:IndexInputBuffer
86 * @param begin
98 long begin, long end, int id, int cacheSize) throws IOException
102 this.begin = begin;
117 channel.position(begin + offset);
118 long leftToRead = end - (begin + offset);
149 boolean ret = ((begin + offset) >= end);
97 IndexInputBuffer(IndexManager indexMgr, FileChannel channel, long begin, long end, int id, int cacheSize) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexInputBuffer.java55 private final long begin; field in class:IndexInputBuffer
87 * @param begin
99 long begin, long end, int id, int cacheSize) throws IOException
103 this.begin = begin;
118 channel.position(begin + offset);
119 long leftToRead = end - (begin + offset);
150 boolean ret = ((begin + offset) >= end);
98 IndexInputBuffer(IndexManager indexMgr, FileChannel channel, long begin, long end, int id, int cacheSize) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexInputBuffer.java55 private final long begin; field in class:IndexInputBuffer
87 * @param begin
99 long begin, long end, int id, int cacheSize) throws IOException
103 this.begin = begin;
118 channel.position(begin + offset);
119 long leftToRead = end - (begin + offset);
150 boolean ret = ((begin + offset) >= end);
98 IndexInputBuffer(IndexManager indexMgr, FileChannel channel, long begin, long end, int id, int cacheSize) argument
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexInputBuffer.java54 private final long begin; field in class:IndexInputBuffer
86 * @param begin
98 long begin, long end, int id, int cacheSize) throws IOException
102 this.begin = begin;
117 channel.position(begin + offset);
118 long leftToRead = end - (begin + offset);
149 boolean ret = ((begin + offset) >= end);
97 IndexInputBuffer(IndexManager indexMgr, FileChannel channel, long begin, long end, int id, int cacheSize) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/importLDIF/
H A DIndexInputBuffer.java55 private final long begin; field in class:IndexInputBuffer
87 * @param begin
99 long begin, long end, int id, int cacheSize) throws IOException
103 this.begin = begin;
118 channel.position(begin + offset);
119 long leftToRead = end - (begin + offset);
150 boolean ret = ((begin + offset) >= end);
98 IndexInputBuffer(IndexManager indexMgr, FileChannel channel, long begin, long end, int id, int cacheSize) argument
/forgerock/web-agents-v4/source/
H A Dconfig_xml.c512 char *begin, *stream = NULL; local
541 begin = strstr(xml, "![CDATA[");
542 if (begin != NULL) {
543 char *end = strstr(begin + 8, "]]>");
545 stream = begin + 8;
546 data_sz = end - (begin + 8);
H A Dsession_xml.c158 char *begin, *stream = NULL; local
170 begin = strstr(xml, "![CDATA[");
171 if (begin != NULL) {
172 char *end = strstr(begin + 8, "]]>");
174 stream = begin + 8;
175 data_sz = end - (begin + 8);
H A Dpolicy_xml.c307 char *begin, *stream = NULL; local
320 begin = strstr(xml, "![CDATA[");
321 if (begin != NULL) {
322 char *end = strstr(begin + 8, "]]>");
324 stream = begin + 8;
325 data_sz = end - (begin + 8);
H A Dnet_ops.c240 char *begin = strstr(req_data->data, "Response authIdentifier=\""); local
241 if (begin != NULL) {
242 char *end = strstr(begin + 25, "\"");
244 *token = strndup(begin + 25, end - begin - 25);
377 char *begin = strstr(req_data->data, "LoginStatus status=\"success\" ssoToken=\""); local
378 if (begin != NULL) {
379 char *end = strstr(begin + 39, "\"");
381 *token = strndup(begin + 39, end - begin
[all...]
H A Dutility.c1532 char *begin, *end; local
1567 begin = strstr(token, "@");
1568 if (begin != NULL) {
1569 end = strstr(begin + 1, "#");
1571 size_t ssz = end - begin - 1;
1573 (unsigned char *) base64_decode(begin + 1, &ssz) : NULL;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DEntryIDSet.java84 Iterator<EntryID> iterator(EntryID begin); argument
268 public Iterator<EntryID> iterator(EntryID begin) argument
270 return new IDSetIterator(entryIDs, begin == null ? 0 : begin.longValue());
366 public Iterator<EntryID> iterator(EntryID begin) argument
395 IDSetIterator(long[] entryIDSet, long begin) argument
398 currentIndex = Math.max(0, Arrays.binarySearch(entryIDSet, begin));
888 * @param begin
892 public Iterator<EntryID> iterator(EntryID begin) argument
894 return concreteImpl.iterator(begin);
[all...]
/forgerock/opendj2/ext/svnkit/lib/
H A Djsch.agentproxy.core-0.0.7.jar ... foo public void putByte (byte[], int, int) byte[] foo int begin int length public void putString (byte[]) byte[] foo public void ...
H A Djsch.agentproxy.connector-factory-0.0.7.jar ... foo public void putByte (byte[], int, int) byte[] foo int begin int length public void putString (byte[]) byte[] foo public void ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Djsch.agentproxy.core-0.0.7.jar ... foo public void putByte (byte[], int, int) byte[] foo int begin int length public void putString (byte[]) byte[] foo public void ...
H A Djsch.agentproxy.connector-factory-0.0.7.jar ... foo public void putByte (byte[], int, int) byte[] foo int begin int length public void putString (byte[]) byte[] foo public void ...

Completed in 77 milliseconds

123