Searched refs:request (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpCallback.java29 * The incoming request fields can be examined via the {@link HttpTransaction}
30 * object, and a response can also be generated and sent via the request object.
34 * handle the given request and generate an appropriate response.
35 * @param msg the transaction containing the request from the
38 void request (HttpTransaction msg); method in interface:HttpCallback
H A DAbstractCallback.java31 * of tracking multiple invocations of a request (on the server).
32 * In this case, you implement the modified request() method, which includes
34 * (starting at zero) the request URI has been received.
56 * handle the given request and generate an appropriate response.
57 * @param msg the transaction containing the request from the
60 public void request (HttpTransaction msg) { method in class:AbstractCallback
67 request (msg, req.count++);
73 * the same request URI. n starts at zero and is incremented
76 * @param msg the transaction containing the request from the
79 * each subsequent call using the same request UR
81 abstract public void request (HttpTransaction msg, int n); method in class:AbstractCallback
[all...]
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpCallback.java29 * The incoming request fields can be examined via the {@link HttpTransaction}
30 * object, and a response can also be generated and sent via the request object.
34 * handle the given request and generate an appropriate response.
35 * @param msg the transaction containing the request from the
38 void request (HttpTransaction msg); method in interface:HttpCallback
H A DAbstractCallback.java31 * of tracking multiple invocations of a request (on the server).
32 * In this case, you implement the modified request() method, which includes
34 * (starting at zero) the request URI has been received.
56 * handle the given request and generate an appropriate response.
57 * @param msg the transaction containing the request from the
60 public void request (HttpTransaction msg) { method in class:AbstractCallback
67 request (msg, req.count++);
73 * the same request URI. n starts at zero and is incremented
76 * @param msg the transaction containing the request from the
79 * each subsequent call using the same request UR
81 abstract public void request (HttpTransaction msg, int n); method in class:AbstractCallback
[all...]
/openjdk7/jdk/src/share/back/
H A Dinvoker.c102 createGlobalRefs(JNIEnv *env, InvokeRequest *request) argument
115 if ( request->argumentCount > 0 ) {
117 argRefs = jvmtiAllocate((jint)(request->argumentCount*sizeof(jobject)));
122 (void)memset(argRefs, 0, request->argumentCount*sizeof(jobject));
127 saveGlobalRef(env, request->clazz, &clazz);
133 if ( error == JVMTI_ERROR_NONE && request->instance != NULL ) {
134 saveGlobalRef(env, request->instance, &instance);
142 argumentTag = firstArgumentTypeTag(request->methodSignature, &cursor);
143 argument = request->arguments;
145 if ( argIndex > request
215 fillInvokeRequest(JNIEnv *env, InvokeRequest *request, jbyte invokeType, jbyte options, jint id, jthread thread, jclass clazz, jmethodID method, jobject instance, jvalue *arguments, jint argumentCount) argument
276 InvokeRequest *request; local
295 InvokeRequest *request; local
320 invokeConstructor(JNIEnv *env, InvokeRequest *request) argument
333 invokeStatic(JNIEnv *env, InvokeRequest *request) argument
421 invokeVirtual(JNIEnv *env, InvokeRequest *request) argument
508 invokeNonvirtual(JNIEnv *env, InvokeRequest *request) argument
609 InvokeRequest *request; local
678 InvokeRequest *request; local
744 InvokeRequest *request; local
757 InvokeRequest *request; local
768 invoker_detach(InvokeRequest *request) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DEvent.java29 import com.sun.jdi.request.EventRequest;
51 * a cooresponding request and thus will return null.
53 EventRequest request(); method in interface:Event
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DAccessWatchpointRequest.java26 package com.sun.jdi.request;
H A DModificationWatchpointRequest.java26 package com.sun.jdi.request;
H A DVMDeathRequest.java26 package com.sun.jdi.request;
44 * This request would typically be created so that a
H A DDuplicateRequestException.java26 package com.sun.jdi.request;
29 * Thrown to indicate a duplicate event request.
H A DInvalidRequestStateException.java26 package com.sun.jdi.request;
32 * Also thrown if an operation is attempted on a deleted request.
H A DThreadDeathRequest.java26 package com.sun.jdi.request;
50 * Restricts the events generated by this request to those in
53 * @throws InvalidRequestStateException if this request is currently
H A DThreadStartRequest.java26 package com.sun.jdi.request;
50 * Restricts the events generated by this request to those in
53 * @throws InvalidRequestStateException if this request is currently
H A DBreakpointRequest.java26 package com.sun.jdi.request;
59 * Restricts the events generated by this request to those in
62 * @throws InvalidRequestStateException if this request is currently
69 * Restricts the events generated by this request to those in
82 * @throws InvalidRequestStateException if this request is currently
H A DClassUnloadRequest.java26 package com.sun.jdi.request;
52 * Restricts the events generated by this request to the
58 * @throws InvalidRequestStateException if this request is currently
65 * Restricts the events generated by this request to the
71 * @throws InvalidRequestStateException if this request is currently
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DProvider.java49 /** Invokes an operation occording to the contents of the request
52 * @param request The request message or message payload.
55 * @throws WebServiceException If there is an error processing request.
62 public T invoke(T request); argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpInformHandler.java37 * Each inform request can be provided with an object that implements this callback
38 * interface. An application then uses the SNMP adaptor to start an SNMP inform request,
39 * which marks the request as active. The methods in this callback interface
46 * <LI> An internal error occurs while processing or parsing the inform request.
55 * This callback is invoked when a manager responds to an SNMP inform request.
56 * The callback should check the error status of the inform request to determine
59 * @param request The <CODE>SnmpInformRequest</CODE> associated with this callback.
60 * @param errStatus The status of the request.
62 * @param vblist The <CODE>Response varBind</CODE> list for the successful request.
64 public abstract void processSnmpPollData(SnmpInformRequest request, in argument
72 processSnmpPollTimeout(SnmpInformRequest request) argument
79 processSnmpInternalError(SnmpInformRequest request, String errmsg) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/oldlocal/
H A DLocalServerResponseImpl.sjava43 LocalServerResponseImpl(LocalServerRequestImpl request, ServiceContexts svc)
45 this(request,
47 (ORB)request.orb(),
48 request.getGIOPVersion(),
49 request.getRequestId(), ReplyMessage.NO_EXCEPTION,
54 LocalServerResponseImpl(LocalServerRequestImpl request, ServiceContexts svc,
57 this(request,
59 (ORB)request.orb(),
60 request.getGIOPVersion(), request
[all...]
/openjdk7/corba/src/share/classes/org/omg/PortableServer/
H A DDynamicImplementation.java39 * necessary to execute the request.
40 * @param request the request issued to the CORBA object.
42 abstract public void invoke(org.omg.CORBA.ServerRequest request); argument
/openjdk7/jdk/test/com/sun/jdi/
H A DNativeInstanceFilter.java44 import com.sun.jdi.request.*;
59 static MethodExitRequest request = null; field in class:NativeInstanceFilter
77 requestManager.deleteEventRequest(request);
78 request = requestManager.createMethodExitRequest();
79 request.addInstanceFilter(instance);
80 request.enable();
107 request = requestManager.createMethodExitRequest();
108 request.enable();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DSpecialMethod.java52 CorbaMessageMediator request,
82 CorbaMessageMediator request,
88 request.getProtocolHandler().createResponse(request, null);
110 CorbaMessageMediator request,
115 ORB orb = (ORB)request.getBroker() ;
119 return request.getProtocolHandler().createSystemExceptionResponse(
120 request, wrapper.badSkeleton(), null);
125 ((InputStream)request.getInputObject()).read_string();
134 request
51 invoke(java.lang.Object servant, CorbaMessageMediator request, byte[] objectId, ObjectAdapter objectAdapter) argument
81 invoke(java.lang.Object servant, CorbaMessageMediator request, byte[] objectId, ObjectAdapter objectAdapter) argument
109 invoke(java.lang.Object servant, CorbaMessageMediator request, byte[] objectId, ObjectAdapter objectAdapter) argument
149 invoke(java.lang.Object servant, CorbaMessageMediator request, byte[] objectId, ObjectAdapter objectAdapter) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DWebServiceContextDelegate.java43 * the JAX-WS RI goes to the {@link Packet} that represents the request,
71 * @param request
75 Principal getUserPrincipal(@NotNull Packet request); argument
81 * @param request
85 boolean isUserInRole(@NotNull Packet request,String role); argument
95 * @param request
108 @NotNull String getEPRAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint); argument
141 * @param request
150 @Nullable String getWSDLAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint); argument
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPConnection.java45 * directly to a URL following the request/response paradigm. That is,
55 * @param request the <code>SOAPMessage</code> object to be sent
67 public abstract SOAPMessage call(SOAPMessage request, argument
74 * the request should be sent. Objects of type
79 * get message request
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DEventRequestSpec.java38 import com.sun.jdi.request.EventRequest;
50 EventRequest request = null; field in class:EventRequestSpec
59 void setRequest(EventRequest request) { argument
60 this.request = request;
61 request.putProperty(specPropertyKey, this);
62 request.enable();
118 return request;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DSyncProviderInvokerTube.java59 public NextAction processRequest(Packet request) { argument
62 T param = argsBuilder.getParameter(request);
68 returnValue = getInvoker(request).invokeProvider(request, param);
71 Packet response = argsBuilder.getResponse(request,e,port,binding);
77 if (request.transportBackChannel != null) {
78 request.transportBackChannel.close();
81 Packet response = argsBuilder.getResponse(request,returnValue,port,binding);

Completed in 1890 milliseconds

1234567891011>>