Home
last modified time | relevance | path

Searched refs:content_len (Results 1 – 11 of 11) sorted by relevance

/third_party/json/third_party/amalgamate/
Damalgamate.py152 content_len = len(self.content)
153 while i < content_len:
180 content_len = len(self.content)
181 if content_len < len("#include <x>"):
208 content_len = len(self.content)
209 if content_len < len("#include <x>"):
/third_party/toybox/toys/pending/
Ddhcp6.c354 uint16_t iana_len, content_len = 0; in parse_ia_na() local
371 content_len = ntohs(*((uint16_t*)(t+2))); in parse_ia_na()
387 iana_len -= (content_len + 4); in parse_ia_na()
388 t += (content_len + 4); in parse_ia_na()
391 content_len = ntohs(*((uint16_t*)(t+2))); in parse_ia_na()
393 iana_len -= (content_len + 4); in parse_ia_na()
394 t += (content_len + 4); in parse_ia_na()
397 content_len = ntohs(*((uint16_t*)(t+2))); in parse_ia_na()
398 iana_len -= (content_len + 4); in parse_ia_na()
399 t += (content_len + 4); in parse_ia_na()
/third_party/mbedtls/library/
Dssl_cli.c3484 size_t content_len; in ssl_write_client_key_exchange() local
3496 content_len = mbedtls_dhm_get_len( &ssl->handshake->dhm_ctx ); in ssl_write_client_key_exchange()
3498 MBEDTLS_PUT_UINT16_BE( content_len, ssl->out_msg, 4 ); in ssl_write_client_key_exchange()
3503 &ssl->out_msg[header_len], content_len, in ssl_write_client_key_exchange()
3591 content_len = own_pubkey_ecpoint_len + 1; in ssl_write_client_key_exchange()
3640 &content_len, in ssl_write_client_key_exchange()
3659 ssl->handshake->ecrs_n = content_len; in ssl_write_client_key_exchange()
3665 content_len = ssl->handshake->ecrs_n; in ssl_write_client_key_exchange()
3704 content_len = ssl->conf->psk_identity_len; in ssl_write_client_key_exchange()
3706 if( header_len + 2 + content_len > MBEDTLS_SSL_OUT_CONTENT_LEN ) in ssl_write_client_key_exchange()
[all …]
/third_party/lwip/src/include/lwip/apps/
Dhttpd.h210 u16_t http_request_len, int content_len, char *response_uri,
Dhttp_client.h123 …done_fn)(httpc_state_t *connection, void *arg, struct pbuf *hdr, u16_t hdr_len, u32_t content_len);
/third_party/libwebsockets/lib/roles/http/
Dheader.c178 const char *content_type, lws_filepos_t content_len, in lws_add_http_common_headers() argument
210 content_len != LWS_ILLEGAL_HTTP_CONTENT_LEN) { in lws_add_http_common_headers()
211 if (lws_add_http_header_content_length(wsi, content_len, in lws_add_http_common_headers()
/third_party/mindspore/mindspore/ccsrc/ps/core/communicator/
Dhttp_message_handler.cc298 uint64_t HttpMessageHandler::content_len() const { return content_len_; } in content_len() function in mindspore::ps::core::HttpMessageHandler
316 body_->resize(content_len()); in InitBodySize()
Dhttp_message_handler.h105 uint64_t content_len() const;
/third_party/lwip/src/apps/http/
Dhttpd.c1817 int content_len; local
1819 content_len = atoi(content_len_num);
1820 if (content_len == 0) {
1823 content_len = -1;
1826 if (content_len >= 0) {
1835 err = httpd_post_begin(hs, uri, hdr_start_after_uri, hdr_data_len, content_len,
1845 hs->post_content_len_left = (u32_t)content_len;
/third_party/libwebsockets/include/libwebsockets/
Dlws-http.h707 const char *content_type, lws_filepos_t content_len,
/third_party/lwip/src/apps/http/makefsdata/
Dmakefsdata.c1110 int content_len = file_size; in file_write_http_header() local
1114 …ile, NEWLINE "/* \"%s%d\r\n\" (%"SZT_F"+ bytes) */" NEWLINE, cur_string, content_len, cur_len + 2); in file_write_http_header()
1121 lwip_itoa(intbuf, sizeof(intbuf), content_len); in file_write_http_header()