Lines Matching refs:vh
727 struct lws_vhost *vh; in lws_create_context() local
754 vh = lws_create_vhost(context, &ii); in lws_create_context()
755 if (!vh) { in lws_create_context()
761 context->vhost_system = vh; in lws_create_context()
763 if (lws_protocol_init_vhost(vh, NULL)) { in lws_create_context()
1012 struct lws_vhost *vh = NULL, *vh1; in lws_context_destroy2() local
1071 vh = context->vhost_list; in lws_context_destroy2()
1072 while (vh) { in lws_context_destroy2()
1073 vh1 = vh->vhost_next; in lws_context_destroy2()
1074 __lws_vhost_destroy2(vh); in lws_context_destroy2()
1075 vh = vh1; in lws_context_destroy2()
1191 struct lws_vhost *vh = NULL; in lws_context_destroy() local
1262 vh = context->vhost_list; in lws_context_destroy()
1263 while (vh) { in lws_context_destroy()
1264 struct lws_vhost *vhn = vh->vhost_next; in lws_context_destroy()
1265 lws_vhost_destroy1(vh); in lws_context_destroy()
1266 vh = vhn; in lws_context_destroy()