Lines Matching refs:ga
462 pps->u.ga.err = err;
463 pps->u.ga.highest_sid = h2n->highest_sid;
464 lws_strncpy(pps->u.ga.str, reason, sizeof(pps->u.ga.str));
880 *p++ = (uint8_t)(pps->u.ga.highest_sid >> 24);
881 *p++ = (uint8_t)(pps->u.ga.highest_sid >> 16);
882 *p++ = (uint8_t)(pps->u.ga.highest_sid >> 8);
883 *p++ = (uint8_t)(pps->u.ga.highest_sid);
884 *p++ = (uint8_t)(pps->u.ga.err >> 24);
885 *p++ = (uint8_t)(pps->u.ga.err >> 16);
886 *p++ = (uint8_t)(pps->u.ga.err >> 8);
887 *p++ = (uint8_t)(pps->u.ga.err);
888 q = (unsigned char *)pps->u.ga.str;
890 while (*q && n++ < (int)sizeof(pps->u.ga.str))