HomeSort by relevance Sort by last modified time
    Searched refs:body_size (Results 1 - 14 of 14) sorted by null

  /external/grpc-grpc/src/core/lib/http/
format_request.h 30 size_t body_size);
format_request.cc 73 size_t body_size) {
95 static_cast<unsigned long>(body_size));
103 tmp = static_cast<char*>(gpr_realloc(tmp, out_len + body_size));
104 memcpy(tmp + out_len, body_bytes, body_size);
105 out_len += body_size;
httpcli.h 97 'body_bytes' and 'body_size' specify the payload for the post.
108 const char* body_bytes, size_t body_size,
119 size_t body_size,
httpcli.cc 284 const char* body_bytes, size_t body_size,
288 if (g_post_override && g_post_override(request, body_bytes, body_size,
295 name, grpc_httpcli_format_post_request(request, body_bytes, body_size));
  /external/libevent/include/event2/
http_struct.h 95 size_t body_size; member in struct:evhttp_request
  /external/v8/src/objects/
code.h 245 inline int body_size() const;
321 static int SizeFor(int body_size) {
322 DCHECK_SIZE_TAG_ALIGNED(body_size);
323 return RoundUp(kHeaderSize + body_size, kCodeAlignment);
    [all...]
code-inl.h 286 int Code::body_size() const { function in class:v8::internal::Code
338 int Code::CodeSize() const { return SizeFor(body_size()); }
  /external/tensorflow/tensorflow/core/kernels/data/
reader_dataset_ops.cc 454 uint64 body_size = variable
457 if (body_size % dataset()->record_bytes_ != 0) {
463 "\" has body length ", body_size,
577 uint64 body_size = variable
585 "\" has body length ", body_size,
612 uint64 body_size = file_size - (dataset()->header_bytes_ + variable
615 if (body_size % dataset()->record_bytes_ != 0) {
621 "\" has body length ", body_size,
    [all...]
  /external/grpc-grpc/test/core/security/
credentials_test.cc 566 size_t body_size, grpc_millis deadline, grpc_closure* on_done,
627 const grpc_httpcli_request* request, const char* body, size_t body_size) {
631 GPR_ASSERT(body_size != 0);
636 GPR_ASSERT(strlen(expected_body) == body_size);
637 GPR_ASSERT(memcmp(expected_body, body, body_size) == 0);
650 const grpc_httpcli_request* request, const char* body, size_t body_size,
653 validate_refresh_token_http_request(request, body, body_size);
660 const grpc_httpcli_request* request, const char* body, size_t body_size,
663 validate_refresh_token_http_request(request, body, body_size);
    [all...]
jwt_verifier_test.cc 322 size_t body_size, grpc_millis deadline, grpc_closure* on_done,
  /external/libevent/
http.c 931 /* ntoread is signed int64, body_size is unsigned size_t, check for under/overflow conditions */
932 if ((ev_uint64_t)ntoread > EV_SIZE_MAX - req->body_size) {
936 if (req->body_size + (size_t)ntoread > req->evcon->max_body_size) {
942 req->body_size += (size_t)ntoread;
1010 req->body_size += n;
1057 if ((size_t)(req->body_size + evbuffer_get_length(buf)) < req->body_size) {
1062 req->body_size += evbuffer_get_length(buf);
1073 req->body_size += n;
1077 if (req->body_size > req->evcon->max_body_size |
    [all...]
  /external/v8/src/wasm/
wasm-code-manager.cc 227 size_t body_size = instructions().size(); local
228 os << "Body (size = " << body_size << ")\n"; local
231 size_t instruction_size = body_size;
    [all...]
module-compiler.cc 428 counters->wasm_generated_code_size()->Increment(code->body_size());
    [all...]
  /external/v8/src/heap/
factory.cc 45 int body_size = desc.instr_size; local
48 body_size = RoundUp(body_size, kInt64Size) + desc.unwinding_info_size +
51 int object_size = Code::SizeFor(RoundUp(body_size, kObjectAlignment));
    [all...]

Completed in 536 milliseconds