HomeSort by relevance Sort by last modified time
    Searched refs:tnds (Results 1 - 6 of 6) sorted by null

  /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);
249 xml_node_create_text(ctx, tnds, NULL, "Value", val ? val : "");
253 node_to_tnds(ctx, new_uri ? out : tnds, node, new_uri);
399 printf("Invalid TNDS tree structure - "
425 xml_node_t * tnds_to_mo(struct xml_node_ctx *ctx, xml_node_t *tnds)
430 name = xml_node_get_localname(ctx, tnds);
    [all...]
xml-utils.h 92 xml_node_t * tnds_to_mo(struct xml_node_ctx *ctx, xml_node_t *tnds);
  /external/wpa_supplicant_8/hs20/client/
spp_client.c 79 xml_node_t *fnode, *tnds; local
90 tnds = mo_to_tnds(ctx, fnode, 0, urn, "syncml:dmddf1.2");
92 if (!tnds)
95 str = xml_node_to_str(ctx, tnds);
96 xml_node_free(ctx, tnds);
150 xml_node_t *node, *parent, *tnds, *unode; local
197 tnds = xml_node_from_buf(ctx->xml, tmp);
200 tnds = NULL;
202 tnds = xml_node_from_buf(ctx->xml, str);
204 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);
500 xml_node_t *node, *tnds, *unode, *pps_node; local
613 tnds = xml_node_from_buf(ctx->xml, data);
615 if (tnds == NULL) {
622 unode = tnds_to_mo(ctx->xml, tnds);
623 xml_node_free(ctx->xml, tnds);
723 xml_node_t *node, *tnds, *unode, *pps_node, *parent; local
    [all...]
osu_client.c 523 xml_node_t *tnds, *mo, *cert; local
616 tnds = xml_node_from_buf(ctx->xml, str);
618 if (tnds == NULL) {
624 mo = tnds_to_mo(ctx->xml, tnds);
626 wpa_printf(MSG_INFO, "[hs20] Could not parse addMO TNDS text");
631 debug_dump_node(ctx, "Parsed TNDS", mo);
1857 xml_node_t *tnds, *mo; local
    [all...]
  /external/wpa_supplicant_8/hs20/server/
spp_server.c 657 xml_node_t *node, *tnds; local
660 tnds = mo_to_tnds(ctx->xml, upd_node, 0, NULL, NULL);
661 if (!tnds)
664 str = xml_node_to_str(ctx->xml, tnds);
665 xml_node_free(ctx->xml, tnds);
1065 xml_node_t *child, *tnds, *mo; local
1097 tnds = xml_node_from_buf(ctx->xml, str);
1099 if (tnds == NULL) {
1105 if (xml_validate_dtd(ctx->xml, tnds, fname, ret_err) == 0)
1116 mo = tnds_to_mo(ctx->xml, tnds);
1328 xml_node_t *pps, *tnds; local
    [all...]

Completed in 1324 milliseconds