Lines Matching refs:file2
68 /* send file2.1 */
69 File file2 = new File(FNPrefix+"file2.1");
72 out.print("Content-Length: "+file2.length()+"\r\n");
75 fis = new FileInputStream(file2);
76 byte[] buf = new byte[(int)file2.length()];
131 Integer.toString(ss.getLocalPort())+"/file2.1");
142 fileout = new File(OutFNPrefix+"file2.2");
152 // assert (headers1 == headers2 && file1 == file2.2)
154 File file2 = new File(OutFNPrefix+"file2.2");
156 files.add(file2);
158 if (!headers1.equals(headers2) || file1.length() != file2.length()) {
191 // save cache to file2.cache
192 // 1. serialize headers into file2.cache
193 // 2. write data to file2.cache
194 return new MyCacheRequest(OutFNPrefix+"file2.cache", conn.getHeaderFields());