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

1234567891011>>

/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/request/
H A Dpackage-info.java27 * This package is used to request that a JDI
31 * {@link com.sun.jdi.request.EventRequest} for each kind of
33 * {@link com.sun.jdi.request.BreakpointRequest} is used to request a
36 * {@link com.sun.jdi.request.EventRequestManager}.
45 package com.sun.jdi.request;
H A DInvalidRequestStateException.java26 package com.sun.jdi.request;
32 * Also thrown if an operation is attempted on a deleted request.
H A DDuplicateRequestException.java26 package com.sun.jdi.request;
29 * Thrown to indicate a duplicate event request.
/openjdk10/jdk/test/sun/net/www/protocol/https/
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...]
/openjdk10/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...]
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
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
219 deleteGlobalArgumentRefs(JNIEnv *env, InvokeRequest *request) argument
247 fillInvokeRequest(JNIEnv *env, InvokeRequest *request, jbyte invokeType, jbyte options, jint id, jthread thread, jclass clazz, jmethodID method, jobject instance, jvalue *arguments, jint argumentCount) argument
308 InvokeRequest *request; local
358 InvokeRequest *request; local
390 invokeConstructor(JNIEnv *env, InvokeRequest *request) argument
405 invokeStatic(JNIEnv *env, InvokeRequest *request) argument
494 invokeVirtual(JNIEnv *env, InvokeRequest *request) argument
582 invokeNonvirtual(JNIEnv *env, InvokeRequest *request) argument
685 InvokeRequest *request; local
759 InvokeRequest *request; local
865 InvokeRequest *request; local
880 invoker_detach(InvokeRequest *request) argument
[all...]
/openjdk10/jdk/test/javax/xml/ws/xsanymixed/
H A DCopyingResponse.java32 public CopyingResponse(EchoRequest request) { argument
33 content = request.getContent();
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/
H A DProvider.java41 * @param <T> The type of the request
50 /** Invokes an operation according to the contents of the request
53 * @param request The request message or message payload.
56 * @throws WebServiceException If there is an error processing request.
63 public T invoke(T request); argument
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/event/
H A DVMDeathEvent.java29 import com.sun.jdi.request.EventRequest;
30 import com.sun.jdi.request.EventRequestManager;
31 import com.sun.jdi.request.VMDeathRequest;
H A DStepEvent.java28 import com.sun.jdi.request.StepRequest;
H A DEvent.java30 import com.sun.jdi.request.EventRequest;
52 * a cooresponding request and thus will return null.
54 EventRequest request(); method in interface:Event
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/
H A DRuntimeNode.java44 * Request enum used for meta-information about the runtime request
93 /** return type for request */
96 /** arity of request */
118 * Can this request type be specialized?
120 * @return true if request can be specialized
129 * @return the arity of the request
138 * @return return type for request
147 * @return token type for request
154 * Get the non-strict name for this request.
170 * Derive a runtime node request typ
211 isUndefinedCheck(final Request request) argument
222 isEQ(final Request request) argument
233 isNE(final Request request) argument
244 isStrict(final Request request) argument
256 reverse(final Request request) argument
283 invert(final Request request) argument
313 isComparison(final Request request) argument
333 private final Request request; field in class:RuntimeNode
346 RuntimeNode(final long token, final int finish, final Request request, final List<Expression> args) argument
353 RuntimeNode(final RuntimeNode runtimeNode, final Request request, final List<Expression> args) argument
368 RuntimeNode(final long token, final int finish, final Request request, final Expression... args) argument
379 RuntimeNode(final Expression parent, final Request request, final Expression... args) argument
390 RuntimeNode(final Expression parent, final Request request, final List<Expression> args) argument
403 RuntimeNode(final UnaryNode parent, final Request request) argument
421 setRequest(final Request request) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DCertStatusReqExtension.java33 * which allows the client to request that the server perform OCSP
42 * } request;
59 private final StatusRequest request; field in class:CertStatusReqExtension
63 * Construct the default status request extension object. The default
71 request = null;
75 * Construct the status request extension object given a request type
95 request = Objects.requireNonNull(statReq,
96 "Unallowed null value for request");
125 request
[all...]
H A DCertStatusReqItemV2.java35 * which allows the client to request that the server perform OCSP
46 * } request;
55 private final StatusRequest request; field in class:CertStatusReqItemV2
61 * @param reqType the type of request (e.g. ocsp). A {@code null} value
75 request = Objects.requireNonNull(statReq,
76 "Unallowed null value for request");
96 * supported status request type.
108 request = new OCSPStatusRequest(statReqBytes);
110 request = new UnknownStatusRequest(statReqBytes);
128 * supported status request typ
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DHotSpotCompilationIdentifier.java34 * request}.
37 private final HotSpotCompilationRequest request; field in class:HotSpotCompilationIdentifier
39 public HotSpotCompilationIdentifier(HotSpotCompilationRequest request) { argument
40 this.request = request;
44 return request.getEntryBCI() != JVMCICompiler.INVOCATION_ENTRY_BCI;
71 sb.append(request.getEntryBCI());
82 return sb.append(request.getMethod().format("%H.%n(%p)"));
91 return sb.append(request.getId());
96 return request;
[all...]
/openjdk10/corba/src/java.corba/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
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DMirror.java28 import com.sun.jdi.request.BreakpointRequest;
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DResponse.java34 final HttpRequestImpl request; field in class:Response
44 this.request = req;
50 HttpRequestImpl request() { method in class:Response
51 return request;
/openjdk10/jdk/test/com/sun/jdi/
H A DNativeInstanceFilter.java42 import com.sun.jdi.request.*;
57 static MethodExitRequest request = null; field in class:NativeInstanceFilter
76 requestManager.deleteEventRequest(request);
77 request = requestManager.createMethodExitRequest();
78 request.addInstanceFilter(instance);
79 request.addThreadFilter(mainThread);
80 request.enable();
108 request = requestManager.createMethodExitRequest();
109 request.addThreadFilter(mainThread);
110 request
[all...]
/openjdk10/corba/src/java.corba/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...]
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/
H A DJVMCICompiler.java32 * Services a compilation request. This object should compile the method to machine code and
35 CompilationRequestResult compileMethod(CompilationRequest request); argument
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/soap/
H A DSOAPConnection.java45 * directly to a URL following the request/response paradigm. That is,
57 * @param request the {@code SOAPMessage} object to be sent
69 public abstract SOAPMessage call(SOAPMessage request, argument
76 * the request should be sent. Objects of type
81 * get message request
/openjdk10/jaxws/src/java.xml.ws/share/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

Completed in 236 milliseconds

1234567891011>>