Lines Matching refs:buff_in

3328 get_mech_oid(OM_uint32 *minor_status, unsigned char **buff_in, size_t length)  in get_mech_oid()  argument
3335 if (length < 1 || **buff_in != MECH_OID) in get_mech_oid()
3338 start = *buff_in; in get_mech_oid()
3341 (*buff_in)++; in get_mech_oid()
3342 toid.length = *(*buff_in)++; in get_mech_oid()
3344 if ((*buff_in + toid.length) > end) in get_mech_oid()
3347 toid.elements = *buff_in; in get_mech_oid()
3348 *buff_in += toid.length; in get_mech_oid()
3384 get_input_token(unsigned char **buff_in, unsigned int buff_length) in get_input_token() argument
3389 if (g_get_tag_and_length(buff_in, OCTET_STRING, buff_length, &len) < 0) in get_input_token()
3404 memcpy(input_token->value, *buff_in, input_token->length); in get_input_token()
3408 *buff_in += input_token->length; in get_input_token()
3446 get_mech_set(OM_uint32 *minor_status, unsigned char **buff_in, in get_mech_set() argument
3457 if (**buff_in != SEQUENCE_OF) in get_mech_set()
3460 start = *buff_in; in get_mech_set()
3461 (*buff_in)++; in get_mech_set()
3463 length = gssint_get_der_length(buff_in, buff_length, &bytes); in get_mech_set()
3473 gss_OID_desc *temp = get_mech_oid(minor_status, buff_in, in get_mech_set()
3474 buff_length - (*buff_in - start)); in get_mech_set()
3539 get_req_flags(unsigned char **buff_in, OM_uint32 bodysize, in get_req_flags() argument
3544 if (**buff_in != (CONTEXT | 0x01)) in get_req_flags()
3547 if (g_get_tag_and_length(buff_in, (CONTEXT | 0x01), in get_req_flags()
3551 if (*(*buff_in)++ != BIT_STRING) in get_req_flags()
3554 if (*(*buff_in)++ != BIT_STRING_LENGTH) in get_req_flags()
3557 if (*(*buff_in)++ != BIT_STRING_PADDING) in get_req_flags()
3560 *req_flags = (OM_uint32) (*(*buff_in)++ >> 1); in get_req_flags()