Searched defs:req (Results 1 - 25 of 90) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbKdcRep.java38 KDCReq req,
42 if (!req.reqBody.cname.equalsWithoutRealm(rep.cname)) {
48 if (!req.reqBody.crealm.equals(rep.crealm)) {
54 if (!req.reqBody.sname.equalsWithoutRealm(rep.encKDCRepPart.sname)) {
59 if (!req.reqBody.crealm.equals(rep.encKDCRepPart.srealm)) {
64 if (req.reqBody.getNonce() != rep.encKDCRepPart.nonce) {
70 ((req.reqBody.addresses != null && rep.encKDCRepPart.caddr != null) &&
71 !req.reqBody.addresses.equals(rep.encKDCRepPart.caddr))) {
78 if (req.reqBody.kdcOptions.get(i) !=
86 if (req
37 check( KDCReq req, KDCRep rep ) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRequestProcessor.java46 public static void postRequest(Request req) { argument
48 requestQueue.enqueue(req);
60 Request req = (Request)obj;
62 req.execute();
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpStandardObjectServer.java80 * public void get(SnmpStandardMetaServer meta, SnmpMibSubRequest req,
84 * final Object data = req.getUserData();
86 * for (Enumeration e= req.getElements(); e.hasMoreElements();) {
97 * req.registerGetException(var,x);
111 * @param req The sub-request that must be handled by this node.
118 public void get(SnmpStandardMetaServer meta, SnmpMibSubRequest req, argument
122 final Object data = req.getUserData();
124 for (Enumeration e= req.getElements(); e.hasMoreElements();) {
130 req.registerGetException(var,x);
141 * public void set(SnmpStandardMetaServer meta, SnmpMibSubRequest req,
179 set(SnmpStandardMetaServer meta, SnmpMibSubRequest req, int depth) argument
245 check(SnmpStandardMetaServer meta, SnmpMibSubRequest req, int depth) argument
[all...]
H A DSnmpMibEntry.java124 * @param req The sub-request that must be handled by this node.
131 abstract public void get(SnmpMibSubRequest req, int depth) argument
153 * @param req The sub-request that must be handled by this node.
160 abstract public void set(SnmpMibSubRequest req, int depth) argument
184 * @param req The sub-request that must be handled by this node.
191 abstract public void check(SnmpMibSubRequest req, int depth) argument
H A DSnmpGenericObjectServer.java129 * @param req The SNMP subrequest to execute on the MBean
136 * req.registerGetException(<i>VariableId</i>,<i>SnmpStatusException</i>)
140 SnmpMibSubRequest req, int depth)
145 final int size = req.getSize();
146 final Object data = req.getUserData();
152 for (Enumeration e=req.getElements(); e.hasMoreElements();) {
171 req.registerGetException(var,x);
201 req.registerGetException(varList[j],x);
212 req.registerGetException(varList[j],x);
222 req
139 get(SnmpGenericMetaServer meta, ObjectName name, SnmpMibSubRequest req, int depth) argument
304 set(SnmpGenericMetaServer meta, ObjectName name, SnmpMibSubRequest req, int depth) argument
466 check(SnmpGenericMetaServer meta, ObjectName name, SnmpMibSubRequest req, int depth) argument
[all...]
H A DSnmpMibAgentMBean.java61 * @param req The SnmpMibRequest object holding the list of variables to
68 public void get(SnmpMibRequest req) throws SnmpStatusException; argument
74 * @param req The SnmpMibRequest object holding the list of variables to
81 public void getNext(SnmpMibRequest req) throws SnmpStatusException; argument
87 * @param req The SnmpMibRequest object holding the list of variables to
103 public void getBulk(SnmpMibRequest req, int nonRepeat, int maxRepeat) argument
110 * @param req The SnmpMibRequest object holding the list of variables to
117 public void set(SnmpMibRequest req) throws SnmpStatusException; argument
124 * @param req The SnmpMibRequest object holding the list of variables to
132 public void check(SnmpMibRequest req) throw argument
[all...]
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4921848.java40 public void request (HttpTransaction req) { argument
43 req.addResponseHeader ("Connection", "close");
44 req.addResponseHeader ("WWW-Authenticate", "Basic realm=\"foo\"");
45 req.addResponseHeader ("WWW-Authenticate", "Digest realm=\"bar\" domain=/biz nonce=\"hereisanonce\"");
46 req.sendResponse (401, "Unauthorized");
47 req.orderlyClose();
49 String authheader = req.getRequestHeader ("Authorization");
51 req.setResponseEntityBody ("Hello .");
52 req.sendResponse (200, "Ok");
53 req
[all...]
H A DB4962064.java40 public void request (HttpTransaction req) { argument
44 req.addResponseHeader ("Connection", "close");
45 req.addResponseHeader ("WWW-Authenticate", "Basic realm=\"foo\"");
46 req.sendResponse (401, "Unauthorized");
47 req.orderlyClose();
51 req.setResponseEntityBody ("Hello .");
52 req.sendResponse (200, "Ok");
53 req.orderlyClose();
56 req.addResponseHeader ("Connection", "close");
57 req
[all...]
H A DB4722333.java49 public void request (HttpTransaction req) { argument
52 req.setResponseEntityBody ("Hello .");
53 req.sendResponse (200, "Ok");
54 req.orderlyClose();
58 req.addResponseHeader ("Connection", "close");
59 req.addResponseHeader ("WWW-Authenticate", "Basic realm=\"foo\"");
60 req.addResponseHeader ("WWW-Authenticate", "Foo realm=\"bar\"");
61 req.sendResponse (401, "Unauthorized");
62 req.orderlyClose();
65 req
[all...]
H A DB4759514.java41 void errorReply (HttpTransaction req, String reply) throws IOException { argument
42 req.addResponseHeader ("Connection", "close");
43 req.addResponseHeader ("WWW-Authenticate", reply);
44 req.sendResponse (401, "Unauthorized");
45 req.orderlyClose();
48 void okReply (HttpTransaction req) throws IOException { argument
49 req.setResponseEntityBody ("Hello .");
50 req.sendResponse (200, "Ok");
51 req.orderlyClose();
54 public void request (HttpTransaction req) { argument
[all...]
/openjdk7/jdk/test/java/net/ProxySelector/
H A DLoopbackAddresses.java44 public void request (HttpTransaction req) { argument
45 req.setResponseEntityBody ("Hello .");
47 req.sendResponse (200, "Ok");
48 req.orderlyClose();
H A DProxyTest.java44 public void request (HttpTransaction req) { argument
45 req.setResponseEntityBody ("Hello .");
47 req.sendResponse (200, "Ok");
48 req.orderlyClose();
/openjdk7/jdk/test/java/net/URLConnection/
H A DB5052093.java56 public void request(HttpTransaction req) { argument
58 req.setResponseHeader("content-length", Long.toString(testSize));
59 req.sendResponse(200, "OK");
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DRelativeRedirect.java51 void firstReply (HttpTransaction req) throws IOException { argument
52 req.addResponseHeader ("Connection", "close");
53 req.addResponseHeader ("Location", "/redirect/file.html");
54 req.sendResponse (302, "Moved Permamently");
55 req.orderlyClose();
58 void secondReply (HttpTransaction req) throws IOException { argument
59 if (req.getRequestURI().toString().equals("/redirect/file.html") &&
60 req.getRequestHeader("Host").equals("localhost:"+server.getLocalPort())) {
61 req.setResponseEntityBody ("Hello .");
62 req
70 request(HttpTransaction req) argument
[all...]
H A DSetChunkedStreamingMode.java38 void okReply (HttpTransaction req) throws IOException { argument
39 req.setResponseEntityBody ("Hello .");
40 req.sendResponse (200, "Ok");
42 req.orderlyClose();
45 public void request (HttpTransaction req) { argument
47 okReply (req);
H A DResponseCacheStream.java39 void okReply (HttpTransaction req) throws IOException { argument
40 req.setResponseEntityBody ("Hello, This is the response body. Let's make it as long as possible since we need to test the cache mechanism.");
41 req.sendResponse (200, "Ok");
43 req.orderlyClose();
46 public void request (HttpTransaction req) { argument
48 okReply (req);
/openjdk7/langtools/test/tools/javac/generics/
H A DT6751514.java76 static void equals(int found, int req) { argument
77 if (found != req) {
78 throw new AssertionError("Error (expected: "+ req +
H A DT6869075.java61 static void equals(String found, String req) { argument
62 if (!found.equals(req)) {
63 throw new AssertionError("Error (expected: "+ req +
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpSubNextRequestHandler.java63 SnmpPdu req) {
64 super(agent,req);
65 init(req, server);
72 SnmpPdu req) {
73 super(engine, incRequest, agent, req);
74 init(req, server);
81 private void init(SnmpPdu req, SnmpAdaptorServer server) { argument
87 final SnmpVarBind[] list= req.varBindList;
61 SnmpSubNextRequestHandler(SnmpAdaptorServer server, SnmpMibAgent agent, SnmpPdu req) argument
68 SnmpSubNextRequestHandler(SnmpEngine engine, SnmpAdaptorServer server, SnmpIncomingRequest incRequest, SnmpMibAgent agent, SnmpPdu req) argument
H A DSnmpSubBulkRequestHandler.java66 SnmpPdu req,
70 super(engine, incRequest, agent, req);
71 init(server, req, nonRepeat, maxRepeat, R);
80 SnmpPdu req,
84 super(agent, req);
85 init(server, req, nonRepeat, maxRepeat, R);
136 SnmpPdu req,
146 final SnmpVarBind[] list= req.varBindList;
62 SnmpSubBulkRequestHandler(SnmpEngine engine, SnmpAdaptorServer server, SnmpIncomingRequest incRequest, SnmpMibAgent agent, SnmpPdu req, int nonRepeat, int maxRepeat, int R) argument
78 SnmpSubBulkRequestHandler(SnmpAdaptorServer server, SnmpMibAgent agent, SnmpPdu req, int nonRepeat, int maxRepeat, int R) argument
135 init(SnmpAdaptorServer server, SnmpPdu req, int nonRepeat, int maxRepeat, int R) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DSEIInvokerTube.java81 public @NotNull NextAction processRequest(@NotNull Packet req) { argument
84 wsdlOp = ((WSEndpointImpl) getEndpoint()).getOperationDispatcher().getWSDLOperationQName(req);
85 Packet res = wsdlOpMap.get(wsdlOp).invoke(req);
89 return doReturnWith(req.createServerResponse(e.fault, model.getPort(), null, binding));
H A DEndpointMethodHandler.java228 public Packet invoke(Packet req) { argument
229 Message reqMsg = req.getMessage();
241 if (isOneWay && req.transportBackChannel != null) {
242 req.transportBackChannel.close();
246 Object ret = owner.getInvoker(req).invoke(req, method, args);
270 return req.createServerResponse(responseMessage, req.endpoint.getPort(), javaMethodModel.getOwner(), req.endpoint.getBinding());
/openjdk7/jdk/test/sun/misc/URLClassPath/
H A DClassnameCharTest.java39 public void request (HttpTransaction req) { argument
41 String filename = req.getRequestURI().getPath();
42 System.out.println("getRequestURI = "+req.getRequestURI());
45 req.setResponseEntityBody(fis);
46 req.sendResponse(200, "OK");
47 req.orderlyClose();
/openjdk7/jdk/test/sun/net/www/
H A DAuthHeaderTest.java41 void errorReply (HttpTransaction req, String reply) throws IOException { argument
42 req.addResponseHeader ("Connection", "close");
43 req.addResponseHeader ("Www-authenticate", reply);
44 req.sendResponse (401, "Unauthorized");
45 req.orderlyClose();
48 void okReply (HttpTransaction req) throws IOException { argument
49 req.setResponseEntityBody ("Hello .");
50 req.sendResponse (200, "Ok");
51 req.orderlyClose();
54 public void request (HttpTransaction req) { argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/mpm/
H A DSnmpMsgTranslator.java87 public void setContextName(SnmpMsg req, byte[] contextName); argument
91 public void setContextEngineId(SnmpMsg req, byte[] contextEngineId); argument

Completed in 131 milliseconds

1234