Home
last modified time | relevance | path

Searched refs:pldm_msgbuf_insert (Results 1 – 6 of 6) sorted by relevance

/openbmc/libpldm/src/oem/meta/
H A Dfile_io.c193 pldm_msgbuf_insert(buf, resp->completion_code); in encode_oem_meta_file_io_read_resp()
194 pldm_msgbuf_insert(buf, resp->handle); in encode_oem_meta_file_io_read_resp()
195 pldm_msgbuf_insert(buf, resp->option); in encode_oem_meta_file_io_read_resp()
196 pldm_msgbuf_insert(buf, resp->length); in encode_oem_meta_file_io_read_resp()
200 pldm_msgbuf_insert(buf, resp->info.attr.size); in encode_oem_meta_file_io_read_resp()
201 pldm_msgbuf_insert(buf, resp->info.attr.crc32); in encode_oem_meta_file_io_read_resp()
204 pldm_msgbuf_insert(buf, resp->info.data.transferFlag); in encode_oem_meta_file_io_read_resp()
205 pldm_msgbuf_insert(buf, resp->info.data.offset); in encode_oem_meta_file_io_read_resp()
/openbmc/libpldm/tests/
H A Dmsgbuf_generic.c148 expect(pldm_msgbuf_insert(ctx, src) == 0); in test_msgbuf_insert_generic_int32()
170 expect(pldm_msgbuf_insert(ctx, src) == 0); in test_msgbuf_insert_generic_uint32()
192 expect(pldm_msgbuf_insert(ctx, src) == 0); in test_msgbuf_insert_generic_uint16()
214 expect(pldm_msgbuf_insert(ctx, src) == 0); in test_msgbuf_insert_generic_int16()
236 expect(pldm_msgbuf_insert(ctx, src) == 0); in test_msgbuf_insert_generic_uint8()
258 expect(pldm_msgbuf_insert(ctx, src) == 0); in test_msgbuf_insert_generic_int8()
/openbmc/libpldm/src/dsp/
H A Dplatform.c1246 pldm_msgbuf_insert(buf, completion_code); in encode_poll_for_platform_event_message_resp()
1247 pldm_msgbuf_insert(buf, tid); in encode_poll_for_platform_event_message_resp()
1248 rc = pldm_msgbuf_insert(buf, event_id); in encode_poll_for_platform_event_message_resp()
1272 pldm_msgbuf_insert(buf, transfer_flag); in encode_poll_for_platform_event_message_resp()
1273 pldm_msgbuf_insert(buf, event_class); in encode_poll_for_platform_event_message_resp()
1274 rc = pldm_msgbuf_insert(buf, event_data_size); in encode_poll_for_platform_event_message_resp()
1288 pldm_msgbuf_insert(buf, checksum); in encode_poll_for_platform_event_message_resp()
2267 pldm_msgbuf_insert(buf, poll_event->event_id); in encode_pldm_message_poll_event_data()
2692 pldm_msgbuf_insert(buf, format_version); in encode_poll_for_platform_event_message_req()
2909 pldm_msgbuf_insert(buf, effecter_id); in encode_get_state_effecter_states_req()
[all …]
H A Dpdr.c1527 pldm_msgbuf_insert(dst, header_length); in pldm_entity_association_pdr_add_contained_entity_to_remote_pdr()
1544 pldm_msgbuf_insert(dst, num_children); in pldm_entity_association_pdr_add_contained_entity_to_remote_pdr()
1653 pldm_msgbuf_insert(dst, *entity_record_handle); in pldm_entity_association_pdr_create_new()
1699 pldm_msgbuf_insert(dst, container_id); in pldm_entity_association_pdr_create_new()
1875 pldm_msgbuf_insert(dst, header_length); in pldm_entity_association_pdr_remove_contained_entity()
1897 pldm_msgbuf_insert(dst, num_children); in pldm_entity_association_pdr_remove_contained_entity()
1912 pldm_msgbuf_insert(dst, e.entity_type); in pldm_entity_association_pdr_remove_contained_entity()
1913 pldm_msgbuf_insert(dst, e.entity_instance_num); in pldm_entity_association_pdr_remove_contained_entity()
1914 pldm_msgbuf_insert(dst, e.entity_container_id); in pldm_entity_association_pdr_remove_contained_entity()
H A Dfirmware_update.c1019 pldm_msgbuf_insert(buf, data_transfer_handle); in encode_query_downstream_identifiers_req()
1021 pldm_msgbuf_insert(buf, (uint8_t)transfer_operation_flag); in encode_query_downstream_identifiers_req()
1155 pldm_msgbuf_insert(buf, data_transfer_handle); in encode_get_downstream_firmware_params_req()
1157 pldm_msgbuf_insert(buf, (uint8_t)transfer_operation_flag); in encode_get_downstream_firmware_params_req()
/openbmc/libpldm/src/
H A Dmsgbuf.h830 #define pldm_msgbuf_insert(dst, src) \ macro