Searched defs:stream (Results 1 - 25 of 339) sorted by relevance

1234567891011>>

/forgerock/web-agents-v4/zlib/
H A Duncompr.c30 z_stream stream; local
33 stream.next_in = (z_const Bytef *)source;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
45 err = inflateInit(&stream);
[all...]
H A Dcompress.c29 z_stream stream; local
32 stream.next_in = (z_const Bytef *)source;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
44 stream
[all...]
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Djsr173_1.0_api.jar ... .Object { public abstract boolean accept (javax.xml.stream.events.XMLEvent) } javax/xml/stream/FactoryConfigurationError.class
/forgerock/opendj2-jel-hg/resource/dsml/lib/
H A Djsr173_1.0_api.jar ... .Object { public abstract boolean accept (javax.xml.stream.events.XMLEvent) } javax/xml/stream/FactoryConfigurationError.class
/forgerock/opendj-b2.6/src/server/org/opends/server/loggers/
H A DTextWriter.java33 * A TextWriter provides a character-based stream used by a
39 * Writes a text record to the output stream.
46 * Flushes any buffered contents of the output stream.
67 private MeteredStream stream = new MeteredStream(System.out, 0); field in class:TextWriter.STDOUT
68 private PrintWriter writer = new PrintWriter(stream, true);
91 // Should never close the system out stream.
99 return stream.written;
108 private MeteredStream stream = new MeteredStream(System.err, 0); field in class:TextWriter.STDERR
109 private PrintWriter writer = new PrintWriter(stream, true);
132 // Should never close the system error stream
149 private MeteredStream stream; field in class:TextWriter.STREAM
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/ldap/
H A DAbandonRequestProtocolOp.java107 * Writes this protocol op to an ASN.1 output stream.
109 * @param stream The ASN.1 output stream to write to.
110 * @throws IOException If a problem occurs while writing to the stream.
112 public void write(ASN1Writer stream) throws IOException argument
114 stream.writeInteger(OP_TYPE_ABANDON_REQUEST, idToAbandon);
H A DDeleteRequestProtocolOp.java82 * Writes this protocol op to an ASN.1 output stream.
84 * @param stream The ASN.1 output stream to write to.
85 * @throws IOException If a problem occurs while writing to the stream.
87 public void write(ASN1Writer stream) throws IOException argument
89 stream.writeOctetString(OP_TYPE_DELETE_REQUEST, dn);
H A DLDAPControl.java120 public void writeValue(ASN1Writer stream) throws IOException argument
124 stream.writeOctetString(value);
H A DProtocolOp.java59 * Writes this protocol op to an ASN.1 output stream.
61 * @param stream The ASN.1 output stream to write to.
62 * @throws IOException If a problem occurs while writing to the stream.
64 public abstract void write(ASN1Writer stream) throws IOException; argument
H A DUnbindRequestProtocolOp.java86 * Writes this protocol op to an ASN.1 output stream.
88 * @param stream The ASN.1 output stream to write to.
89 * @throws IOException If a problem occurs while writing to the stream.
91 public void write(ASN1Writer stream) throws IOException argument
93 stream.writeNull(OP_TYPE_UNBIND_REQUEST);
/forgerock/opendj2/src/server/org/opends/server/loggers/
H A DTextWriter.java32 * A TextWriter provides a character-based stream used by a
38 * Writes a text record to the output stream.
45 * Flushes any buffered contents of the output stream.
66 private MeteredStream stream = new MeteredStream(System.out, 0); field in class:TextWriter.STDOUT
67 private PrintWriter writer = new PrintWriter(stream, true);
90 // Should never close the system out stream.
98 return stream.written;
107 private MeteredStream stream = new MeteredStream(System.err, 0); field in class:TextWriter.STDERR
108 private PrintWriter writer = new PrintWriter(stream, true);
131 // Should never close the system error stream
148 private MeteredStream stream; field in class:TextWriter.STREAM
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/ldap/
H A DAbandonRequestProtocolOp.java106 * Writes this protocol op to an ASN.1 output stream.
108 * @param stream The ASN.1 output stream to write to.
109 * @throws IOException If a problem occurs while writing to the stream.
111 public void write(ASN1Writer stream) throws IOException argument
113 stream.writeInteger(OP_TYPE_ABANDON_REQUEST, idToAbandon);
H A DDeleteRequestProtocolOp.java81 * Writes this protocol op to an ASN.1 output stream.
83 * @param stream The ASN.1 output stream to write to.
84 * @throws IOException If a problem occurs while writing to the stream.
86 public void write(ASN1Writer stream) throws IOException argument
88 stream.writeOctetString(OP_TYPE_DELETE_REQUEST, dn);
H A DLDAPControl.java119 public void writeValue(ASN1Writer stream) throws IOException argument
123 stream.writeOctetString(value);
H A DProtocolOp.java58 * Writes this protocol op to an ASN.1 output stream.
60 * @param stream The ASN.1 output stream to write to.
61 * @throws IOException If a problem occurs while writing to the stream.
63 public abstract void write(ASN1Writer stream) throws IOException; argument
H A DUnbindRequestProtocolOp.java85 * Writes this protocol op to an ASN.1 output stream.
87 * @param stream The ASN.1 output stream to write to.
88 * @throws IOException If a problem occurs while writing to the stream.
90 public void write(ASN1Writer stream) throws IOException argument
92 stream.writeNull(OP_TYPE_UNBIND_REQUEST);
/forgerock/opendj2.6.2/src/server/org/opends/server/loggers/
H A DTextWriter.java33 * A TextWriter provides a character-based stream used by a
39 * Writes a text record to the output stream.
46 * Flushes any buffered contents of the output stream.
67 private MeteredStream stream = new MeteredStream(System.out, 0); field in class:TextWriter.STDOUT
68 private PrintWriter writer = new PrintWriter(stream, true);
91 // Should never close the system out stream.
99 return stream.written;
108 private MeteredStream stream = new MeteredStream(System.err, 0); field in class:TextWriter.STDERR
109 private PrintWriter writer = new PrintWriter(stream, true);
132 // Should never close the system error stream
149 private MeteredStream stream; field in class:TextWriter.STREAM
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/ldap/
H A DAbandonRequestProtocolOp.java107 * Writes this protocol op to an ASN.1 output stream.
109 * @param stream The ASN.1 output stream to write to.
110 * @throws IOException If a problem occurs while writing to the stream.
112 public void write(ASN1Writer stream) throws IOException argument
114 stream.writeInteger(OP_TYPE_ABANDON_REQUEST, idToAbandon);
H A DDeleteRequestProtocolOp.java82 * Writes this protocol op to an ASN.1 output stream.
84 * @param stream The ASN.1 output stream to write to.
85 * @throws IOException If a problem occurs while writing to the stream.
87 public void write(ASN1Writer stream) throws IOException argument
89 stream.writeOctetString(OP_TYPE_DELETE_REQUEST, dn);
H A DLDAPControl.java120 public void writeValue(ASN1Writer stream) throws IOException argument
124 stream.writeOctetString(value);
H A DProtocolOp.java59 * Writes this protocol op to an ASN.1 output stream.
61 * @param stream The ASN.1 output stream to write to.
62 * @throws IOException If a problem occurs while writing to the stream.
64 public abstract void write(ASN1Writer stream) throws IOException; argument
H A DUnbindRequestProtocolOp.java86 * Writes this protocol op to an ASN.1 output stream.
88 * @param stream The ASN.1 output stream to write to.
89 * @throws IOException If a problem occurs while writing to the stream.
91 public void write(ASN1Writer stream) throws IOException argument
93 stream.writeNull(OP_TYPE_UNBIND_REQUEST);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/loggers/
H A DTextWriter.java33 * A TextWriter provides a character-based stream used by a
39 * Writes a text record to the output stream.
46 * Flushes any buffered contents of the output stream.
67 private MeteredStream stream = new MeteredStream(System.out, 0); field in class:TextWriter.STDOUT
68 private PrintWriter writer = new PrintWriter(stream, true);
91 // Should never close the system out stream.
99 return stream.written;
108 private MeteredStream stream = new MeteredStream(System.err, 0); field in class:TextWriter.STDERR
109 private PrintWriter writer = new PrintWriter(stream, true);
132 // Should never close the system error stream
149 private MeteredStream stream; field in class:TextWriter.STREAM
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/ldap/
H A DAbandonRequestProtocolOp.java107 * Writes this protocol op to an ASN.1 output stream.
109 * @param stream The ASN.1 output stream to write to.
110 * @throws IOException If a problem occurs while writing to the stream.
112 public void write(ASN1Writer stream) throws IOException argument
114 stream.writeInteger(OP_TYPE_ABANDON_REQUEST, idToAbandon);
H A DDeleteRequestProtocolOp.java82 * Writes this protocol op to an ASN.1 output stream.
84 * @param stream The ASN.1 output stream to write to.
85 * @throws IOException If a problem occurs while writing to the stream.
87 public void write(ASN1Writer stream) throws IOException argument
89 stream.writeOctetString(OP_TYPE_DELETE_REQUEST, dn);

Completed in 118 milliseconds

1234567891011>>