HomeSort by relevance Sort by last modified time
    Searched full:bodysize (Results 1 - 15 of 15) sorted by null

  /libcore/support/src/test/java/tests/http/
RecordedRequest.java 28 private final int bodySize;
33 int bodySize, byte[] body, int sequenceNumber) {
37 this.bodySize = bodySize;
63 return bodySize;
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
RecordedRequest.java 32 private final int bodySize;
38 int bodySize, byte[] body, int sequenceNumber, Socket socket) {
42 this.bodySize = bodySize;
85 return bodySize;
  /libcore/benchmarks/src/benchmarks/regression/
URLConnectionBenchmark.java 31 @Param({"0", "1024", "1048576"}) private int bodySize;
47 transferEncoding.setBody(response, bodySize, chunkSize);
94 void setBody(MockResponse response, int bodySize, int chunkSize) throws IOException {
96 response.setBody(new byte[bodySize]);
98 response.setChunkedBody(new byte[bodySize], chunkSize);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/unix/
ConnectionUnix.cpp 63 MessageInfo(MessageID messageID, size_t bodySize, size_t initialAttachmentCount)
65 , m_bodySize(bodySize)
81 size_t bodySize() const { return m_bodySize; }
198 ASSERT(messageLength == sizeof(messageInfo) + messageInfo.attachmentCount() * sizeof(size_t) + (messageInfo.isMessageBodyOOL() ? 0 : messageInfo.bodySize()));
232 ASSERT(messageInfo.bodySize());
264 argumentDecoder = new ArgumentDecoder(messageBody, messageInfo.bodySize());
266 argumentDecoder = new ArgumentDecoder(messageBody, messageInfo.bodySize(), attachments);
  /external/chromium/chrome/common/extensions/docs/static/
experimental.webInspector.resources.html 39 if (resource.response.bodySize > 40*1024)
  /external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
ConnectionMac.cpp 119 static inline size_t machMessageSize(size_t bodySize, size_t numberOfPortDescriptors = 0, size_t numberOfOOLMemoryDescriptors = 0)
121 size_t size = sizeof(mach_msg_header_t) + bodySize;
235 size_t bodySize = header->msgh_size - sizeof(mach_msg_header_t);
238 return adoptPtr(new ArgumentDecoder(body, bodySize));
  /external/webkit/Source/WebCore/inspector/front-end/
HAREntry.js 66 bodySize: -1 // Not available.
84 bodySize: this._resource.resourceSize
NetworkManager.js 114 resource.resourceSize = cachedResource.bodySize;
Resource.js 267 var bodySize = Number(this.responseHeaders["Content-Length"] || this.resourceSize);
268 return this.responseHeadersSize + bodySize;
  /external/libogg/src/
framing.c 770 long bodysize=og->body_len; local
842 bodysize-=val;
851 if(bodysize){
852 if(_os_body_expand(os,bodysize)) return -1;
853 memcpy(os->body_data+os->body_fill,body,bodysize);
854 os->body_fill+=bodysize;
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.cpp 293 resourceObject->setNumber("bodySize", cachedResource.encodedSize());
Inspector.json 363 { "name": "bodySize", "type": "number", "description": "Cached response body size." }
    [all...]
  /external/chromium/chrome/common/extensions/docs/
experimental.webInspector.resources.html 358 if (resource.response.bodySize > 40*1024)
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
Tags.java     [all...]
  /external/webkit/Source/WebKit2/
ChangeLog-2011-02-16     [all...]

Completed in 313 milliseconds