/external/wpa_supplicant_8/hs20/client/ |
spp_client.c | 77 xml_node_t *fnode, *tnds; local 83 tnds = mo_to_tnds(ctx, fnode, 0, urn, "syncml:dmddf1.2"); 85 if (!tnds) 88 str = xml_node_to_str(ctx, tnds); 89 xml_node_free(ctx, tnds); 143 xml_node_t *node, *parent, *tnds, *unode; local 190 tnds = xml_node_from_buf(ctx->xml, tmp); 193 tnds = NULL; 195 tnds = xml_node_from_buf(ctx->xml, str); 197 if (tnds == NULL) [all...] |
oma_dm_client.c | 199 xml_node_t *fnode, *tnds; local 205 tnds = mo_to_tnds(ctx->xml, fnode, 0, urn, "syncml:dmddf1.2"); 207 if (!tnds) 210 str = xml_node_to_str(ctx->xml, tnds); 211 xml_node_free(ctx->xml, tnds); 492 xml_node_t *node, *tnds, *unode, *pps_node; local 600 tnds = xml_node_from_buf(ctx->xml, data); 602 if (tnds == NULL) { 609 unode = tnds_to_mo(ctx->xml, tnds); 610 xml_node_free(ctx->xml, tnds); 706 xml_node_t *node, *tnds, *unode, *pps_node, *parent; local [all...] |
osu_client.c | 518 xml_node_t *tnds, *mo, *cert; local 594 tnds = xml_node_from_buf(ctx->xml, str); 596 if (tnds == NULL) { 602 mo = tnds_to_mo(ctx->xml, tnds); 604 wpa_printf(MSG_INFO, "[hs20] Could not parse addMO TNDS text"); 609 debug_dump_node(ctx, "Parsed TNDS", mo); 1831 xml_node_t *tnds, *mo; local [all...] |
/external/wpa_supplicant_8/src/utils/ |
xml-utils.c | 231 xml_node_t *tnds; local 240 tnds = xml_node_create(ctx, out, NULL, "Node"); 241 if (tnds == NULL) 243 xml_node_create_text(ctx, tnds, NULL, "NodeName", name); 246 xml_node_create_text(ctx, tnds, NULL, "Path", uri); 250 xml_node_create_text(ctx, tnds, NULL, "Value", val); 255 node_to_tnds(ctx, new_uri ? out : tnds, node, new_uri); 401 printf("Invalid TNDS tree structure - " 427 xml_node_t * tnds_to_mo(struct xml_node_ctx *ctx, xml_node_t *tnds) 432 name = xml_node_get_localname(ctx, tnds); [all...] |
/external/wpa_supplicant_8/hs20/server/ |
spp_server.c | 635 xml_node_t *node, *tnds; local 638 tnds = mo_to_tnds(ctx->xml, upd_node, 0, NULL, NULL); 639 if (!tnds) 642 str = xml_node_to_str(ctx->xml, tnds); 643 xml_node_free(ctx->xml, tnds); 1043 xml_node_t *child, *tnds, *mo; local 1075 tnds = xml_node_from_buf(ctx->xml, str); 1077 if (tnds == NULL) { 1083 if (xml_validate_dtd(ctx->xml, tnds, fname, ret_err) == 0) 1094 mo = tnds_to_mo(ctx->xml, tnds); 1306 xml_node_t *pps, *tnds; local [all...] |