Home
last modified time | relevance | path

Searched refs:xml_parser (Results 1 – 2 of 2) sorted by relevance

/btstack/src/classic/
H A Dpbap_client.c201 yxml_init(&client->xml_parser, client->xml_buffer, sizeof(client->xml_buffer)); in pbap_client_vcard_listing_init_parser()
330 static void pbap_client_yml_append_character(yxml_t * xml_parser, char * buffer, uint16_t buffer_si… in pbap_client_yml_append_character() argument
332 uint16_t char_len = (uint16_t) strlen(xml_parser->data); in pbap_client_yml_append_character()
337 memcpy(&buffer[dest_len], xml_parser->data, char_len); in pbap_client_yml_append_character()
344 yxml_ret_t r = yxml_parse(&client->xml_parser, *data++); in pbap_client_process_vcard_list_body()
347 client->parser_card_found = strcmp("card", client->xml_parser.elem) == 0; in pbap_client_process_vcard_list_body()
358 if (strcmp("name", client->xml_parser.attr) == 0) { in pbap_client_process_vcard_list_body()
363 if (strcmp("handle", client->xml_parser.attr) == 0) { in pbap_client_process_vcard_list_body()
371 pbap_client_yml_append_character(&client->xml_parser, in pbap_client_process_vcard_list_body()
377 pbap_client_yml_append_character(&client->xml_parser, in pbap_client_process_vcard_list_body()
H A Dpbap_client.h172 yxml_t xml_parser; member