Lines Matching refs:pvo
137 const struct lws_protocol_vhost_options *pvo = priv->env, *pvo1;
139 while (pvo) {
140 pvo1 = pvo;
141 free((char *)pvo->name);
142 free((char *)pvo->value);
143 pvo = pvo->next;
376 struct lws_protocol_vhost_options *pvo = malloc(sizeof(*pvo));
378 if (!pvo)
381 pvo->name = malloc(strlen(name) + 1);
382 if (!pvo->name) {
383 free(pvo);
387 pvo->value = malloc(strlen(value) + 1);
388 if (!pvo->value) {
389 free((char *)pvo->name);
390 free(pvo);
394 strcpy((char *)pvo->name, name);
395 strcpy((char *)pvo->value, value);
397 pvo->next = priv->env;
398 priv->env = pvo;
765 info.pvo = &pvo_ssh;