Home | History | Annotate | Download | only in support

Lines Matching refs:temp

40         File temp = cache.get(url);
41 if (temp == null) {
43 temp = File.createTempFile("hyts_local", ".tmp", null);
44 temp.deleteOnExit();
45 FileOutputStream out = new FileOutputStream(temp);
53 cache.put(url, temp);
55 return temp;
60 File temp = cache.get(url);
61 if (temp == null) {
63 temp = File.createTempFile("hyts_local", ".tmp", null);
64 temp.deleteOnExit();
65 FileOutputStream out = new FileOutputStream(temp);
73 cache.put(url, temp);
75 return temp;