OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getContentLength
(Results
1 - 25
of
99
) sorted by null
1
2
3
4
/external/nist-sip/java/javax/sip/header/
ContentLengthHeader.java
8
int
getContentLength
();
/external/nist-sip/java/gov/nist/javax/sip/header/
ContentLength.java
108
public int
getContentLength
() {
154
return this.
getContentLength
() == o.
getContentLength
();
/external/apache-http/src/org/apache/http/
HttpEntity.java
106
long
getContentLength
();
/external/apache-http/src/org/apache/http/entity/
HttpEntityWrapper.java
82
public long
getContentLength
() {
83
return wrappedEntity.
getContentLength
();
BufferedHttpEntity.java
61
if (!entity.isRepeatable() || entity.
getContentLength
() < 0) {
68
public long
getContentLength
() {
72
return wrappedEntity.
getContentLength
();
ByteArrayEntity.java
64
public long
getContentLength
() {
EntityTemplate.java
60
public long
getContentLength
() {
BasicHttpEntity.java
64
public long
getContentLength
() {
FileEntity.java
66
public long
getContentLength
() {
InputStreamEntity.java
68
public long
getContentLength
() {
SerializableEntity.java
76
public long
getContentLength
() {
StringEntity.java
77
public long
getContentLength
() {
/external/apache-http/src/org/apache/http/util/
EntityUtils.java
68
if (entity.
getContentLength
() > Integer.MAX_VALUE) {
71
int i = (int)entity.
getContentLength
();
116
if (entity.
getContentLength
() > Integer.MAX_VALUE) {
119
int i = (int)entity.
getContentLength
();
/frameworks/base/core/java/android/webkit/
PluginData.java
107
public long
getContentLength
() {
/external/apache-http/src/org/apache/http/protocol/
RequestContent.java
79
if (entity.isChunked() || entity.
getContentLength
() < 0) {
86
request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.
getContentLength
()));
ResponseContent.java
75
long len = entity.
getContentLength
();
79
response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.
getContentLength
()));
RequestExpectContinue.java
68
if (entity != null && entity.
getContentLength
() != 0) {
/external/nist-sip/java/gov/nist/javax/sip/parser/
StringMsgParser.java
213
if (readBody && message.
getContentLength
() != null &&
214
message.
getContentLength
().
getContentLength
() != 0) {
220
message.setMessageContent(body,computeContentLengthFromMessage ,message.
getContentLength
().
getContentLength
() );
325
if (readBody && message.
getContentLength
() != null ) {
326
if ( message.
getContentLength
().
getContentLength
() != 0) {
328
message.setMessageContent(body,this.strict,computeContentLengthFromMessage,message.
getContentLength
().
getContentLength
());
[
all
...]
PipelinedMsgParser.java
293
.
getContentLength
();
296
contentLength = cl.
getContentLength
();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
HttpEntityStub.java
22
@Override public long
getContentLength
() {
/external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageChannel.java
499
+ (sipRequest.
getContentLength
() == null ? 0 : sipRequest
500
.
getContentLength
().
getContentLength
()) > sipStack
547
+ (sipResponse.
getContentLength
() == null ? 0 : sipResponse
548
.
getContentLength
().
getContentLength
()) > sipStack
TLSMessageChannel.java
468
+ (sipRequest.
getContentLength
() == null ? 0 : sipRequest
469
.
getContentLength
().
getContentLength
()) > sipStack
526
+ (sipResponse.
getContentLength
() == null ? 0 : sipResponse
527
.
getContentLength
().
getContentLength
()) > sipStack
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
DownloadInfo.java
79
public long
getContentLength
() {
233
.setContentLength(downloadInfo.
getContentLength
())
/frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java
141
if (entity.
getContentLength
() > 0) {
142
body = new byte[(int) entity.
getContentLength
()];
/external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java
101
if (entity.
getContentLength
() < 0) {
Completed in 302 milliseconds
1
2
3
4