Lines Matching defs:in

28  * A simple, tiny, nicely embeddable HTTP server in Java
42 * <li>Supports parameter parsing of GET and POST methods (+ rudimentary PUT support in 1.25)</li>
56 * <li>Contains a built-in list of most common mime types</li>
73 * Maximum time to wait on Socket.getInputStream().read() (in milliseconds)
87 * Pseudo-Parameter to use to store the actual query string in the parameters map for later re-processing.
151 * @throws IOException if the socket is in use.
264 * @param parms Parsed, percent decoded parameters from URI and, in case of POST, data.
467 * <p></p>This class stores its files in the standard location (that is,
504 * <p></p></[>By default, files are created by <code>File.createTempFile()</code> in
840 * Adds the files in the request body to the files map.
881 // The full header should fit in here.
966 BufferedReader in = null;
996 in = new BufferedReader(new InputStreamReader(bin));
999 // in data section, too, read it:
1025 decodeMultipartData(boundary, fbuf, in, parms, files);
1030 int read = in.read(pbuf);
1034 read = in.read(pbuf);
1050 safeClose(in);
1057 private void decodeHeader(BufferedReader in, Map<String, String> pre, Map<String, String> parms, Map<String, String> headers)
1061 String inLine = in.readLine();
1093 String line = in.readLine();
1098 line = in.readLine();
1111 private void decodeMultipartData(String boundary, ByteBuffer fbuf, BufferedReader in, Map<String, String> parms,
1116 String mpline = in.readLine();
1123 mpline = in.readLine();
1129 mpline = in.readLine();
1151 mpline = in.readLine();
1171 mpline = in.readLine();
1273 * Decodes parameters in percent-encoded URI-format ( e.g. "name=Jack%20Daniels&pass=Single%20Malt" ) and