Lines Matching refs:textlen

74 	u_int16_t textlen;  in au_to_upriv()  local
78 textlen = strlen(priv) + 1; in au_to_upriv()
80 sizeof(u_int16_t) + textlen); in au_to_upriv()
84 ADD_U_INT16(dptr, textlen); in au_to_upriv()
85 ADD_STRING(dptr, priv, textlen); in au_to_upriv()
128 u_int16_t textlen; in au_to_arg32() local
130 textlen = strlen(text); in au_to_arg32()
131 textlen += 1; in au_to_arg32()
134 sizeof(u_int16_t) + textlen); in au_to_arg32()
139 ADD_U_INT16(dptr, textlen); in au_to_arg32()
140 ADD_STRING(dptr, text, textlen); in au_to_arg32()
150 u_int16_t textlen; in au_to_arg64() local
152 textlen = strlen(text); in au_to_arg64()
153 textlen += 1; in au_to_arg64()
156 sizeof(u_int16_t) + textlen); in au_to_arg64()
161 ADD_U_INT16(dptr, textlen); in au_to_arg64()
162 ADD_STRING(dptr, text, textlen); in au_to_arg64()
612 u_int16_t textlen; in au_to_text() local
614 textlen = strlen(text); in au_to_text()
615 textlen += 1; in au_to_text()
619 GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_int16_t) + textlen); in au_to_text()
622 ADD_U_INT16(dptr, textlen); in au_to_text()
623 ADD_STRING(dptr, text, textlen); in au_to_text()
638 u_int16_t textlen; in au_to_path() local
640 textlen = strlen(text); in au_to_path()
641 textlen += 1; in au_to_path()
643 GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_int16_t) + textlen); in au_to_path()
646 ADD_U_INT16(dptr, textlen); in au_to_path()
647 ADD_STRING(dptr, text, textlen); in au_to_path()
1413 u_int16_t textlen; in au_to_zonename() local
1416 textlen = strlen(zonename) + 1; in au_to_zonename()
1417 GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_int16_t) + textlen); in au_to_zonename()
1420 ADD_U_INT16(dptr, textlen); in au_to_zonename()
1421 ADD_STRING(dptr, zonename, textlen); in au_to_zonename()