Searched refs:wrappedEntity (Results 1 – 5 of 5) sorted by relevance
60 protected HttpEntity wrappedEntity; field in HttpEntityWrapper74 wrappedEntity = wrapped; in HttpEntityWrapper()80 return wrappedEntity.isRepeatable(); in isRepeatable()84 return wrappedEntity.isChunked(); in isChunked()88 return wrappedEntity.getContentLength(); in getContentLength()92 return wrappedEntity.getContentType(); in getContentType()96 return wrappedEntity.getContentEncoding(); in getContentEncoding()101 return wrappedEntity.getContent(); in getContent()106 wrappedEntity.writeTo(outstream); in writeTo()110 return wrappedEntity.isStreaming(); in isStreaming()[all …]
77 return wrappedEntity.getContentLength(); in getContentLength()85 return wrappedEntity.getContent(); in getContent()95 return (buffer == null) && wrappedEntity.isChunked(); in isChunked()115 wrappedEntity.writeTo(outstream); in writeTo()122 return (buffer == null) && wrappedEntity.isStreaming(); in isStreaming()
105 return new EofSensorInputStream(wrappedEntity.getContent(), this); in getContent()119 wrappedEntity.consumeContent(); in consumeContent()
246 Field wrappedEntity = HttpEntityWrapper.class.getDeclaredField("wrappedEntity"); in interceptResponseContent() local247 wrappedEntity.setAccessible(true); in interceptResponseContent()248 entity = (HttpEntity) wrappedEntity.get(entityWrapper); in interceptResponseContent()
2156 field @Deprecated protected org.apache.http.HttpEntity wrappedEntity;