Lines Matching refs:textlen

102 	u_int16_t textlen;  in au_to_upriv()  local
106 textlen = strlen(priv) + 1; in au_to_upriv()
108 sizeof(u_int16_t) + textlen); in au_to_upriv()
113 ADD_U_INT16(dptr, textlen); in au_to_upriv()
114 ADD_STRING(dptr, priv, textlen); in au_to_upriv()
158 u_int16_t textlen; in au_to_arg32() local
160 textlen = strlen(text); in au_to_arg32()
161 textlen += 1; in au_to_arg32()
164 sizeof(u_int16_t) + textlen); in au_to_arg32()
171 ADD_U_INT16(dptr, textlen); in au_to_arg32()
172 ADD_STRING(dptr, text, textlen); in au_to_arg32()
182 u_int16_t textlen; in au_to_arg64() local
184 textlen = strlen(text); in au_to_arg64()
185 textlen += 1; in au_to_arg64()
188 sizeof(u_int16_t) + textlen); in au_to_arg64()
195 ADD_U_INT16(dptr, textlen); in au_to_arg64()
196 ADD_STRING(dptr, text, textlen); in au_to_arg64()
690 u_int16_t textlen; in au_to_text() local
692 textlen = strlen(text); in au_to_text()
693 textlen += 1; in au_to_text()
697 GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_int16_t) + textlen); in au_to_text()
702 ADD_U_INT16(dptr, textlen); in au_to_text()
703 ADD_STRING(dptr, text, textlen); in au_to_text()
718 u_int16_t textlen; in au_to_path() local
720 textlen = strlen(text); in au_to_path()
721 textlen += 1; in au_to_path()
723 GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_int16_t) + textlen); in au_to_path()
728 ADD_U_INT16(dptr, textlen); in au_to_path()
729 ADD_STRING(dptr, text, textlen); in au_to_path()
1441 u_int16_t textlen; in au_to_zonename() local
1444 textlen = strlen(zonename) + 1; in au_to_zonename()
1445 GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_int16_t) + textlen); in au_to_zonename()
1450 ADD_U_INT16(dptr, textlen); in au_to_zonename()
1451 ADD_STRING(dptr, zonename, textlen); in au_to_zonename()