Searched refs:request (Results 101 - 125 of 283) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/com/sun/jdi/
H A DUnpreparedClasses.java40 import com.sun.jdi.request.*;
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...]
H A DPopAsynchronousTest.java38 import com.sun.jdi.request.*;
184 BreakpointRequest request = erm.createBreakpointRequest(loc);
185 request.enable();
H A DRepStep.java39 import com.sun.jdi.request.*;
99 event.request().disable();
107 event.request().disable();
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DSourceDebugExtensionTest.java17 import com.sun.jdi.request.*;
H A DFilterMangleTest.java42 import com.sun.jdi.request.*;
119 if (event.request() == cpReq) {
153 * loaded, TestScaffold will create a class prepare request
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DWSEndpoint.java73 * Each {@link PipeHead} is thread-unsafe, and request needs to be
138 * Gets the application endpoint {@link Class} that eventually serves the request.
192 * a request, run it through a {@link Tube}line, eventually
208 * executor may used multiple times to run this request in a asynchronous fashion.
220 * @param request web service request
223 public final void schedule(@NotNull Packet request, @NotNull CompletionCallback callback ) { argument
224 schedule(request,callback,null);
232 * @param request web service request
236 schedule(@otNull Packet request, @NotNull CompletionCallback callback, @Nullable FiberContextSwitchInterceptor interceptor ) argument
238 process(@otNull Packet request, @NotNull CompletionCallback callback, @Nullable FiberContextSwitchInterceptor interceptor ) argument
323 process( @otNull Packet request, @Nullable WebServiceContextDelegate wscd, @Nullable TransportBackChannel tbc) 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/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DPortableConnectionImpl.java131 public Principal getUserPrincipal(Packet request) { argument
135 public boolean isUserInRole(Packet request, String role) { argument
139 public @NotNull String getEPRAddress(Packet request, WSEndpoint endpoint) { argument
162 public String getWSDLAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint) { argument
163 String eprAddress = getEPRAddress(request,endpoint);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsAclFileAttributeView.java80 static NativeBuffer getFileSecurity(String path, int request) argument
86 size = GetFileSecurity(path, request, 0L, 0);
96 int newSize = GetFileSecurity(path, request, buffer.address(), size);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSizeRequirements.java324 SizeRequirements[] request,
339 SizeRequirements req = request[i];
348 SizeRequirements req = request[i];
358 SizeRequirements[] request,
373 SizeRequirements req = request[i];
382 SizeRequirements req = request[i];
323 compressedTile(int allocated, long min, long pref, long max, SizeRequirements[] request, int[] offsets, int[] spans, boolean forward) argument
357 expandedTile(int allocated, long min, long pref, long max, SizeRequirements[] request, int[] offsets, int[] spans, boolean forward) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java42 * User-level thread. Represents the execution of one request/response processing.
45 * JAX-WS RI is capable of running a large number of request/response concurrently by
47 * a {@link Fiber} — a user-level thread that gets created for each request/response
53 * specific to the execution of a particular request/response.
232 * @param request
233 * The request packet to be passed to <tt>startPoint.processRequest()</tt>.
240 public void start(@NotNull Tube tubeline, @NotNull Packet request, @Nullable CompletionCallback completionCallback) { argument
242 this.packet = request;
248 public void runAsync(@NotNull Tube tubeline, @NotNull Packet request, @Nullable CompletionCallback completionCallback) { argument
250 this.packet = request;
453 runSync(@otNull Tube tubeline, @NotNull Packet request) argument
[all...]
H A DPipe.java77 * {@link Message#getPayloadNamespaceURI()} and serves the request.
82 * A {@link Pipe}line is not reentrant; one pipeline is used to process one request/response
83 * at at time. The same pipeline instance may serve request/response for different threads,
262 * @param request
263 * The packet that represents a request message. Must not be null.
266 * SOAP message to be sent as a request.
269 * that this is an output-only request.
276 * a response to the request message passed as a parameter.
282 Packet process( Packet request); argument
H A DTube.java74 * For example, XWSS will be a {@link Tube}. It will act on a request
92 * {@link Message#getPayloadNamespaceURI()} and serves the request.
99 * A pipeline is not reentrant; one pipeline is used to process one request/response
100 * at at time. The same pipeline instance may serve multiple request/response,
218 * Acts on a request and perform some protocol specific operation.
259 * @param request
260 * The packet that represents a request message.
263 * SOAP message to be sent as a request.
266 * that this is an output-only request.
273 @NotNull NextAction processRequest(@NotNull Packet request); argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DPipeAdapter.java73 public Packet process(Packet request) {
74 return Fiber.current().runSync(t,request);
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6361557.java42 * and invokes one http request on each. The client does
67 final static String request = "GET /test/foo.html HTTP/1.1\r\nContent-length: 0\r\n\r\n"; field in class:B6361557
68 final static ByteBuffer requestBuf = ByteBuffer.allocate(64).put(request.getBytes());
/openjdk7/hotspot/test/runtime/7158988/
H A DFieldMonitor.java60 import com.sun.jdi.request.ClassPrepareRequest;
61 import com.sun.jdi.request.EventRequest;
62 import com.sun.jdi.request.EventRequestManager;
63 import com.sun.jdi.request.ModificationWatchpointRequest;
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/legacy/connection/
H A DREADME.txt37 request. An ORB first asks the factory for type/host/port information
53 Access to a request's socket:
57 The request's socket is available via ClientRequestInfo and
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/protocol/
H A DCorbaProtocolHandler.java72 CorbaMessageMediator request,
71 handleThrowableDuringServerDispatch( CorbaMessageMediator request, Throwable exception, CompletionStatus completionStatus) argument
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c120 #define ptrace_getregs(request, pid, addr, data) ptrace(request, pid, addr, data)
122 #define ptrace_getregs(request, pid, addr, data) ptrace(request, pid, data, addr)
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DEventRequestManager.java26 package com.sun.jdi.request;
51 * The new event request is added to the list managed by this
53 * activate this event request.
61 * The new event request is added to the list managed by this
63 * activate this event request.
71 * The new event request is added to the list managed by this
73 * activate this event request.
81 * The new event request is added to the list managed by this
83 * activate this event request.
91 * The new event request i
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DExceptionSpec.java38 import com.sun.jdi.request.*;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DSEIStub.java145 public final Packet doProcess(Packet request, RequestContext rc, ResponseContextReceiver receiver) { argument
146 return super.process(request, rc, receiver);
149 public final void doProcessAsync(Packet request, RequestContext rc, Fiber.CompletionCallback callback) { argument
150 super.processAsync(request, rc, callback);

Completed in 68 milliseconds

1234567891011>>