Home
last modified time | relevance | path

Searched refs:body_size (Results 1 – 8 of 8) sorted by relevance

/external/libevent/include/event2/
Dhttp_struct.h95 size_t body_size; member
/external/libevent/
Dhttp.c885 if ((ev_uint64_t)ntoread > EV_SIZE_MAX - req->body_size) { in evhttp_handle_chunked_read()
889 if (req->body_size + (size_t)ntoread > req->evcon->max_body_size) { in evhttp_handle_chunked_read()
895 req->body_size += (size_t)ntoread; in evhttp_handle_chunked_read()
982 if ((size_t)(req->body_size + evbuffer_get_length(buf)) < req->body_size) { in evhttp_read_body()
987 req->body_size += evbuffer_get_length(buf); in evhttp_read_body()
998 req->body_size += n; in evhttp_read_body()
1002 if (req->body_size > req->evcon->max_body_size || in evhttp_read_body()
3473 req->body_size = 0; in evhttp_request_new()
DChangeLog505 o Correctly count req->body_size on http usage without Content-Length (8e342e5)
/external/v8/src/
Dfactory.cc1659 int body_size = desc.instr_size; in NewCode() local
1662 body_size = RoundUp(body_size, kInt64Size) + desc.unwinding_info_size + in NewCode()
1665 int obj_size = Code::SizeFor(RoundUp(body_size, kObjectAlignment)); in NewCode()
Dobjects.h5151 inline int body_size();
5217 static int SizeFor(int body_size) { in SizeFor() argument
5218 DCHECK_SIZE_TAG_ALIGNED(body_size); in SizeFor()
5219 return RoundUp(kHeaderSize + body_size, kCodeAlignment); in SizeFor()
Dobjects-inl.h6745 int Code::body_size() { in body_size() function
6795 int Code::CodeSize() { return SizeFor(body_size()); } in CodeSize()
/external/v8/src/heap/
Dspaces.cc1087 size_t body_size = commit_size - CodePageGuardStartOffset(); in AllocateChunk() local
1088 if (vm->Commit(body, body_size, true)) { in AllocateChunk()
1096 vm->Uncommit(body, body_size); in AllocateChunk()
/external/v8/src/wasm/
Dwasm-module.cc80 isolate->counters()->wasm_generated_code_size()->Increment(code->body_size()); in RecordStats()