Searched defs:contentLength (Results 1 - 5 of 5) sorted by relevance

/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/
H A DHttpCacheEntry.java69 int contentLength; field in class:HttpCacheEntry
H A DCachingResponseWrapper.java84 int contentLength = HttpCacheEntry.VALUE_NOT_SET; field in class:CachingResponseWrapper
172 this.contentLength = len;
379 entry.contentLength = contentLength;
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/
H A DMultipartStream.java137 private final long contentLength; field in class:MultipartStream.ProgressNotifier
151 contentLength = pContentLength;
172 listener.update(bytesRead, contentLength, items);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DResourceAttributes.java246 protected long contentLength = -1; field in class:ResourceAttributes
344 if (contentLength != -1L)
345 return contentLength;
352 contentLength = ((Long) value).longValue();
355 contentLength = Long.parseLong(value.toString());
365 return contentLength;
372 * @param contentLength New content length value
374 public void setContentLength(long contentLength) { argument
375 this.contentLength = contentLength;
[all...]
/glassfish-3.1.2/web/war-util/src/main/java/org/glassfish/web/loader/
H A DWebappClassLoader.java2131 int contentLength = -1;
2158 contentLength = (int) attributes.getContentLength();
2197 readEntryData(entry, name, binaryStream, contentLength, null);
2215 int contentLength = -1;
2240 contentLength = (int) jarEntry.getSize();
2260 readEntryData(entry, name, binaryStream, contentLength, jarEntry);
2345 int contentLength,
2352 byte[] binaryContent = new byte[contentLength];
2342 readEntryData(ResourceEntry entry, String name, InputStream binaryStream, int contentLength, JarEntry jarEntry) argument

Completed in 22 milliseconds