| /src/external/bsd/openldap/dist/libraries/liblber/ |
| sockbuf.c | 314 ber_pvt_sb_do_write( Sockbuf_IO_Desc *sbiod, Sockbuf_Buf *buf_out ) 319 assert( sbiod != NULL ); 320 assert( SOCKBUF_VALID( sbiod->sbiod_sb ) ); 326 ret = LBER_SBIOD_WRITE_NEXT( sbiod, buf_out->buf_base + 466 sb_stream_read( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len ) 468 assert( sbiod != NULL); 469 assert( SOCKBUF_VALID( sbiod->sbiod_sb ) ); 475 return tcpread( sbiod->sbiod_sb->sb_fd, 0, (unsigned char *)buf, 489 return recv( sbiod->sbiod_sb->sb_fd, buf, len, 0 ); 495 return nread( sbiod->sbiod_sb->sb_fd, buf, len ) [all...] |
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| sasl.c | 560 sb_sasl_generic_remove( Sockbuf_IO_Desc *sbiod ); 563 sb_sasl_generic_setup( Sockbuf_IO_Desc *sbiod, void *arg ) 568 assert( sbiod != NULL ); 577 p->sbiod = sbiod; 583 sbiod->sbiod_pvt = p; 588 sb_sasl_generic_remove( sbiod ); 597 sb_sasl_generic_remove( Sockbuf_IO_Desc *sbiod ) 601 assert( sbiod != NULL ); 603 p = (struct sb_sasl_generic_data *)sbiod->sbiod_pvt [all...] |
| tls_g.c | 1031 Sockbuf_IO_Desc *sbiod; member in struct:tls_data 1043 if ( p == NULL || p->sbiod == NULL ) { 1047 return LBER_SBIOD_READ_NEXT( p->sbiod, buf, len ); 1059 if ( p == NULL || p->sbiod == NULL ) { 1063 return LBER_SBIOD_WRITE_NEXT( p->sbiod, (char *)buf, len ); 1067 tlsg_sb_setup( Sockbuf_IO_Desc *sbiod, void *arg ) 1072 assert( sbiod != NULL ); 1083 p->sbiod = sbiod; 1084 sbiod->sbiod_pvt = p [all...] |
| tls_o.c | 1242 Sockbuf_IO_Desc *sbiod; member in struct:tls_data 1280 if ( p == NULL || p->sbiod == NULL ) { 1284 ret = LBER_SBIOD_READ_NEXT( p->sbiod, buf, len ); 1307 if ( p == NULL || p->sbiod == NULL ) { 1311 ret = LBER_SBIOD_WRITE_NEXT( p->sbiod, (char *)buf, len ); 1363 tlso_sb_setup( Sockbuf_IO_Desc *sbiod, void *arg ) 1368 assert( sbiod != NULL ); 1376 p->sbiod = sbiod; 1380 sbiod->sbiod_pvt = p [all...] |
| gssapi.c | 139 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug, 142 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug, 199 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug, 206 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug, 218 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug, 279 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug, 286 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug, 296 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug,
|
| cyrus.c | 170 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug, 199 ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug,
|
| /src/external/bsd/openldap/dist/include/ |
| lber.h | 189 int (*sbi_setup)( Sockbuf_IO_Desc *sbiod, void *arg ); 190 int (*sbi_remove)( Sockbuf_IO_Desc *sbiod ); 191 int (*sbi_ctrl)( Sockbuf_IO_Desc *sbiod, int opt, void *arg); 193 ber_slen_t (*sbi_read)( Sockbuf_IO_Desc *sbiod, void *buf, 195 ber_slen_t (*sbi_write)( Sockbuf_IO_Desc *sbiod, void *buf, 198 int (*sbi_close)( Sockbuf_IO_Desc *sbiod ); 202 #define LBER_SBIOD_READ_NEXT( sbiod, buf, len ) \ 203 ( (sbiod)->sbiod_next->sbiod_io->sbi_read( (sbiod)->sbiod_next, \ 205 #define LBER_SBIOD_WRITE_NEXT( sbiod, buf, len ) [all...] |
| lber_pvt.h | 69 ber_pvt_sb_do_write LDAP_P(( Sockbuf_IO_Desc *sbiod, Sockbuf_Buf *buf_out ));
|
| ldap_pvt.h | 336 Sockbuf_IO_Desc *sbiod; member in struct:sb_sasl_generic_data
|