Searched refs:buffer (Results 1 - 25 of 2024) sorted by relevance

1234567891011>>

/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/
H A DReplicationMsg.java125 * @param buffer
138 public static ReplicationMsg generateMsg(byte[] buffer, short protocolVersion) argument
142 switch (buffer[0])
146 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
149 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
151 return new ModifyMsg(buffer);
153 return ModifyMsg.createV1(buffer);
156 return new AddMsg(buffer);
159 return new DeleteMsg(buffer);
162 return new ModifyDNMsg(buffer);
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/
H A DReplicationMsg.java125 * @param buffer
138 public static ReplicationMsg generateMsg(byte[] buffer, short protocolVersion) argument
142 switch (buffer[0])
146 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
149 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
151 return new ModifyMsg(buffer);
153 return ModifyMsg.createV1(buffer);
156 return new AddMsg(buffer);
159 return new DeleteMsg(buffer);
162 return new ModifyDNMsg(buffer);
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DReplicationMsg.java125 * @param buffer
138 public static ReplicationMsg generateMsg(byte[] buffer, short protocolVersion) argument
142 switch (buffer[0])
146 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
149 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
151 return new ModifyMsg(buffer);
153 return ModifyMsg.createV1(buffer);
156 return new AddMsg(buffer);
159 return new DeleteMsg(buffer);
162 return new ModifyDNMsg(buffer);
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/asn1/
H A DByteSequenceOutputStream.java42 private final ByteStringBuilder buffer; field in class:ByteSequenceOutputStream
48 * @param buffer
55 ByteSequenceOutputStream(ByteStringBuilder buffer, int maxInternalBufferSize) argument
57 this.buffer = buffer;
66 buffer.append(((byte) (i & 0xFF)));
73 buffer.append(bytes);
80 buffer.append(bytes, i, i1);
89 return buffer.length();
106 buffer
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/asn1/
H A DByteSequenceOutputStream.java41 private final ByteStringBuilder buffer; field in class:ByteSequenceOutputStream
47 * @param buffer
54 ByteSequenceOutputStream(ByteStringBuilder buffer, int maxInternalBufferSize) argument
56 this.buffer = buffer;
65 buffer.append(((byte) (i & 0xFF)));
72 buffer.append(bytes);
79 buffer.append(bytes, i, i1);
88 return buffer.length();
105 buffer
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/asn1/
H A DByteSequenceOutputStream.java42 private final ByteStringBuilder buffer; field in class:ByteSequenceOutputStream
48 * @param buffer
55 ByteSequenceOutputStream(ByteStringBuilder buffer, int maxInternalBufferSize) argument
57 this.buffer = buffer;
66 buffer.append(((byte) (i & 0xFF)));
73 buffer.append(bytes);
80 buffer.append(bytes, i, i1);
89 return buffer.length();
106 buffer
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/asn1/
H A DByteSequenceOutputStream.java42 private final ByteStringBuilder buffer; field in class:ByteSequenceOutputStream
48 * @param buffer
55 ByteSequenceOutputStream(ByteStringBuilder buffer, int maxInternalBufferSize) argument
57 this.buffer = buffer;
66 buffer.append(((byte) (i & 0xFF)));
73 buffer.append(bytes);
80 buffer.append(bytes, i, i1);
89 return buffer.length();
106 buffer
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/asn1/
H A DByteSequenceOutputStream.java41 private final ByteStringBuilder buffer; field in class:ByteSequenceOutputStream
47 * @param buffer
54 ByteSequenceOutputStream(ByteStringBuilder buffer, int maxInternalBufferSize) argument
56 this.buffer = buffer;
65 buffer.append(((byte) (i & 0xFF)));
72 buffer.append(bytes);
79 buffer.append(bytes, i, i1);
88 return buffer.length();
105 buffer
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DReplicationMsg.java123 * @param buffer
134 public static ReplicationMsg generateMsg(byte[] buffer, short protocolVersion) argument
137 switch (buffer[0])
141 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
144 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
146 return new ModifyMsg(buffer);
148 return ModifyMsg.createV1(buffer);
151 return new AddMsg(buffer);
154 return new DeleteMsg(buffer);
157 return new ModifyDNMsg(buffer);
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/
H A DReplicationMsg.java123 * @param buffer
134 public static ReplicationMsg generateMsg(byte[] buffer, short protocolVersion) argument
137 switch (buffer[0])
141 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
144 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
146 return new ModifyMsg(buffer);
148 return ModifyMsg.createV1(buffer);
151 return new AddMsg(buffer);
154 return new DeleteMsg(buffer);
157 return new ModifyDNMsg(buffer);
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/
H A DReplicationMsg.java123 * @param buffer
134 public static ReplicationMsg generateMsg(byte[] buffer, short protocolVersion) argument
137 switch (buffer[0])
141 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
144 ProtocolVersion.REPLICATION_PROTOCOL_V1, buffer[0]);
146 return new ModifyMsg(buffer);
148 return ModifyMsg.createV1(buffer);
151 return new AddMsg(buffer);
154 return new DeleteMsg(buffer);
157 return new ModifyDNMsg(buffer);
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/ldap/
H A DLDAPControl.java132 * buffer.
134 * @param buffer The buffer to which the information should be appended.
136 public void toString(StringBuilder buffer) argument
138 buffer.append("LDAPControl(oid=");
139 buffer.append(getOID());
140 buffer.append(", criticality=");
141 buffer.append(isCritical());
145 buffer.append(", value=");
146 value.toHexPlusAscii(buffer,
161 toString(StringBuilder buffer, int indent) argument
[all...]
H A DLDAPModification.java144 StringBuilder buffer = new StringBuilder();
145 toString(buffer);
146 return buffer.toString();
153 * buffer.
155 * @param buffer The buffer to which the information should be appended.
157 public void toString(StringBuilder buffer) argument
159 buffer.append("LDAPModification(type=");
160 buffer.append(String.valueOf(modificationType));
161 buffer
176 toString(StringBuilder buffer, int indent) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/ldap/
H A DLDAPControl.java131 * buffer.
133 * @param buffer The buffer to which the information should be appended.
135 public void toString(StringBuilder buffer) argument
137 buffer.append("LDAPControl(oid=");
138 buffer.append(getOID());
139 buffer.append(", criticality=");
140 buffer.append(isCritical());
144 buffer.append(", value=");
145 value.toHexPlusAscii(buffer,
160 toString(StringBuilder buffer, int indent) argument
[all...]
H A DLDAPModification.java143 StringBuilder buffer = new StringBuilder();
144 toString(buffer);
145 return buffer.toString();
152 * buffer.
154 * @param buffer The buffer to which the information should be appended.
156 public void toString(StringBuilder buffer) argument
158 buffer.append("LDAPModification(type=");
159 buffer.append(String.valueOf(modificationType));
160 buffer
175 toString(StringBuilder buffer, int indent) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/ldap/
H A DLDAPControl.java132 * buffer.
134 * @param buffer The buffer to which the information should be appended.
136 public void toString(StringBuilder buffer) argument
138 buffer.append("LDAPControl(oid=");
139 buffer.append(getOID());
140 buffer.append(", criticality=");
141 buffer.append(isCritical());
145 buffer.append(", value=");
146 value.toHexPlusAscii(buffer,
161 toString(StringBuilder buffer, int indent) argument
[all...]
H A DLDAPModification.java144 StringBuilder buffer = new StringBuilder();
145 toString(buffer);
146 return buffer.toString();
153 * buffer.
155 * @param buffer The buffer to which the information should be appended.
157 public void toString(StringBuilder buffer) argument
159 buffer.append("LDAPModification(type=");
160 buffer.append(String.valueOf(modificationType));
161 buffer
176 toString(StringBuilder buffer, int indent) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/ldap/
H A DLDAPControl.java132 * buffer.
134 * @param buffer The buffer to which the information should be appended.
136 public void toString(StringBuilder buffer) argument
138 buffer.append("LDAPControl(oid=");
139 buffer.append(getOID());
140 buffer.append(", criticality=");
141 buffer.append(isCritical());
145 buffer.append(", value=");
146 value.toHexPlusAscii(buffer,
161 toString(StringBuilder buffer, int indent) argument
[all...]
H A DLDAPModification.java144 StringBuilder buffer = new StringBuilder();
145 toString(buffer);
146 return buffer.toString();
153 * buffer.
155 * @param buffer The buffer to which the information should be appended.
157 public void toString(StringBuilder buffer) argument
159 buffer.append("LDAPModification(type=");
160 buffer.append(String.valueOf(modificationType));
161 buffer
176 toString(StringBuilder buffer, int indent) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/ldap/
H A DLDAPControl.java131 * buffer.
133 * @param buffer The buffer to which the information should be appended.
135 public void toString(StringBuilder buffer) argument
137 buffer.append("LDAPControl(oid=");
138 buffer.append(getOID());
139 buffer.append(", criticality=");
140 buffer.append(isCritical());
144 buffer.append(", value=");
145 value.toHexPlusAscii(buffer,
160 toString(StringBuilder buffer, int indent) argument
[all...]
H A DLDAPModification.java143 StringBuilder buffer = new StringBuilder();
144 toString(buffer);
145 return buffer.toString();
152 * buffer.
154 * @param buffer The buffer to which the information should be appended.
156 public void toString(StringBuilder buffer) argument
158 buffer.append("LDAPModification(type=");
159 buffer.append(String.valueOf(modificationType));
160 buffer
175 toString(StringBuilder buffer, int indent) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/
H A DLDAPControl.java130 * buffer.
132 * @param buffer The buffer to which the information should be appended.
134 public void toString(StringBuilder buffer) argument
136 buffer.append("LDAPControl(oid=");
137 buffer.append(getOID());
138 buffer.append(", criticality=");
139 buffer.append(isCritical());
143 buffer.append(", value=");
144 buffer
159 toString(StringBuilder buffer, int indent) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DLDIFImportResult.java137 StringBuilder buffer = new StringBuilder();
138 toString(buffer);
139 return buffer.toString();
146 * to the provided buffer.
148 * @param buffer The buffer to which the information should be
151 public void toString(StringBuilder buffer) argument
153 buffer.append("LDIFImportResult(entriesRead=");
154 buffer.append(entriesRead);
155 buffer
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DLDIFImportResult.java136 StringBuilder buffer = new StringBuilder();
137 toString(buffer);
138 return buffer.toString();
145 * to the provided buffer.
147 * @param buffer The buffer to which the information should be
150 public void toString(StringBuilder buffer) argument
152 buffer.append("LDIFImportResult(entriesRead=");
153 buffer.append(entriesRead);
154 buffer
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DLDIFImportResult.java137 StringBuilder buffer = new StringBuilder();
138 toString(buffer);
139 return buffer.toString();
146 * to the provided buffer.
148 * @param buffer The buffer to which the information should be
151 public void toString(StringBuilder buffer) argument
153 buffer.append("LDIFImportResult(entriesRead=");
154 buffer.append(entriesRead);
155 buffer
[all...]

Completed in 2726 milliseconds

1234567891011>>