Lines Matching defs:csi_attr

266 	ComponentSyntaxInfo *csi_attr,
273 gser_decoder_func *decoder = csi_attr->csi_comp_desc->cd_gser_decoder;
280 if ( csi_attr->csi_comp_desc->cd_type_id == BASICTYPE_ANY )
281 decoder = ((ComponentAny*)csi_attr)->cai->GSER_Decode;
456 ComponentSyntaxInfo *csi_attr,
467 FOR_EACH_LIST_ELMT( comp_elmt, &((ComponentList*)csi_attr)->comp_list )
476 FOR_EACH_LIST_ELMT( comp_elmt, &((ComponentList*)csi_attr)->comp_list )
528 ComponentSyntaxInfo *csi_attr,
539 comp_convert_assert_to_comp( assert_mem_op, csi_attr, &ca->ca_ma_value, &csi_assert, &len, DEC_ALLOC_MODE_0 );
553 return csi_attr->csi_comp_desc->cd_all_match(
554 oid, csi_attr, csi_assert );
563 if ( comp_convert_asn_to_ldap( mr, csi_attr, &attr_bv, &allocated ) != LDAP_SUCCESS )
597 comp_test_components( void* attr_nm, void* assert_nm, ComponentSyntaxInfo* csi_attr, ComponentAssertion* ca) {
609 return comp_test_one_component ( attr_nm, assert_nm, csi_attr, ca );
611 csi_attr = (ComponentSyntaxInfo*)csi_attr->csi_comp_desc->cd_extract_i( attr_nm, cr, csi_attr );
612 if ( !csi_attr ) return LDAP_INVALID_SYNTAX;
623 rc = comp_test_one_component ( attr_nm, assert_nm, csi_attr, ca );
630 rc = comp_test_all_components ( attr_nm, assert_nm, csi_attr, ca );
649 rc = comp_test_one_component ( attr_nm, assert_nm, csi_attr, ca );
661 if ( csi_attr->csi_comp_desc->cd_type_id != BASICTYPE_BITSTRING ) {
662 bv.bv_val = ((ComponentBits*)csi_attr)->value.bits;
663 bv.bv_len = ((ComponentBits*)csi_attr)->value.bitLen;
665 else if ( csi_attr->csi_comp_desc->cd_type_id != BASICTYPE_BITSTRING ) {
666 bv.bv_val = ((ComponentOcts*)csi_attr)->value.octs;
667 bv.bv_len = ((ComponentOcts*)csi_attr)->value.octetLen;
690 rc = comp_test_one_component ( attr_nm, assert_nm, csi_attr, ca );
700 if (csi_attr->csi_comp_desc->cd_type_id != BASICTYPE_ANY )
702 rc = CheckSelectTypeCorrect( attr_nm, ((ComponentAny*)csi_attr)->cai, &cr->cr_curr->ci_val.ci_select_value );
706 csi_attr = ((ComponentAny*)csi_attr)->value;
709 rc = comp_test_components( attr_nm, assert_nm, csi_attr, ca);
711 rc = comp_test_one_component( attr_nm, assert_nm, csi_attr, ca);