Searched refs:available (Results 1 - 25 of 167) sorted by relevance

1234567

/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DWebServiceRequestInputStream.java47 public int available() throws IOException { method in class:WebServiceRequestInputStream
48 return getInputStream().available();
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/security/util/
H A DDerInputBuffer.java66 int len = available();
96 int max = this.available();
97 if (other.available() != max)
108 if (len > available())
118 if (len > available())
156 int len = available();
175 int len = available();
/forgerock/openam/openam-shared/src/main/java/com/iplanet/security/util/
H A DDerInputBuffer.java66 int len = available();
96 int max = this.available();
97 if (other.available() != max)
108 if (len > available())
118 if (len > available())
156 int len = available();
175 int len = available();
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DRecordingInputStream.java106 public int available() throws IOException { method in class:RecordingInputStream
107 return parentStream.available();
/forgerock/opendj-b2.6/src/server/org/opends/server/util/
H A DSizeLimitInputStream.java59 public int available() throws IOException method in class:SizeLimitInputStream
61 int streamAvail = parentStream.available();
/forgerock/opendj2/src/server/org/opends/server/types/
H A DRecordingInputStream.java105 public int available() throws IOException { method in class:RecordingInputStream
106 return parentStream.available();
/forgerock/opendj2/src/server/org/opends/server/util/
H A DSizeLimitInputStream.java58 public int available() throws IOException method in class:SizeLimitInputStream
60 int streamAvail = parentStream.available();
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DRecordingInputStream.java106 public int available() throws IOException { method in class:RecordingInputStream
107 return parentStream.available();
/forgerock/opendj2.6.2/src/server/org/opends/server/util/
H A DSizeLimitInputStream.java59 public int available() throws IOException method in class:SizeLimitInputStream
61 int streamAvail = parentStream.available();
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DRecordingInputStream.java106 public int available() throws IOException { method in class:RecordingInputStream
107 return parentStream.available();
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/
H A DSizeLimitInputStream.java59 public int available() throws IOException method in class:SizeLimitInputStream
61 int streamAvail = parentStream.available();
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DRecordingInputStream.java105 public int available() throws IOException { method in class:RecordingInputStream
106 return parentStream.available();
/forgerock/opendj2-hg/src/server/org/opends/server/util/
H A DSizeLimitInputStream.java58 public int available() throws IOException method in class:SizeLimitInputStream
60 int streamAvail = parentStream.available();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DRecordingInputStream.java100 public int available() throws IOException { method in class:RecordingInputStream
101 return parentStream.available();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DSizeLimitInputStream.java57 public int available() throws IOException method in class:SizeLimitInputStream
59 int streamAvail = parentStream.available();
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/security/x509/
H A DIssuingDistributionPointExtension.java252 if (val.data == null || val.data.available() == 0) {
275 if (val.data.available() == 0) {
286 if (val.data.available() == 0) {
302 if (val.data.available() == 0) {
312 if (val.data.available() == 0) {
322 if (val.data.available() == 0) {
/forgerock/openam/openam-shared/src/main/java/com/iplanet/security/x509/
H A DIssuingDistributionPointExtension.java252 if (val.data == null || val.data.available() == 0) {
275 if (val.data.available() == 0) {
286 if (val.data.available() == 0) {
302 if (val.data.available() == 0) {
312 if (val.data.available() == 0) {
322 if (val.data.available() == 0) {
/forgerock/opendj-b2.6/src/server/org/opends/server/util/table/
H A DTextTablePrinter.java315 int available = totalWidth - minWidth;
317 if (expandableColumnSize > available) {
328 ((actualSize * available) / expandableColumnSize);
/forgerock/opendj2/src/server/org/opends/server/util/table/
H A DTextTablePrinter.java314 int available = totalWidth - minWidth;
316 if (expandableColumnSize > available) {
327 ((actualSize * available) / expandableColumnSize);
/forgerock/opendj2.6.2/src/server/org/opends/server/util/table/
H A DTextTablePrinter.java315 int available = totalWidth - minWidth;
317 if (expandableColumnSize > available) {
328 ((actualSize * available) / expandableColumnSize);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/table/
H A DTextTablePrinter.java315 int available = totalWidth - minWidth;
317 if (expandableColumnSize > available) {
328 ((actualSize * available) / expandableColumnSize);
/forgerock/opendj2-hg/src/server/org/opends/server/util/table/
H A DTextTablePrinter.java314 int available = totalWidth - minWidth;
316 if (expandableColumnSize > available) {
327 ((actualSize * available) / expandableColumnSize);
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/asn1/
H A DASN1InputStreamReader.java85 * @return <code>true</code> if another complete element is available or
107 return peekLength <= in.available();
119 * be read. This method will block until enough data is available on the
120 * stream to determine if an element is available.
122 * @return <code>true</code> if another element is available or
155 * available or <code>false</code> to check for
169 if(!isBlocking && in.available() <= 0)
196 * available or <code>false</code> to check for
210 if(!isBlocking && in.available() <= 0)
238 if(!isBlocking && in.available() < lengthBytesNeede
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/asn1/
H A DASN1InputStreamReader.java84 * @return <code>true</code> if another complete element is available or
106 return peekLength <= in.available();
118 * be read. This method will block until enough data is available on the
119 * stream to determine if an element is available.
121 * @return <code>true</code> if another element is available or
154 * available or <code>false</code> to check for
168 if(!isBlocking && in.available() <= 0)
195 * available or <code>false</code> to check for
209 if(!isBlocking && in.available() <= 0)
237 if(!isBlocking && in.available() < lengthBytesNeede
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/asn1/
H A DASN1InputStreamReader.java85 * @return <code>true</code> if another complete element is available or
107 return peekLength <= in.available();
119 * be read. This method will block until enough data is available on the
120 * stream to determine if an element is available.
122 * @return <code>true</code> if another element is available or
155 * available or <code>false</code> to check for
169 if(!isBlocking && in.available() <= 0)
196 * available or <code>false</code> to check for
210 if(!isBlocking && in.available() <= 0)
238 if(!isBlocking && in.available() < lengthBytesNeede
[all...]

Completed in 129 milliseconds

1234567