Searched refs:entryBytes (Results 1 - 25 of 51) sorted by relevance

123

/forgerock/opendj-b2.6/src/server/org/opends/server/tools/makeldif/
H A DMakeLDIFInputStream.java66 private ByteBuffer entryBytes; field in class:MakeLDIFInputStream
99 entryBytes = null;
152 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
161 return (0xFF & entryBytes.get());
193 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
202 int bytesRead = Math.min(len, entryBytes.remaining());
203 entryBytes.get(b, off, bytesRead);
292 entryBytes
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/makeldif/
H A DMakeLDIFInputStream.java65 private ByteBuffer entryBytes; field in class:MakeLDIFInputStream
98 entryBytes = null;
151 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
160 return (0xFF & entryBytes.get());
192 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
201 int bytesRead = Math.min(len, entryBytes.remaining());
202 entryBytes.get(b, off, bytesRead);
291 entryBytes
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/makeldif/
H A DMakeLDIFInputStream.java66 private ByteBuffer entryBytes; field in class:MakeLDIFInputStream
99 entryBytes = null;
152 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
161 return (0xFF & entryBytes.get());
193 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
202 int bytesRead = Math.min(len, entryBytes.remaining());
203 entryBytes.get(b, off, bytesRead);
292 entryBytes
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/makeldif/
H A DMakeLDIFInputStream.java66 private ByteBuffer entryBytes; field in class:MakeLDIFInputStream
99 entryBytes = null;
152 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
161 return (0xFF & entryBytes.get());
193 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
202 int bytesRead = Math.min(len, entryBytes.remaining());
203 entryBytes.get(b, off, bytesRead);
292 entryBytes
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/makeldif/
H A DMakeLDIFInputStream.java65 private ByteBuffer entryBytes; field in class:MakeLDIFInputStream
98 entryBytes = null;
151 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
160 return (0xFF & entryBytes.get());
192 if ((entryBytes == null) || (! entryBytes.hasRemaining()))
201 int bytesRead = Math.min(len, entryBytes.remaining());
202 entryBytes.get(b, off, bytesRead);
291 entryBytes
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/makeldif/
H A DMakeLDIFInputStream.java70 private ByteBuffer entryBytes; field in class:MakeLDIFInputStream
103 entryBytes = null;
156 if ((entryBytes == null || !entryBytes.hasRemaining())
163 return 0xFF & entryBytes.get();
195 if ((entryBytes == null || !entryBytes.hasRemaining())
202 int bytesRead = Math.min(len, entryBytes.remaining());
203 entryBytes.get(b, off, bytesRead);
288 entryBytes
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/
H A DEntryMsg.java50 * @param entryBytes The bytes of the entry.
56 byte[] entryBytes,
60 this.entryByteArray = new byte[entryBytes.length];
61 System.arraycopy(entryBytes, 0, this.entryByteArray, 0, entryBytes.length);
70 * @param entryBytes The bytes of the entry.
78 byte[] entryBytes,
85 System.arraycopy(entryBytes, pos, this.entryByteArray, 0, length);
159 byte[] entryBytes = entryByteArray;
163 1 + entryBytes
53 EntryMsg( int sender, int destination, byte[] entryBytes, int msgId) argument
75 EntryMsg( int serverID, int i, byte[] entryBytes, int pos, int length, int msgId) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/
H A DEntryMsg.java50 * @param entryBytes The bytes of the entry.
56 byte[] entryBytes,
60 this.entryByteArray = new byte[entryBytes.length];
61 System.arraycopy(entryBytes, 0, this.entryByteArray, 0, entryBytes.length);
70 * @param entryBytes The bytes of the entry.
78 byte[] entryBytes,
85 System.arraycopy(entryBytes, pos, this.entryByteArray, 0, length);
159 byte[] entryBytes = entryByteArray;
163 1 + entryBytes
53 EntryMsg( int sender, int destination, byte[] entryBytes, int msgId) argument
75 EntryMsg( int serverID, int i, byte[] entryBytes, int pos, int length, int msgId) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DEntryMsg.java50 * @param entryBytes The bytes of the entry.
56 byte[] entryBytes,
60 this.entryByteArray = new byte[entryBytes.length];
61 System.arraycopy(entryBytes, 0, this.entryByteArray, 0, entryBytes.length);
70 * @param entryBytes The bytes of the entry.
78 byte[] entryBytes,
85 System.arraycopy(entryBytes, pos, this.entryByteArray, 0, length);
159 byte[] entryBytes = entryByteArray;
163 1 + entryBytes
53 EntryMsg( int sender, int destination, byte[] entryBytes, int msgId) argument
75 EntryMsg( int serverID, int i, byte[] entryBytes, int pos, int length, int msgId) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DEntryMsg.java48 * @param entryBytes The bytes of the entry.
51 public EntryMsg(int serverID, int destination, byte[] entryBytes, int msgId) argument
53 this(serverID, destination, entryBytes, 0, entryBytes.length, msgId);
61 * @param entryBytes The bytes of the entry.
66 public EntryMsg(int serverID, int destination, byte[] entryBytes, int startPos, argument
71 System.arraycopy(entryBytes, startPos, this.entryByteArray, 0, length);
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/
H A DEntryMsg.java48 * @param entryBytes The bytes of the entry.
51 public EntryMsg(int serverID, int destination, byte[] entryBytes, int msgId) argument
53 this(serverID, destination, entryBytes, 0, entryBytes.length, msgId);
61 * @param entryBytes The bytes of the entry.
66 public EntryMsg(int serverID, int destination, byte[] entryBytes, int startPos, argument
71 System.arraycopy(entryBytes, startPos, this.entryByteArray, 0, length);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/
H A DEntryMsg.java49 * @param entryBytes The bytes of the entry.
52 public EntryMsg(int serverID, int destination, byte[] entryBytes, int msgId) argument
54 this(serverID, destination, entryBytes, 0, entryBytes.length, msgId);
62 * @param entryBytes The bytes of the entry.
67 public EntryMsg(int serverID, int destination, byte[] entryBytes, int startPos, argument
72 System.arraycopy(entryBytes, startPos, this.entryByteArray, 0, length);
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/plugin/
H A DReplLDIFOutputStream.java115 byte[] entryBytes = entryBuffer.getBytes();
116 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj2/src/server/org/opends/server/replication/plugin/
H A DReplLDIFOutputStream.java114 byte[] entryBytes = entryBuffer.getBytes();
115 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/plugin/
H A DReplLDIFOutputStream.java115 byte[] entryBytes = entryBuffer.getBytes();
116 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/plugin/
H A DReplLDIFOutputStream.java115 byte[] entryBytes = entryBuffer.getBytes();
116 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj2-hg/src/server/org/opends/server/replication/plugin/
H A DReplLDIFOutputStream.java114 byte[] entryBytes = entryBuffer.getBytes();
115 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/
H A DReplLDIFOutputStream.java111 byte[] entryBytes = entryBuffer.getBytes();
112 checkSum.update(entryBytes, 0, entryBytes.length);
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DEntryCachePreloader.java294 ID2Entry.entryFromDatabase(ByteString.wrap(preloadEntry.entryBytes),
406 public byte[] entryBytes; field in class:EntryCachePreloader.PreloadEntry
414 public PreloadEntry(byte[] entryBytes, byte[] entryIDBytes) { argument
415 this.entryBytes = entryBytes;
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DEntryCachePreloader.java295 ID2Entry.entryFromDatabase(ByteString.wrap(preloadEntry.entryBytes),
407 public byte[] entryBytes; field in class:EntryCachePreloader.PreloadEntry
415 public PreloadEntry(byte[] entryBytes, byte[] entryIDBytes) { argument
416 this.entryBytes = entryBytes;
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DEntryCachePreloader.java295 ID2Entry.entryFromDatabase(ByteString.wrap(preloadEntry.entryBytes),
407 public byte[] entryBytes; field in class:EntryCachePreloader.PreloadEntry
415 public PreloadEntry(byte[] entryBytes, byte[] entryIDBytes) { argument
416 this.entryBytes = entryBytes;
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DEntryCachePreloader.java294 ID2Entry.entryFromDatabase(ByteString.wrap(preloadEntry.entryBytes),
406 public byte[] entryBytes; field in class:EntryCachePreloader.PreloadEntry
414 public PreloadEntry(byte[] entryBytes, byte[] entryIDBytes) { argument
415 this.entryBytes = entryBytes;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DEntryCachePreloader.java295 ID2Entry.entryFromDatabase(ByteString.wrap(preloadEntry.entryBytes),
407 public byte[] entryBytes; field in class:EntryCachePreloader.PreloadEntry
415 public PreloadEntry(byte[] entryBytes, byte[] entryIDBytes) { argument
416 this.entryBytes = entryBytes;
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/service/
H A DReplicationDomain.java1841 byte[] entryBytes = entryMsg.getEntryBytes();
1842 ieContext.updateCounters(countEntryLimits(entryBytes));
1872 return entryBytes;
1935 * @param entryBytes the set of bytes containing one or more entries.
1938 private int countEntryLimits(byte[] entryBytes) argument
1940 return countEntryLimits(entryBytes, 0, entryBytes.length);
1948 * @param entryBytes the set of bytes containing one or more entries.
1951 private int countEntryLimits(byte[] entryBytes, int pos, int length) argument
1957 if ((entryBytes[po
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/service/
H A DReplicationDomain.java1929 byte[] entryBytes = entryMsg.getEntryBytes();
1930 ieCtx.updateCounters(countEntryLimits(entryBytes));
1959 return entryBytes;
2019 * @param entryBytes the set of bytes containing one or more entries.
2022 private int countEntryLimits(byte[] entryBytes) argument
2024 return countEntryLimits(entryBytes, 0, entryBytes.length);
2032 * @param entryBytes the set of bytes containing one or more entries.
2035 private int countEntryLimits(byte[] entryBytes, int pos, int length) argument
2041 if ((entryBytes[po
[all...]

Completed in 1065 milliseconds

123