Searched defs:resp (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DB6890349.java57 String resp = "HTTP/1.1 200 Ok\r\nContent-length: 0\r\n\r\n"; field in class:B6890349
63 os.write (resp.getBytes());
H A DNTLMTest.java127 static void handleConnection(Socket s, String[] resp, int start, int end) { argument
134 //System.out.println("Output:" + resp[i]);
135 os.write(resp[i].getBytes("ASCII"));
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/6725892/
H A DTest.java247 static boolean checkResponse (InputStream is, String resp) { argument
256 if (!bos.toString().equals(resp)) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpRequestHandler.java938 SnmpPduPacket resp,
964 int vbCount = resp.varBindList.length ;
966 vbCount = Math.min(acceptedVbCount - 1, resp.varBindList.length) ;
970 vbCount = resp.varBindList.length / 2 ;
982 newVbList[i] = resp.varBindList[i] ;
986 "reduceResponsePdu", (resp.varBindList.length - newVbList.length) +
989 resp.varBindList = newVbList ;
992 return resp ;
937 reduceResponsePdu(SnmpPduPacket req, SnmpPduPacket resp, int acceptedVbCount) argument

Completed in 105 milliseconds