Searched refs:read (Results 1 - 25 of 882) sorted by relevance

1234567891011>>

/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DOpenSSOServletInputStream.java47 public int read() throws IOException { method in class:OpenSSOServletInputStream
48 return is.read();
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAMechanismReaderAction.h42 * @return YES if the code is read, otherwise NO.
44 - (BOOL)read:(NSString *)code view:(UIView *)view;
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ui/
H A DmappingDetails.js27 syncConfig = openidm.read("config/sync");
46 m.recon = openidm.read("recon/" + lastRecon.result[0].reconId);
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DRecordingInputStream.java59 public int read() throws IOException { method in class:RecordingInputStream
60 int readByte = parentStream.read();
72 public int read(byte[] bytes) throws IOException { method in class:RecordingInputStream
73 int bytesRead = parentStream.read(bytes);
85 public int read(byte[] bytes, int i, int i1) throws IOException { method in class:RecordingInputStream
86 int bytesRead = parentStream.read(bytes, i, i1);
143 * Retrieve the bytes read from this input stream since the last
146 * @return the bytes read from this input stream since the last
/forgerock/opendj2/src/server/org/opends/server/types/
H A DRecordingInputStream.java58 public int read() throws IOException { method in class:RecordingInputStream
59 int readByte = parentStream.read();
71 public int read(byte[] bytes) throws IOException { method in class:RecordingInputStream
72 int bytesRead = parentStream.read(bytes);
84 public int read(byte[] bytes, int i, int i1) throws IOException { method in class:RecordingInputStream
85 int bytesRead = parentStream.read(bytes, i, i1);
142 * Retrieve the bytes read from this input stream since the last
145 * @return the bytes read from this input stream since the last
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DRecordingInputStream.java59 public int read() throws IOException { method in class:RecordingInputStream
60 int readByte = parentStream.read();
72 public int read(byte[] bytes) throws IOException { method in class:RecordingInputStream
73 int bytesRead = parentStream.read(bytes);
85 public int read(byte[] bytes, int i, int i1) throws IOException { method in class:RecordingInputStream
86 int bytesRead = parentStream.read(bytes, i, i1);
143 * Retrieve the bytes read from this input stream since the last
146 * @return the bytes read from this input stream since the last
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DRecordingInputStream.java59 public int read() throws IOException { method in class:RecordingInputStream
60 int readByte = parentStream.read();
72 public int read(byte[] bytes) throws IOException { method in class:RecordingInputStream
73 int bytesRead = parentStream.read(bytes);
85 public int read(byte[] bytes, int i, int i1) throws IOException { method in class:RecordingInputStream
86 int bytesRead = parentStream.read(bytes, i, i1);
143 * Retrieve the bytes read from this input stream since the last
146 * @return the bytes read from this input stream since the last
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DRecordingInputStream.java58 public int read() throws IOException { method in class:RecordingInputStream
59 int readByte = parentStream.read();
71 public int read(byte[] bytes) throws IOException { method in class:RecordingInputStream
72 int bytesRead = parentStream.read(bytes);
84 public int read(byte[] bytes, int i, int i1) throws IOException { method in class:RecordingInputStream
85 int bytesRead = parentStream.read(bytes, i, i1);
142 * Retrieve the bytes read from this input stream since the last
145 * @return the bytes read from this input stream since the last
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DUnicodeInputStreamReader.java40 * characters. It can be used to read files that have been produced using the
48 * the InputStream from which to read
60 * Read one character from the stream. See the other read method for
63 * @return -1 on end of input, otherwise the character that was read
65 public int read() throws IOException { method in class:UnicodeInputStreamReader
67 return read(cbuf, 0, 1) == 1 ? cbuf[0] : -1;
72 * at offset off. As characters are read, the following conversions are
84 * the maximum number of characters to read
85 * @return the number of characters read
87 public int read(cha method in class:UnicodeInputStreamReader
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DRecordingInputStream.java61 public int read() throws IOException { method in class:RecordingInputStream
62 int readByte = parentStream.read();
72 public int read(byte[] bytes) throws IOException { method in class:RecordingInputStream
73 int bytesRead = parentStream.read(bytes);
83 public int read(byte[] bytes, int i, int i1) throws IOException { method in class:RecordingInputStream
84 int bytesRead = parentStream.read(bytes, i, i1);
129 * Retrieve the bytes read from this input stream since the last
132 * @return the bytes read from this input stream since the last
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DUnicodeInputStreamReader.java40 * characters. It can be used to read files that have been produced using the
48 * the InputStream from which to read
60 * Read one character from the stream. See the other read method for
63 * @return -1 on end of input, otherwise the character that was read
65 public int read() throws IOException { method in class:UnicodeInputStreamReader
67 return read(cbuf, 0, 1) == 1 ? cbuf[0] : -1;
72 * at offset off. As characters are read, the following conversions are
84 * the maximum number of characters to read
85 * @return the number of characters read
87 public int read(cha method in class:UnicodeInputStreamReader
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DSASLByteChannel.java88 public int read(final ByteBuffer unwrappedData) throws IOException method in class:SASLByteChannel.ByteChannelImpl
92 // Only read and unwrap new data if needed.
95 final int read = doRecvAndUnwrap();
96 if (read <= 0)
98 // No data read or end of stream.
99 return read;
185 // Attempt to read and unwrap the next SASL packet.
195 // The channel read may only partially fill the buffer due to
197 // repeatedly read until the length has been read o
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/service/
H A DReplInputStream.java37 * This class creates an input stream that can be used to read entries generated
38 * by SynchroLDIF as if they were being read from another source like a file.
66 * Closes this input stream so that no more data may be read from it.
76 * @param b The array into which the data should be read.
77 * @param off The position in the array at which point the data read may be
79 * @param len The maximum number of bytes that may be read into the
82 * @return The number of bytes read from the input stream into the provided
88 public int read(byte[] b, int off, int len) method in class:ReplInputStream
114 // Some data was left from the previous entry, feed the read with this
140 * @return The byte read fro
146 public int read() method in class:ReplInputStream
[all...]
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DSASLByteChannel.java87 public int read(final ByteBuffer unwrappedData) throws IOException method in class:SASLByteChannel.ByteChannelImpl
91 // Only read and unwrap new data if needed.
94 final int read = doRecvAndUnwrap();
95 if (read <= 0)
97 // No data read or end of stream.
98 return read;
184 // Attempt to read and unwrap the next SASL packet.
194 // The channel read may only partially fill the buffer due to
196 // repeatedly read until the length has been read o
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DSASLByteChannel.java88 public int read(final ByteBuffer unwrappedData) throws IOException method in class:SASLByteChannel.ByteChannelImpl
92 // Only read and unwrap new data if needed.
95 final int read = doRecvAndUnwrap();
96 if (read <= 0)
98 // No data read or end of stream.
99 return read;
185 // Attempt to read and unwrap the next SASL packet.
195 // The channel read may only partially fill the buffer due to
197 // repeatedly read until the length has been read o
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/service/
H A DReplInputStream.java37 * This class creates an input stream that can be used to read entries generated
38 * by SynchroLDIF as if they were being read from another source like a file.
66 * Closes this input stream so that no more data may be read from it.
76 * @param b The array into which the data should be read.
77 * @param off The position in the array at which point the data read may be
79 * @param len The maximum number of bytes that may be read into the
82 * @return The number of bytes read from the input stream into the provided
88 public int read(byte[] b, int off, int len) method in class:ReplInputStream
114 // Some data was left from the previous entry, feed the read with this
140 * @return The byte read fro
146 public int read() method in class:ReplInputStream
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DSASLByteChannel.java88 public int read(final ByteBuffer unwrappedData) throws IOException method in class:SASLByteChannel.ByteChannelImpl
92 // Only read and unwrap new data if needed.
95 final int read = doRecvAndUnwrap();
96 if (read <= 0)
98 // No data read or end of stream.
99 return read;
185 // Attempt to read and unwrap the next SASL packet.
195 // The channel read may only partially fill the buffer due to
197 // repeatedly read until the length has been read o
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/service/
H A DReplInputStream.java37 * This class creates an input stream that can be used to read entries generated
38 * by SynchroLDIF as if they were being read from another source like a file.
66 * Closes this input stream so that no more data may be read from it.
76 * @param b The array into which the data should be read.
77 * @param off The position in the array at which point the data read may be
79 * @param len The maximum number of bytes that may be read into the
82 * @return The number of bytes read from the input stream into the provided
88 public int read(byte[] b, int off, int len) method in class:ReplInputStream
114 // Some data was left from the previous entry, feed the read with this
140 * @return The byte read fro
146 public int read() method in class:ReplInputStream
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DSASLByteChannel.java87 public int read(final ByteBuffer unwrappedData) throws IOException method in class:SASLByteChannel.ByteChannelImpl
91 // Only read and unwrap new data if needed.
94 final int read = doRecvAndUnwrap();
95 if (read <= 0)
97 // No data read or end of stream.
98 return read;
184 // Attempt to read and unwrap the next SASL packet.
194 // The channel read may only partially fill the buffer due to
196 // repeatedly read until the length has been read o
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DSASLByteChannel.java74 public int read(final ByteBuffer unwrappedData) throws IOException method in class:SASLByteChannel.ByteChannelImpl
78 // Only read and unwrap new data if needed.
81 final int read = doRecvAndUnwrap();
82 if (read <= 0)
84 // No data read or end of stream.
85 return read;
169 /** Attempt to read and unwrap the next SASL packet. */
179 // The channel read may only partially fill the buffer due to
181 // repeatedly read until the length has been read o
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DHexToBase64.java57 int read = hexString.length();
58 byte[] byteArray = new byte[read/2];
59 for (int i=0, j=0; i < read; i++, j++) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DHexToBase64.java57 int read = hexString.length();
58 byte[] byteArray = new byte[read/2];
59 for (int i=0, j=0; i < read; i++, j++) {
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DResource.java42 * This utility is used to read any resource such as dtd file or xml file from a
51 * @param fileName Resource to be read.
55 public static String read(String fileName, Class cl) { method in class:Resource
75 data = Resource.read(new InputStreamReader(in));
80 }// read()
88 public static String read(Reader aReader) { method in class:Resource
94 while ((count = bReader.read(data)) != -1) {
110 public static String read(String fileName) { method in class:Resource
111 return read(fileName, Resource.class);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DResource.java42 * This utility is used to read any resource such as dtd file or xml file from a
51 * @param fileName Resource to be read.
55 public static String read(String fileName, Class cl) { method in class:Resource
75 data = Resource.read(new InputStreamReader(in));
80 }// read()
88 public static String read(Reader aReader) { method in class:Resource
94 while ((count = bReader.read(data)) != -1) {
110 public static String read(String fileName) { method in class:Resource
111 return read(fileName, Resource.class);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DSubjectLocality.java80 String read = elt.getAttribute("IPAddress");
81 if ((read != null) && (read.length() != 0)) {
82 _ipAddress= read;
84 read = elt.getAttribute("DNSAddress");
85 if ((read != null) && (read.length() != 0)) {
86 _dnsAddress=read;

Completed in 175 milliseconds

1234567891011>>