Lines Matching refs:data_buffer

93 …_t obex_parser_process_data(obex_parser_t *obex_parser, const uint8_t *data_buffer, uint16_t data_…  in obex_parser_process_data()  argument
99 obex_parser->opcode = *data_buffer; in obex_parser_process_data()
105 obex_parser->response_code = *data_buffer; in obex_parser_process_data()
112 memcpy(&obex_parser->params[obex_parser->item_pos], data_buffer, bytes_to_consume); in obex_parser_process_data()
132 memcpy(&obex_parser->params[obex_parser->item_pos], data_buffer, bytes_to_consume); in obex_parser_process_data()
139 …obex_parser->header_id = *data_buffer; // constants in obex.h encode type as well, so just use the… in obex_parser_process_data()
140 header_type = *data_buffer >> 6; in obex_parser_process_data()
165 obex_parser->item_len = *data_buffer << 8; in obex_parser_process_data()
169 obex_parser->item_len = obex_parser->item_len + *data_buffer; in obex_parser_process_data()
186 … obex_parser->header_id, obex_parser->item_len, obex_parser->item_pos, data_buffer, bytes_to_consu… in obex_parser_process_data()
203 data_buffer += bytes_to_consume; in obex_parser_process_data()
247 … uint16_t data_offset, const uint8_t * data_buffer, uint16_t data_len){ in obex_parser_header_store() argument
249 memcpy(&header_buffer[data_offset], data_buffer, bytes_to_store); in obex_parser_header_store()
271 …am_parser_process_data(obex_app_param_parser_t *parser, const uint8_t *data_buffer, uint16_t data_… in obex_app_param_parser_process_data() argument
278 parser->tag_id = *data_buffer; in obex_app_param_parser_process_data()
282 parser->tag_len = *data_buffer; in obex_app_param_parser_process_data()
293 … parser->tag_id, (uint8_t) parser->tag_len, (uint8_t) parser->tag_pos, data_buffer, (uint8_t) byte… in obex_app_param_parser_process_data()
304 data_buffer += bytes_to_consume; in obex_app_param_parser_process_data()
334 … uint8_t data_offset, const uint8_t * data_buffer, uint8_t data_len){ in obex_app_param_parser_tag_store() argument
336 memcpy(&header_buffer[data_offset], data_buffer, bytes_to_store); in obex_app_param_parser_tag_store()