Lines Matching refs:bytes

211 	short bytes;			/* length of string */  in au_to_arg32()  local
213 bytes = strlen(text) + 1; in au_to_arg32()
216 sizeof (short) + bytes)); in au_to_arg32()
223 adr_short(&adr, &bytes, 1); in au_to_arg32()
224 adr_char(&adr, text, bytes); in au_to_arg32()
240 short bytes; /* length of string */ in au_to_arg64() local
242 bytes = strlen(text) + 1; in au_to_arg64()
245 sizeof (short) + bytes)); in au_to_arg64()
252 adr_short(&adr, &bytes, 1); in au_to_arg64()
253 adr_char(&adr, text, bytes); in au_to_arg64()
709 short bytes; /* length of string */ in au_to_text() local
711 bytes = strlen(text) + 1; in au_to_text()
712 token = get_token((int)(sizeof (char) + sizeof (short) + bytes)); in au_to_text()
717 adr_short(&adr, &bytes, 1); in au_to_text()
718 adr_char(&adr, text, bytes); in au_to_text()
734 short bytes; /* length of string */ in au_to_path() local
736 bytes = (short)strlen(path) + 1; in au_to_path()
738 token = get_token((int)(sizeof (char) + sizeof (short) + bytes)); in au_to_path()
743 adr_short(&adr, &bytes, 1); in au_to_path()
744 adr_char(&adr, path, bytes); in au_to_path()
886 au_to_opaque(char *opaque, short bytes) in au_to_opaque() argument
892 if (bytes < 1) in au_to_opaque()
895 token = get_token((int)(sizeof (char) + sizeof (short) + bytes)); in au_to_opaque()
900 adr_short(&adr, &bytes, 1); in au_to_opaque()
901 adr_char(&adr, opaque, bytes); in au_to_opaque()
1170 short bytes; /* length of string */ in au_to_uauth() local
1172 bytes = strlen(text) + 1; in au_to_uauth()
1174 token = get_token((int)(sizeof (char) + sizeof (short) + bytes)); in au_to_uauth()
1179 adr_short(&adr, &bytes, 1); in au_to_uauth()
1180 adr_char(&adr, text, bytes); in au_to_uauth()
1196 short bytes; /* length of string */ in au_to_upriv() local
1198 bytes = strlen(priv) + 1; in au_to_upriv()
1201 bytes); in au_to_upriv()
1207 adr_short(&adr, &bytes, 1); in au_to_upriv()
1208 adr_char(&adr, priv, bytes); in au_to_upriv()
1224 short bytes; /* length of string */ in au_to_user() local
1226 bytes = (short)strlen(username) + 1; in au_to_user()
1229 bytes); in au_to_user()
1235 adr_short(&adr, &bytes, 1); in au_to_user()
1236 adr_char(&adr, username, bytes); in au_to_user()
1508 short bytes; /* length of string */ in au_to_zonename() local
1513 bytes = strlen(name) + 1; in au_to_zonename()
1514 token = get_token((int)(sizeof (char) + sizeof (short) + bytes)); in au_to_zonename()
1519 adr_short(&adr, &bytes, 1); in au_to_zonename()
1520 adr_char(&adr, name, bytes); in au_to_zonename()
1536 short bytes; /* length of string */ in au_to_fmri() local
1541 bytes = strlen(fmri) + 1; in au_to_fmri()
1542 token = get_token((int)(sizeof (char) + sizeof (short) + bytes)); in au_to_fmri()
1547 adr_short(&adr, &bytes, 1); in au_to_fmri()
1548 adr_char(&adr, fmri, bytes); in au_to_fmri()