Searched defs:response_expected (Results 1 - 6 of 6) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DRequestMessage_1_0.java48 private boolean response_expected = false; field in class:RequestMessage_1_0
67 response_expected = _response_expected;
84 return this.response_expected;
125 this.response_expected = istream.read_boolean();
144 ostream.write_boolean(this.response_expected);
H A DRequestMessage_1_1.java52 private boolean response_expected = false; field in class:RequestMessage_1_1
78 response_expected = _response_expected;
96 return this.response_expected;
127 this.response_expected = istream.read_boolean();
150 ostream.write_boolean(this.response_expected);
H A DMessageBase.java453 boolean response_expected, byte[] object_key, String operation,
458 response_expected, object_key,
462 response_expected, new byte[] { 0x00, 0x00, 0x00 },
465 // Note: Currently we use response_expected flag to decide if the
469 if (response_expected) {
477 if ((DII::INV_NO_RESPONSE == false) && response_expected) {
479 } else if ((DII::INV_NO_RESPONSE == false) && !response_expected) {
481 } else if ((DII::INV_NO_RESPONSE == true) && response_expected) {
485 } else if ((DII::INV_NO_RESPONSE == true) && !response_expected) {
506 boolean response_expected, IO
451 createRequest( ORB orb, GIOPVersion gv, byte encodingVersion, int request_id, boolean response_expected, byte[] object_key, String operation, ServiceContexts service_contexts, Principal requesting_principal) argument
504 createRequest( ORB orb, GIOPVersion gv, byte encodingVersion, int request_id, boolean response_expected, IOR ior, short addrDisp, String operation, ServiceContexts service_contexts, Principal requesting_principal) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DClientRequestInfoImpl.java242 /*response_expected*/ { true , true , true , true , true },
694 public boolean response_expected (){ method in class:ClientRequestInfoImpl
932 return ! response_expected();
H A DRequestInfoImpl.java307 * Implementation for response_expected() differs for client and server
311 * not returned when response_expected is false, so receive_reply cannot
316 abstract public boolean response_expected (); method in class:RequestInfoImpl
320 * response_expected is false. If response_expected is true, the value
H A DServerRequestInfoImpl.java221 /*response_expected*/ { true , true , true , true , true },
607 public boolean response_expected (){ method in class:ServerRequestInfoImpl

Completed in 267 milliseconds