Searched defs:request (Results 126 - 138 of 138) sorted by relevance

123456

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DClientRequestInfoImpl.java112 // The current retry request status. True if this request is being
117 // incremented every time a request is retried, and decremented every
118 // time a request is complete. When this reaches zero, the info object
125 private org.omg.CORBA.Request request; field in class:ClientRequestInfoImpl
127 // Sources of client request information
173 request = null;
319 * The profile that will be used to send the request. If a location
391 * selected for this request. IF there is more than one component for a
403 * selected for this request
[all...]
H A DServerRequestInfoImpl.java100 // Sources of server request information:
101 private CorbaMessageMediator request; field in class:ServerRequestInfoImpl
146 request = null;
396 * of the request. If data already exists in that slot, it will be
427 * Allows Interceptors to add service contexts to the request.
459 // So we enqueue this add reply service context request.
467 // Therefore we always enqueue and never dequeue (per request) so
494 * request info object.
504 * NOTE: The request id in server interceptors is NOT the
505 * same as the GIOP request i
749 setInfo( CorbaMessageMediator request, ObjectAdapter oa, byte[] objectId, ObjectKeyTemplate oktemp ) argument
[all...]
/openjdk7/hotspot/agent/test/jdi/
H A DTestScaffold.java26 import com.sun.jdi.request.*;
91 * Return true if eventSet contains the VMDeathEvent for the request in
104 if (ourVMDeathRequest.equals(myEvent.request())) {
141 * the VMDeath. When we get the VMDeathEvent for this request in
463 event.request())) {
562 public Event waitForRequestedEvent(final EventRequest request) { argument
571 if (request.equals(event.request())) {
645 final BreakpointRequest request =
647 request
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpRequestTree.java72 // allows for entry creation (ie: it is a SET request).
73 // @param pdutype indicates the type of the request PDU as defined
77 this.request = req;
147 // present circumstances (probably because the request specifies
282 // request? or whether we should raise an exception:
477 final int type; // request PDU type as defined in SnmpDefinitions
715 // through the SnmpUserDataFactory for this request.
718 public Object getUserData() { return request.getUserData(); }
730 // Tells whether we are currently processing a SET request (check/set)
738 // Returns the protocol version in which the original request i
1061 private SnmpMibRequest request = null; // The original list of varbinds field in class:SnmpRequestTree
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventSetImpl.java30 import com.sun.jdi.request.*;
76 private final EventRequest request; field in class:EventSetImpl.EventImpl
88 this.request = ermi.request(eventCmd, requestID);
109 this.request = null;
112 public EventRequest request() { method in class:EventSetImpl.EventImpl
113 return request;
123 * 1. an internal request
124 * 2. a client request that is no longer available, ie
127 * 3. a current client request tha
[all...]
H A DEventRequestManagerImpl.java29 import com.sun.jdi.request.*;
37 * It include implementations of all the request interfaces..
129 * @return all the event request of this kind
136 * delete the event request
194 * set (enable) the event request
339 return "breakpoint request " + location() + state();
370 return "class prepare request " + state();
385 return "class unload request " + state();
430 return "exception request " + exception() + state();
445 return "method entry request "
940 EventRequest request(int eventCmd, int requestId) { method in class:EventRequestManagerImpl
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DTestScaffold.java25 import com.sun.jdi.request.*;
94 * Return true if eventSet contains the VMDeathEvent for the request in
107 if (ourVMDeathRequest.equals(myEvent.request())) {
144 * the VMDeath. When we get the VMDeathEvent for this request in
561 event.request())) {
566 * Since this request was SUSPEND_NONE, the debuggee
586 * one. To enable this code change the request
696 public Event waitForRequestedEvent(final EventRequest request) { argument
705 if (request.equals(event.request())) {
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ldap/
H A DLDAPCertStore.java89 * We always request CA certificates, cross certificate pairs, and ARLs in
90 * a single LDAP request when any one of them is needed. The reason is that
94 * overhead. In addition, when the prefetchCRLs flag is true, we also request
96 * request for an ARL to the server returns an null value. The reason is
266 * LDAPRequest request = new LDAPRequest(dn);
267 * request.addRequestedAttribute(CROSS_CERT);
268 * request.addRequestedAttribute(CA_CERT);
269 * byte[][] crossValues = request.getValues(CROSS_CERT);
270 * byte[][] caValues = request.getValues(CA_CERT);
272 * At most one LDAP request i
419 getCertificates(LDAPRequest request, String id, X509CertSelector sel) argument
467 getCertPairs( LDAPRequest request, String id) argument
522 getMatchingCrossCerts( LDAPRequest request, X509CertSelector forward, X509CertSelector reverse) argument
696 getCRLs(LDAPRequest request, String id, X509CRLSelector sel) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.hpp302 void signal_out_of_memory(size_t request, const char* whence) const;
304 bool check_for_overflow(size_t request, const char* whence, argument
306 if (UINTPTR_MAX - request < (uintptr_t)_hwm) {
310 signal_out_of_memory(request, whence);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModeler.java519 Request request = new Request(inputMessage, errReceiver);
520 request.setErrorReceiver(errReceiver);
543 List<Parameter> params = getDoclitParameters(request, response, parameterList);
558 request.addParameter(param);
562 request.addParameter(param);
568 info.operation.setRequest(request);
700 Request request = new Request(inputMessage, errReceiver);
701 request.setErrorReceiver(errReceiver);
763 params = getDoclitParameters(request, response, parameterList);
772 request
1224 handleLiteralSOAPHeaders(Request request, Response response, Iterator headerParts, Set duplicateNames, List<String> definitiveParameterList, boolean processRequest) argument
1903 getRequestParameters(Request request, List<String> parameterList) argument
2100 createRpcLitRequestParameters(Request request, List<String> parameterList, Block block) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java304 * Sends an LDAP Bind request.
306 * @param dn The possibly null DN to use in the BIND request. null if anonymous.
326 // build the bind request.
444 // Is this a real close or a request to return conn to pool
911 // reqCtls - array of request controls
1080 // reqCtls - array of request controls
1173 LdapResult extendedOp(String id, byte[] request, Control[] reqCtls, argument
1192 if (request != null) {
1193 ber.encodeOctetString(request,
H A DLdapCtx.java236 Control[] reqCtls = null; // Controls to be sent with each request
364 // Set clone's request controls
1808 // if objects are requested then request the Java attributes too
1960 // have make sure to request the appropriate attrs
3198 public ExtendedResponse extendedOperation(ExtendedRequest request) argument
3201 boolean startTLS = (request.getID().equals(STARTTLS_REQ_OID));
3207 clnt.extendedOp(request.getID(), request.getEncodedValue(),
3214 // %%% verify request.getID() == answer.extensionId
3221 request
[all...]
/openjdk7/jdk/src/share/back/
H A DthreadControl.c876 * is handled by the original request, and once the thread actually
1212 EXIT_ERROR(AGENT_ERROR_OUT_OF_MEMORY,"resume request list");
1269 EXIT_ERROR(AGENT_ERROR_OUT_OF_MEMORY,"request list");
1303 /* thread is not suspended yet so put it on the request list */
1340 * This error means that the suspend request failed
1640 InvokeRequest *request; local
1642 request = NULL;
1648 request = &node->currentInvoke;
1653 return request;

Completed in 259 milliseconds

123456