Lines Matching refs:node
577 coap_list_t *node; in new_option_node() local
579 node = coap_malloc(sizeof(coap_list_t) + sizeof(coap_option) + length); in new_option_node()
581 if (node) { in new_option_node()
583 option = (coap_option *)(node->data); in new_option_node()
591 return node; in new_option_node()
620 coap_list_t *node; in cmdline_content_type() local
655 node = new_option_node(key, coap_encode_var_bytes(buf, value[i]), buf); in cmdline_content_type()
656 if (node) { in cmdline_content_type()
657 LL_PREPEND(optlist, node); in cmdline_content_type()
982 get_context(const char *node, const char *port) { in get_context() argument
993 s = getaddrinfo(node, port, &hints, &result); in get_context()
1016 fprintf(stderr, "no context available for interface '%s'\n", node); in get_context()