Lines Matching refs:tag

64 /* return the tag - LBER_DEFAULT returned means trouble */
69 unsigned int tag;
79 tagp = (char *) &tag;
91 /* tag too big! */
96 return( tag >> (sizeof(int) - i - 1) );
102 unsigned int tag;
108 * Any ber element looks like this: tag length contents.
109 * Assuming everything's ok, we return the tag byte (we
118 * First, we read the tag.
121 if ( (tag = ber_get_tag( ber )) == LBER_DEFAULT )
147 return( tag );
154 unsigned int tag;
157 tag = ber_skip_tag( ber, len );
160 return( tag );
171 * The tag and length have already been stripped off. We should
196 unsigned int tag, len;
198 if ( (tag = ber_skip_tag( ber, &len )) == LBER_DEFAULT )
204 return( tag );
210 unsigned int datalen, tag;
215 if ( (tag = ber_skip_tag( ber, &datalen )) == LBER_DEFAULT )
245 return( tag );
251 unsigned int datalen, tag;
253 if ( (tag = ber_skip_tag( ber, &datalen )) == LBER_DEFAULT )
275 return( tag );
281 unsigned int len, tag;
286 if ( (tag = ber_skip_tag( ber, &len )) == LBER_DEFAULT )
310 return( tag );
316 unsigned int datalen, tag;
319 if ( (tag = ber_skip_tag( ber, &datalen )) == LBER_DEFAULT )
333 return( tag );
339 unsigned int len, tag;
341 if ( (tag = ber_skip_tag( ber, &len )) == LBER_DEFAULT )
347 return( tag );
408 int *l, rc, tag;
476 case 't': /* tag of next item */
481 case 'T': /* skip tag of next item */
490 for ( tag = ber_first_element( ber, &len, &last );
491 tag != LBER_DEFAULT && rc != LBER_DEFAULT;
492 tag = ber_next_element( ber, &len, last ) ) {
511 for ( tag = ber_first_element( ber, &len, &last );
512 tag != LBER_DEFAULT && rc != LBER_DEFAULT;
513 tag = ber_next_element( ber, &len, last ) ) {