Searched refs:bv (Results 1 - 25 of 203) sorted by relevance

123456789

/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DAnnotationWriter.java62 private final ByteVector bv; field in class:AnnotationWriter
66 * annotation. See {@link #bv}.
95 * @param bv where the annotation values must be stored.
103 final ByteVector bv,
109 this.bv = bv;
121 bv.putShort(cw.newUTF8(name));
124 bv.put12('s', cw.newUTF8((String) value));
126 bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index);
129 bv
100 AnnotationWriter( final ClassWriter cw, final boolean named, final ByteVector bv, final ByteVector parent, final int offset) argument
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/
H A Dlber_pvt.h111 struct berval *bv, void *ctx ));
115 struct berval **bv, void *ctx ));
120 struct berval *bv, void *ctx ));
128 LDAP_CONST char *, ber_len_t len, int dup, struct berval *bv, void *ctx));
132 LDAP_CONST char *, ber_len_t len, int dup, struct berval *bv, void *ctx));
146 ber_bvarray_add_x LDAP_P(( BerVarray *p, BerValue *bv, void *ctx ));
172 #define ber_bvchr(bv,c) \
173 ((char *) memchr( (bv)->bv_val, (c), (bv)->bv_len ))
175 #define ber_bvrchr(bv,
[all...]
/macosx-10.10/zsh-61/zsh/Src/
H A Dprompt.c111 static Buf_vars bv; variable
201 new_vars.last = bv;
202 bv = &new_vars;
230 bv = new_vars.last;
239 if (bv->fm[1] == '{') {
241 bv->fm += 2; /* skip over F{ */
242 if ((ep = strchr(bv->fm, '}'))) {
247 coll = col = promptexpand(bv->fm, 0, NULL, NULL, NULL);
251 bv->fm = ep;
253 arg = match_colour((const char **)&bv
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dstring.c125 ldap_pvt_str2upperbv( char *str, struct berval *bv )
129 assert( bv != NULL );
138 bv->bv_val = str;
139 bv->bv_len = (ber_len_t)(s - str);
141 return( bv );
160 ldap_pvt_str2lowerbv( char *str, struct berval *bv )
164 assert( bv != NULL );
173 bv->bv_val = str;
174 bv->bv_len = (ber_len_t)(s - str);
176 return( bv );
[all...]
H A Dftest.c89 struct berval bv = BER_BVNULL; local
106 rc = ber_flatten2( ber, &bv, 0 );
112 printf( "BER encoding (len=%ld):\n", (long) bv.bv_len );
113 ber_bprint( bv.bv_val, bv.bv_len );
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dindex.c54 void slap_index2bvlen( slap_mask_t idx, struct berval *bv )
58 bv->bv_len = 0;
66 if ( bv->bv_len ) bv->bv_len++;
67 bv->bv_len += idxstr[i].word.bv_len;
73 void slap_index2bv( slap_mask_t idx, struct berval *bv )
78 if ( !bv->bv_len ) return;
80 ptr = bv->bv_val;
87 if ( ptr != bv->bv_val ) *ptr++ = ',';
H A DmatchedValues.c146 struct berval *bv; local
173 bv = a->a_nvals;
174 for ( j=0; !BER_BVISNULL( bv ); bv++, j++ ) {
179 bv, &ava->aa_value, &text );
217 struct berval *bv; local
221 for ( bv = a->a_vals, j = 0; !BER_BVISNULL( bv ); bv++, j++ );
239 struct berval *bv; local
276 struct berval *bv, assertedValue; local
[all...]
/macosx-10.10/tidy-15.15/tidy/src/
H A Dfileio.c33 int bv; local
35 bv = tidyBufPopByte( &fin->unget );
37 bv = fgetc( fin->fp );
38 return bv;
50 static void TIDY_CALL filesrc_ungetByte( void* sourceData, byte bv )
53 tidyBufPutByte( &fin->unget, bv );
81 void TIDY_CALL TY_(filesink_putByte)( void* sinkData, byte bv )
84 fputc( bv, fout );
H A Dbuffio.c35 static void TIDY_CALL insrc_ungetByte( void* appData, byte bv )
38 tidyBufUngetByte( buf, bv );
49 static void TIDY_CALL outsink_putByte( void* appData, byte bv )
52 tidyBufPutByte( buf, bv );
152 void TIDY_CALL tidyBufPutByte( TidyBuffer* buf, byte bv )
156 buf->bp[ buf->size++ ] = bv;
162 int bv = EOF; local
165 bv = buf->bp[ --buf->size ];
166 return bv;
175 int bv local
[all...]
H A Dfileio.h33 void TIDY_CALL TY_(filesink_putByte)( void* sinkData, byte bv );
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblber/
H A Ddecode.c89 /* Return tag, with *bv = rest of element (starting at length octets) */
91 ber_tag_and_rest( const BerElement *ber, struct berval *bv )
134 bv->bv_len = rest;
135 bv->bv_val = (char *) ptr;
143 struct berval bv; local
144 ber_tag_t tag = ber_tag_and_rest( ber, &bv );
146 ber->ber_ptr = bv.bv_val;
150 /* Return next element's tag and point *bv at its contents in-place */
152 ber_peek_element( const BerElement *ber, struct berval *bv )
159 assert( bv !
242 struct berval bv; local
252 struct berval bv; local
269 struct berval bv; local
316 struct berval bv; local
361 struct berval bv, *bvp = NULL; local
365 struct berval **bv; /* BvVec */ member in union:stringbvl_u
477 ber_get_stringbv( BerElement *ber, struct berval *bv, int option ) argument
511 ber_get_stringbv_null( BerElement *ber, struct berval *bv, int option ) argument
549 BerValue bv; local
563 BerValue bv; local
[all...]
H A Dmemory.c377 ber_bvfree_x( struct berval *bv, void *ctx ) argument
379 if( bv == NULL ) {
383 BER_MEM_VALID( bv );
385 if ( bv->bv_val != NULL ) {
386 ber_memfree_x( bv->bv_val, ctx );
389 ber_memfree_x( (char *) bv, ctx );
393 ber_bvfree( struct berval *bv )
395 ber_bvfree_x( bv, NULL );
399 ber_bvecfree_x( struct berval **bv, void *ctx ) argument
403 if( bv
427 ber_bvecadd_x( struct berval ***bvec, struct berval *bv, void *ctx ) argument
534 ber_str2bv_x( LDAP_CONST char *s, ber_len_t len, int dup, struct berval *bv, void *ctx) argument
571 ber_str2bv( LDAP_CONST char *s, ber_len_t len, int dup, struct berval *bv) argument
578 ber_mem2bv_x( LDAP_CONST char *s, ber_len_t len, int dup, struct berval *bv, void *ctx) argument
616 ber_mem2bv( LDAP_CONST char *s, ber_len_t len, int dup, struct berval *bv) argument
772 ber_bvarray_add_x( BerVarray *a, BerValue *bv, void *ctx ) argument
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-monitor/
H A Dbackend.c76 struct berval bv; local
82 bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Backend %d", i );
83 bv.bv_val = buf;
85 e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
96 ber_str2bv( bi->bi_type, 0, 0, &bv );
98 &bv, NULL );
100 &bv, NULL );
110 ber_str2bv( bi->bi_controls[ j ], 0, 0, &bv );
112 &bv, &bv );
[all...]
H A Dlistener.c72 struct berval bv; local
74 bv.bv_len = snprintf( buf, sizeof( buf ),
76 bv.bv_val = buf;
77 e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
96 struct berval bv; local
98 BER_BVSTR( &bv, "TLS" );
100 &bv, NULL );
105 struct berval bv; local
107 BER_BVSTR( &bv, "UDP" );
109 &bv, NUL
[all...]
H A Dtime.c49 struct berval bv, value; local
70 BER_BVSTR( &bv, "cn=Start" );
71 e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
77 bv.bv_val, ms->mss_ndn.bv_val, 0 );
96 bv.bv_val, ms->mss_ndn.bv_val, 0 );
106 BER_BVSTR( &bv, "cn=Current" );
107 e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
113 bv.bv_val, ms->mss_ndn.bv_val, 0 );
132 bv.bv_val, ms->mss_ndn.bv_val, 0 );
142 BER_BVSTR( &bv, "c
225 struct berval bv; local
[all...]
H A Dthread.c135 struct berval bv = BER_BVNULL; local
164 ber_str2bv( state, 0, 0, &bv );
167 BER_BVSTR( &bv, "unknown" );
175 bv.bv_val = buf;
176 bv.bv_len = snprintf( buf, sizeof( buf ), "%d", count );
180 if ( !BER_BVISNULL( &bv ) ) {
181 attr_merge_normalize_one( e, mi->mi_ad_monitoredInfo, &bv, NULL );
229 struct berval rdn, bv; local
267 bv.bv_val = buf;
270 bv
[all...]
H A Dconn.c54 struct berval bv; local
78 BER_BVSTR( &bv, "cn=Max File Descriptors" );
79 e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
86 bv.bv_val, ms->mss_ndn.bv_val, 0 );
91 bv.bv_val = buf;
92 bv.bv_len = snprintf( buf, sizeof( buf ), "%d", dtblsize );
95 BER_BVSTR( &bv, "0" );
97 attr_merge_one( e, mi->mi_ad_monitorCounter, &bv, NULL );
123 BER_BVSTR( &bv, "cn=Total" );
124 e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
274 struct berval bv, ctmbv, mtmbv; local
[all...]
H A Doverlay.c73 struct berval bv; local
78 bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Overlay %d", i );
79 bv.bv_val = buf;
80 e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
89 ber_str2bv( on->on_bi.bi_type, 0, 0, &bv );
90 attr_merge_normalize_one( e, mi->mi_ad_monitoredInfo, &bv, NULL );
96 &bv, NULL );
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-sql/
H A Dapi.c125 struct berval bv; local
133 ber_dupbv( &bv, dn );
139 * the contents of bv, freeing the original value
145 * the value of bv in case of error, and reset
148 rc = ( *ba->ba_dn2odbc )( op, rs, &bv );
152 assert( BER_BVISNULL( &bv ) );
159 assert( !BER_BVISNULL( &bv ) );
161 *dn = bv;
172 struct berval bv; local
180 ber_dupbv( &bv, d
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-dnssrv/
H A Dsearch.c138 struct berval bv; local
139 bv.bv_val = refdn;
140 bv.bv_len = strlen( refdn );
142 rc = dnNormalize( 0, NULL, NULL, &bv, &nrefdn, op->o_tmpmemctx );
185 struct berval bv; local
187 bv.bv_val = domain;
189 p = strchr( bv.bv_val, '.' );
191 if ( p == bv.bv_val ) {
192 bv.bv_len = 1;
195 bv
205 struct berval bv; local
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/acl/
H A Dgssacl.c98 struct berval *bv )
103 bv->bv_len = STRLENOF( " dynacl/gss/.expand=" ) +
106 bv->bv_val = ch_malloc( bv->bv_len + 1 );
108 ptr = lutil_strcopy( bv->bv_val, " dynacl/gss/" );
131 bv->bv_len = ptr - bv->bv_val;
201 struct berval bv; local
204 bv.bv_len = sizeof( buf ) - 1;
205 bv
284 struct berval bv; local
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Doverlayutils.c3 void dump_berval( struct berval *bv )
5 if (bv)
7 Debug( LDAP_DEBUG_BER, "berval len[%d] [%s]\n", bv->bv_len, bv->bv_val, 0);
H A Doverlayutils.h13 void dump_berval( struct berval *bv );
/macosx-10.10/tidy-15.15/tidy/include/
H A Dfileio.h33 void TIDY_CALL filesink_putByte( ulong sinkData, byte bv );
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Dconfig.c581 struct berval bv; local
621 bv.bv_val = buf;
622 bv.bv_len = ptr - buf;
623 ber_dupbv( bvout, &bv );
646 struct berval bv; local
676 rc = authzNormalize( 0, NULL, NULL, &in, &bv, NULL );
686 ber_bvarray_add( &si->si_authz, &bv );
696 ber_bvarray_add( &si->si_authz, &bv );
708 si->si_authz[ c->valx ] = bv;
718 struct berval bv; local
965 struct berval bv = BER_BVNULL; local
974 struct berval bv, bv2; local
1050 struct berval bv = BER_BVNULL; local
1667 struct berval bv; local
2291 struct berval *bv = NULL; local
[all...]

Completed in 273 milliseconds

123456789