Home
last modified time | relevance | path

Searched refs:body_start (Results 1 – 10 of 10) sorted by relevance

/external/perfetto/src/trace_processor/perfetto_sql/grammar/
Dperfettosql_grammar_interface.h74 struct PerfettoSqlToken* body_start,
80 struct PerfettoSqlToken* body_start,
87 struct PerfettoSqlToken* body_start,
94 struct PerfettoSqlToken* body_start,
/external/perfetto/src/trace_processor/perfetto_sql/parser/
Dperfetto_sql_parser.cc212 PerfettoSqlToken* body_start, in OnPerfettoSqlCreateFunction() argument
235 state->tokenizer.Substr(PerfettoSqlTokenToToken(*body_start), in OnPerfettoSqlCreateFunction()
246 PerfettoSqlToken* body_start, in OnPerfettoSqlCreateTable() argument
254 state->tokenizer.Substr(PerfettoSqlTokenToToken(*body_start), in OnPerfettoSqlCreateTable()
264 PerfettoSqlToken* body_start, in OnPerfettoSqlCreateView() argument
272 PerfettoSqlTokenToToken(*body_start), header); in OnPerfettoSqlCreateView()
279 state->tokenizer.Substr(PerfettoSqlTokenToToken(*body_start), in OnPerfettoSqlCreateView()
322 PerfettoSqlToken* body_start, in OnPerfettoSqlCreateMacro() argument
333 state->tokenizer.Substr(PerfettoSqlTokenToToken(*body_start), in OnPerfettoSqlCreateMacro()
/external/federated-compute/fcp/tensorflow/
Dappend_slices_op.cc200 int64_t body_start; in FromFile() local
201 TF_RETURN_IF_ERROR(file->Tell(&body_start)); in FromFile()
202 VLOG(1) << "Appending to checkpoint with starting position " << body_start; in FromFile()
205 new AppendedFileWithStartPosFooter(std::move(file), body_start)); in FromFile()
226 int64_t body_start) in AppendedFileWithStartPosFooter() argument
227 : file_(std::move(file)), body_start_(body_start) {} in AppendedFileWithStartPosFooter()
/external/wpa_supplicant_8/src/wps/
Dwps_upnp_web.c308 char *body_start; in web_connection_parse_get() local
392 body_start = wpabuf_put(buf, 0); in web_connection_parse_get()
404 body_length = (char *) wpabuf_put(buf, 0) - body_start; in web_connection_parse_get()
764 char *body_start = NULL; in web_connection_send_reply() local
816 body_start = wpabuf_put(buf, 0); in web_connection_send_reply()
850 if (body_start && put_length_here) { in web_connection_send_reply()
851 int body_length = (char *) wpabuf_put(buf, 0) - body_start; in web_connection_send_reply()
/external/mbedtls/scripts/
Dassemble_changelog.py154 bodies = [version_body[body_start:body_end].rstrip('\n') + '\n'
155 for (body_start, body_end) in zip(body_starts, body_ends)]
/external/cronet/stable/net/http/
Dhttp_stream_parser_unittest.cc1520 std::string body_start = std::string(user_buf_len, '#'); in TEST() local
1521 int body_start_size = body_start.size(); in TEST()
1523 std::string response_start = headers + body_start; in TEST()
1549 const std::string body_start = std::string(user_buf_len, '#'); in TEST() local
1550 const int body_start_size = body_start.size(); in TEST()
1554 const std::string body = body_start + body_end; in TEST()
1581 const std::string body_start = std::string(user_buf_len, '#'); in TEST() local
1582 const int body_start_size = body_start.size(); in TEST()
1586 const std::string body = body_start + body_end; in TEST()
1593 get_runner.AddRead(body_start); in TEST()
/external/cronet/tot/net/http/
Dhttp_stream_parser_unittest.cc1520 std::string body_start = std::string(user_buf_len, '#'); in TEST() local
1521 int body_start_size = body_start.size(); in TEST()
1523 std::string response_start = headers + body_start; in TEST()
1549 const std::string body_start = std::string(user_buf_len, '#'); in TEST() local
1550 const int body_start_size = body_start.size(); in TEST()
1554 const std::string body = body_start + body_end; in TEST()
1581 const std::string body_start = std::string(user_buf_len, '#'); in TEST() local
1582 const int body_start_size = body_start.size(); in TEST()
1586 const std::string body = body_start + body_end; in TEST()
1593 get_runner.AddRead(body_start); in TEST()
/external/openthread/third_party/mbedtls/repo/scripts/
Dassemble_changelog.py161 bodies = [version_body[body_start:body_end].rstrip('\n') + '\n'
162 for (body_start, body_end) in zip(body_starts, body_ends)]
/external/libwebm/webm_parser/demo/
Ddemo.cc625 const std::uint64_t body_start = header_end; in PrintElementMetadata() local
634 << ") body: [" << body_start << ", "; in PrintElementMetadata()
636 const std::uint64_t body_end = body_start + metadata.size; in PrintElementMetadata()
/external/python/cpython3/Lib/
Dmailbox.py1515 body_start = message.find(b'\n\n') + 2
1516 if body_start - 2 != -1:
1517 self._file.write(message[:body_start].replace(b'\n', linesep))
1519 self._file.write(message[:body_start].replace(b'\n', linesep))
1520 self._file.write(message[body_start:].replace(b'\n', linesep))