Home
last modified time | relevance | path

Searched refs:aws_byte_buf_write_from_whole_cursor (Results 1 – 21 of 21) sorted by relevance

/dports/devel/aws-c-common/aws-c-common-0.6.15/tests/logging/
H A Dlogging_test_utilities.c49 …AWS_FATAL_ASSERT(aws_byte_buf_write_from_whole_cursor(&filename_buf, aws_byte_cursor_from_c_str(".… in aws_string_new_log_writer_test_filename()
53aws_byte_buf_write_from_whole_cursor(&filename_buf, aws_byte_cursor_from_c_str("aws_log_writer_tes… in aws_string_new_log_writer_test_filename()
59 …AWS_FATAL_ASSERT(aws_byte_buf_write_from_whole_cursor(&filename_buf, aws_byte_cursor_from_c_str(".… in aws_string_new_log_writer_test_filename()
/dports/devel/aws-c-http/aws-c-http-0.6.8/source/
H A Dh1_encoder.c162 return aws_byte_buf_write_from_whole_cursor(dst, crlf_cursor); in s_write_crlf()
175 wrote_all &= aws_byte_buf_write_from_whole_cursor(dst, header.name); in s_write_headers()
178 wrote_all &= aws_byte_buf_write_from_whole_cursor(dst, header.value); in s_write_headers()
260 wrote_all &= aws_byte_buf_write_from_whole_cursor(&message->outgoing_head_buf, method); in aws_h1_encoder_message_init_from_request()
262 wrote_all &= aws_byte_buf_write_from_whole_cursor(&message->outgoing_head_buf, uri); in aws_h1_encoder_message_init_from_request()
264 wrote_all &= aws_byte_buf_write_from_whole_cursor(&message->outgoing_head_buf, version); in aws_h1_encoder_message_init_from_request()
348 wrote_all &= aws_byte_buf_write_from_whole_cursor(&message->outgoing_head_buf, version); in aws_h1_encoder_message_init_from_response()
350 wrote_all &= aws_byte_buf_write_from_whole_cursor(&message->outgoing_head_buf, status_code); in aws_h1_encoder_message_init_from_response()
352 wrote_all &= aws_byte_buf_write_from_whole_cursor(&message->outgoing_head_buf, status_text); in aws_h1_encoder_message_init_from_response()
415 wrote_all &= aws_byte_buf_write_from_whole_cursor(dst, chunk_extension->key); in s_write_chunk_extension()
[all …]
H A Dwebsocket_encoder.c106 aws_byte_buf_write_from_whole_cursor(out_buf, network_bytes_cursor); in s_state_extended_length()
148 aws_byte_buf_write_from_whole_cursor(out_buf, cursor); in s_state_masking_key()
H A Dh2_frames.c715 writes_ok &= aws_byte_buf_write_from_whole_cursor(output, fragment); in s_encode_single_header_block_frame()
888 writes_ok &= aws_byte_buf_write_from_whole_cursor(output, chunk); in s_frame_prebuilt_encode()
1118 writes_ok &= aws_byte_buf_write_from_whole_cursor(&frame->encoded_buf, debug_data); in aws_h2_frame_new_goaway()
H A Dh1_connection.c979 aws_byte_buf_write_from_whole_cursor(storage_buf, *method_str); in s_decoder_on_request()
982 aws_byte_buf_write_from_whole_cursor(storage_buf, *uri); in s_decoder_on_request()
H A Dh2_decoder.c417 bool succ = aws_byte_buf_write_from_whole_cursor(&decoder->scratch, to_read); in aws_h2_decode()
H A Dwebsocket.c1421 if (!aws_byte_buf_write_from_whole_cursor(&io_msg->message_data, data)) { in s_decoder_on_midchannel_payload()
H A Dh2_connection.c1622 …if (!aws_byte_buf_write_from_whole_cursor(&msg->message_data, aws_h2_connection_preface_client_str… in s_send_connection_preface_client_string()
/dports/security/aws-c-auth/aws-c-auth-0.6.5/tests/
H A Dshared_credentials_test_definitions.h32 …AWS_FATAL_ASSERT(aws_byte_buf_write_from_whole_cursor(&filename_buf, aws_byte_cursor_from_c_str(".… in aws_create_process_unique_file_name()
36aws_byte_buf_write_from_whole_cursor(&filename_buf, aws_byte_cursor_from_c_str("config_creds_test"… in aws_create_process_unique_file_name()
/dports/devel/aws-c-common/aws-c-common-0.6.15/verification/cbmc/proofs/aws_byte_buf_write_from_whole_cursor/
H A DMakefile11 PROOF_UID = aws_byte_buf_write_from_whole_cursor
H A Daws_byte_buf_write_from_whole_cursor_harness.c31 if (aws_byte_buf_write_from_whole_cursor(&buf, src)) { in aws_byte_buf_write_from_whole_cursor_harness()
/dports/devel/aws-c-http/aws-c-http-0.6.8/tests/
H A Dtest_h1_server.c86 AWS_FATAL_ASSERT(aws_byte_buf_write_from_whole_cursor(storage, in_header->name)); in s_tester_on_request_header()
89 AWS_FATAL_ASSERT(aws_byte_buf_write_from_whole_cursor(storage, in_header->value)); in s_tester_on_request_header()
126 AWS_FATAL_ASSERT(aws_byte_buf_write_from_whole_cursor(&request->storage, *data)); in s_tester_on_request_body()
234 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&msg->message_data, data)); in s_send_message_cursor()
1059 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&expected, request_line)); in TEST_CASE()
1516 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&msg->message_data, data)); in s_send_message_cursor_close()
H A Dtest_websocket_handler.c174 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&written->payload, data)); in s_on_written_frame_payload()
228 AWS_FATAL_ASSERT(aws_byte_buf_write_from_whole_cursor(&incoming_frame->payload, data)); in s_on_incoming_frame_payload()
290 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(out_buf, sending_cursor)); in s_stream_readpush_payload()
438 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&msg->message_data, chunk)); in s_writepush()
561 aws_byte_buf_write_from_whole_cursor(out_buf, send_cursor); in s_on_stream_outgoing_payload()
H A Dtest_h1_client.c1131 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&expected, request_line)); in H1_CLIENT_TEST_CASE()
3261 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&sending_buf, response)); in s_switch_protocols()
3263 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&sending_buf, extra_data)); in s_switch_protocols()
/dports/devel/aws-c-common/aws-c-common-0.6.15/include/aws/common/
H A Dbyte_buf.h748 AWS_COMMON_API bool aws_byte_buf_write_from_whole_cursor(
/dports/devel/aws-c-mqtt/aws-c-mqtt-0.7.8/source/
H A Dclient_channel_handler.c502 …result = (int)aws_byte_buf_write_from_whole_cursor(&connection->thread_data.pending_packet, chunk)… in s_process_read_message()
558 …if (!aws_byte_buf_write_from_whole_cursor(&connection->thread_data.pending_packet, message_cursor)… in s_process_read_message()
H A Dclient.c2770 if (!aws_byte_buf_write_from_whole_cursor(&message->message_data, to_write_cur)) { in s_publish_send()
/dports/devel/aws-c-mqtt/aws-c-mqtt-0.7.8/tests/
H A Dmqtt_mock_server_handler.c238 aws_byte_buf_write_from_whole_cursor(&server->pending_packet, chunk); in s_mqtt_mock_server_handler_process_read_message()
263 aws_byte_buf_write_from_whole_cursor(&server->pending_packet, message_cursor); in s_mqtt_mock_server_handler_process_read_message()
/dports/devel/aws-c-http/aws-c-http-0.6.8/tests/fuzz/
H A Dfuzz_h2_decoder_correct.c482aws_byte_buf_write_from_whole_cursor(&frame_data, aws_byte_cursor_advance(&input, payload_length)); in LLVMFuzzerTestOneInput()
/dports/devel/aws-c-io/aws-c-io-0.10.12/include/aws/testing/
H A Dio_testing_channel.h589 ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&msg->message_data, data)); in testing_channel_send_data()
/dports/devel/aws-c-common/aws-c-common-0.6.15/source/
H A Dbyte_buf.c1448 bool aws_byte_buf_write_from_whole_cursor(struct aws_byte_buf *AWS_RESTRICT buf, struct aws_byte_cu… in aws_byte_buf_write_from_whole_cursor() function
1464 aws_byte_buf_write_from_whole_cursor(buf, write_cursor); in aws_byte_buf_write_to_capacity()