Lines Matching refs:pvo
773 const struct lws_protocol_vhost_options *pvo;
801 /* compute how much we need to hold all the pvo payloads */
803 pvo = (const struct lws_protocol_vhost_options *)in;
804 while (pvo) {
805 m += (int)strlen(pvo->value) + 1;
806 pvo = pvo->next;
812 pvo = (const struct lws_protocol_vhost_options *)in;
813 while (pvo) {
815 n = (int)strlen(pvo->value) + 1;
816 memcpy(start, pvo->value, (unsigned int)n);
820 if (!strcmp(pvo->name, pvo_names[m]))
823 pvo = pvo->next;
831 lwsl_notice("%s: require pvo '%s'\n", __func__,