Lines Matching refs:input_token

945 	gss_buffer_t input_token,
960 input_token,
978 gss_buffer_t input_token,
1026 input_token, &mechtok_in,
1128 put_neg_hints(unsigned char **buf_out, gss_buffer_t input_token,
1134 if (input_token->length == 0)
1137 if (input_token->length > buflen)
1141 if ((ret = gssint_put_der_length(input_token->length, buf_out,
1142 input_token->length)))
1144 TWRITE_STR(*buf_out, input_token->value, input_token->length);
1815 gss_buffer_t input_token,
1828 input_token,
1844 gss_buffer_t input_token,
1877 if (input_token == GSS_C_NO_BUFFER) {
1893 if (input_token->length == 0) {
1906 ret = acc_ctx_new(minor_status, input_token,
1916 ret = acc_ctx_cont(minor_status, input_token,
1927 * present in input_token. If neither is present, whether
2906 gss_buffer_t input_token;
2913 input_token = (gss_buffer_t)malloc(sizeof (gss_buffer_desc));
2915 if (input_token == NULL)
2918 input_token->length = gssint_get_der_length(buff_in, buff_length, &bytes);
2919 if ((int)input_token->length == -1) {
2920 free(input_token);
2923 input_token->value = malloc(input_token->length);
2925 if (input_token->value == NULL) {
2926 free(input_token);
2930 (void) memcpy(input_token->value, *buff_in, input_token->length);
2931 *buff_in += input_token->length;
2932 return (input_token);
2942 put_input_token(unsigned char **buf_out, gss_buffer_t input_token,
2948 if (input_token->length == 0)
2951 if (input_token->length > buflen)
2955 if ((ret = gssint_put_der_length(input_token->length, buf_out,
2956 input_token->length)))
2958 TWRITE_STR(*buf_out, input_token->value, input_token->length);
3125 /* alias into input_token */