Lines Matching defs:context
57 lws_dhcpc_status(struct lws_context *context, lws_sockaddr46 *sa46)
61 lws_start_foreach_dll(struct lws_dll2 *, p, context->dhcpc_owner.head) {
78 lws_dhcpc_find(struct lws_context *context, const char *iface, int af)
84 lws_start_foreach_dll(struct lws_dll2 *, p, context->dhcpc_owner.head) {
101 lws_dhcpc_request(struct lws_context *context, const char *iface, int af,
104 lws_dhcpc_req_t *r = lws_dhcpc_find(context, iface, af);
123 r->context = context;
128 lws_dll2_add_head(&r->list, &context->dhcpc_owner); /* add him to list */
151 lws_dhcpc_remove(struct lws_context *context, const char *iface)
153 lws_dll2_foreach_safe(&context->dhcpc_owner, (void *)iface, _remove_if);