Lines Matching refs:LWS_PRE
36 * ((uint8_t)&p[1]) + LWS_PRE.
38 * Notice we additionally take care to overallocate LWS_PRE before the
178 data = (uint8_t *)&msg[1] + LWS_PRE;
180 /* notice we allowed for LWS_PRE in the payload already */
202 /* notice we over-allocate by LWS_PRE + rx len */
203 msg = (proxy_msg_t *)malloc(sizeof(*msg) + LWS_PRE + len);
204 data = (uint8_t *)&msg[1] + LWS_PRE;
311 /* notice we over-allocate by LWS_PRE + rx len */
312 msg = (proxy_msg_t *)malloc(sizeof(*msg) + LWS_PRE + len);
313 data = (uint8_t *)&msg[1] + LWS_PRE;
338 data = (uint8_t *)&msg[1] + LWS_PRE;
340 /* notice we allowed for LWS_PRE in the payload already */