Searched refs:bp (Results 126 - 150 of 671) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/err/
H A Derr_prn.c103 void ERR_print_errors(BIO *bp) argument
117 BIO_write(bp,buf2,(int)strlen(buf2));
119 BIO_write(bp,data,(int)strlen(data));
120 BIO_write(bp,"\n",1);
/macosx-10.10.1/OpenSSL098-52/src/crypto/asn1/
H A Df_enum.c66 int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a) argument
76 if (BIO_write(bp,"00",2) != 2) goto err;
85 if (BIO_write(bp,"\\\n",2) != 2) goto err;
90 if (BIO_write(bp,buf,2) != 2) goto err;
99 int a2i_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *bs, char *buf, int size) argument
109 bufsize=BIO_gets(bp,buf,size);
192 bufsize=BIO_gets(bp,buf,size);
H A Df_string.c64 int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type) argument
74 if (BIO_write(bp,"0",1) != 1) goto err;
83 if (BIO_write(bp,"\\\n",2) != 2) goto err;
88 if (BIO_write(bp,buf,2) != 2) goto err;
97 int a2i_ASN1_STRING(BIO *bp, ASN1_STRING *bs, char *buf, int size) argument
105 bufsize=BIO_gets(bp,buf,size);
197 bufsize=BIO_gets(bp,buf,size);
H A Df_int.c64 int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a) argument
74 if (BIO_write(bp, "-", 1) != 1) goto err;
80 if (BIO_write(bp,"00",2) != 2) goto err;
89 if (BIO_write(bp,"\\\n",2) != 2) goto err;
94 if (BIO_write(bp,buf,2) != 2) goto err;
103 int a2i_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *bs, char *buf, int size) argument
113 bufsize=BIO_gets(bp,buf,size);
204 bufsize=BIO_gets(bp,buf,size);
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dbpf.c193 static errno_t bpf_attachd(struct bpf_d *d, struct bpf_if *bp);
472 * Attach file to the bpf interface, i.e. make d listen on bp.
475 bpf_attachd(struct bpf_d *d, struct bpf_if *bp) argument
477 int first = bp->bif_dlist == NULL;
481 * Point d at bp, and add d to the interface's list of listeners.
485 d->bd_bif = bp;
486 d->bd_next = bp->bif_dlist;
487 bp->bif_dlist = d;
491 if (bp->bif_ifp->if_bpf == NULL) {
495 if (tmp->bif_ifp != bp
534 struct bpf_if *bp; local
1702 struct bpf_if *bp; local
1805 struct bpf_if *bp; local
1870 struct bpf_if *bp; local
1919 struct bpf_if *bp; local
2199 struct bpf_if *bp; local
2571 struct bpf_if *bp, *bp_prev, *bp_next; local
[all...]
/macosx-10.10.1/OpenSSH-189/osslshim/ossl/
H A Dossl-pem.h62 int PEM_write_bio_RSAPrivateKey(BIO *bp, RSA *x, const EVP_CIPHER *enc,
65 int PEM_write_bio_DSAPrivateKey(BIO *bp, DSA *x, const EVP_CIPHER *enc,
68 int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm, const char *name, BIO *bp,
70 int PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data, long *len);
71 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u);
/macosx-10.10.1/OpenSSL098-52/src/crypto/bio/
H A Dbss_log.c122 static void xopenlog(BIO* bp, char* name, int level);
123 static void xsyslog(BIO* bp, int priority, const char* string);
124 static void xcloselog(BIO* bp);
239 static int MS_CALLBACK slg_puts(BIO *bp, const char *str) argument
244 ret=slg_write(bp,str,n);
250 static void xopenlog(BIO* bp, char* name, int level) argument
272 bp->ptr= (char *)register_event_source(NULL, name);
275 static void xsyslog(BIO *bp, int priority, const char *string) argument
308 if(report_event && bp->ptr)
309 report_event(bp
313 xcloselog(BIO* bp) argument
324 xopenlog(BIO* bp, char* name, int level) argument
329 xsyslog(BIO *bp, int priority, const char *string) argument
375 xcloselog(BIO* bp) argument
381 xopenlog(BIO* bp, char* name, int level) argument
390 xsyslog(BIO *bp, int priority, const char *string) argument
395 xcloselog(BIO* bp) argument
[all...]
H A Dbf_null.c170 static int nullf_gets(BIO *bp, char *buf, int size) argument
172 if (bp->next_bio == NULL) return(0);
173 return(BIO_gets(bp->next_bio,buf,size));
177 static int nullf_puts(BIO *bp, const char *str) argument
179 if (bp->next_bio == NULL) return(0);
180 return(BIO_puts(bp->next_bio,str));
/macosx-10.10.1/Libinfo-459/gen.subproj/
H A Drthdr.c77 inet6_rthdr_init(bp, type)
78 void *bp;
81 struct cmsghdr *ch = (struct cmsghdr *)bp;
311 inet6_rth_init(void *bp, socklen_t bp_len, int type, int segments) argument
313 struct ip6_rthdr *rth = (struct ip6_rthdr *)bp;
325 memset(bp, 0, bp_len);
336 return (bp);
340 inet6_rth_add(void *bp, const struct in6_addr *addr) argument
342 struct ip6_rthdr *rth = (struct ip6_rthdr *)bp;
406 inet6_rth_segments(const void *bp) argument
431 inet6_rth_getaddr(const void *bp, int idx) argument
[all...]
/macosx-10.10.1/libpcap-48/libpcap/
H A Dpcap-nit.c111 register u_char *bp, *cp, *ep; local
125 bp = p->buffer;
127 bp = p->bp;
135 ep = bp + cc;
136 while (bp < ep) {
151 p->cc = ep - bp;
152 p->bp = bp;
157 nh = (struct nit_hdr *)bp;
[all...]
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Diconv.c204 char* bp; local
221 for (cp = tocode, bp = buf, count = MAX_WORD_LENGTH+10+1; ; cp++, bp++) {
227 *bp = c;
234 if (bp-buf >= 10 && memcmp(bp-10,"//TRANSLIT",10)==0) {
235 bp -= 10;
236 *bp = '\0';
240 if (bp-buf >= 8 && memcmp(bp
620 char* bp; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_x509_tp/lib/
H A DcuEnc64.c242 const unsigned char *bp; local
260 bp = news;
270 if (*bp & 0x80 || (c1 = asctobin[*bp]) & 0x80) {
274 bp++;
275 if (*bp & 0x80 || (c2 = asctobin[*bp]) & 0x80){
279 bp++;
280 if (*bp == PAD) {
289 bp
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dvstring.c285 static void vstring_extend(VBUF *bp, ssize_t incr) argument
287 size_t used = bp->ptr - bp->data;
302 new_len = bp->len + (bp->len > incr ? bp->len : incr);
303 if (new_len <= bp->len)
305 bp->data = (unsigned char *) myrealloc((char *) bp->data, new_len);
306 bp
320 vstring_buf_put_ready(VBUF *bp) argument
328 vstring_buf_space(VBUF *bp, ssize_t len) argument
[all...]
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-icmp6.c237 const u_char *bp, u_int length _U_)
239 struct nd_rpl_dio *dio = (struct nd_rpl_dio *)bp;
304 const u_char *bp, u_int length, const u_char *bp2, int fragmented)
314 dp = (struct icmp6_hdr *)bp;
325 if (TTEST2(bp[0], length)) {
391 print_unknown_data(bp,"\n\t",length);
531 icmp6_rrenum_print(bp, ep);
535 icmp6_nodeinfo_print(length, bp, ep);
584 print_unknown_data(bp,"\n\t", length);
595 get_upperlayer(u_char *bp, u_in argument
235 rpl_print(netdissect_options *ndo, const struct icmp6_hdr *hdr, const u_char *bp, u_int length _U_) argument
303 icmp6_print(netdissect_options *ndo, const u_char *bp, u_int length, const u_char *bp2, int fragmented) argument
669 icmp6_opt_print(const u_char *bp, int resid) argument
826 mld6_print(const u_char *bp) argument
842 mldv2_report_print(const u_char *bp, u_int len) argument
900 mldv2_query_print(const u_char *bp, u_int len) argument
1002 icmp6_nodeinfo_print(u_int icmp6len, const u_char *bp, const u_char *ep) argument
1251 icmp6_rrenum_print(const u_char *bp, const u_char *ep) argument
[all...]
/macosx-10.10.1/ncurses-44/ncurses/form/
H A Dfty_enum.c203 unsigned char *bp = (unsigned char *)field_buffer(field, 0); local
209 if ((res = Compare((unsigned char *)s, bp, ccase)) != NOMATCH)
216 if ((res = Compare((unsigned char *)p, bp, ccase)) != NOMATCH)
260 unsigned char *bp = (unsigned char *)field_buffer(field, 0); local
266 if (Compare((unsigned char *)(*kwds++), bp, ccase) == EXACT)
271 if ((cnt >= 0) || (Compare((const unsigned char *)dummy, bp, ccase) == EXACT))
298 unsigned char *bp = (unsigned char *)field_buffer(field, 0); local
304 if (Compare((unsigned char *)(*kwds--), bp, ccase) == EXACT)
311 if ((cnt >= 0) || (Compare((const unsigned char *)dummy, bp, ccase) == EXACT))
/macosx-10.10.1/tcsh-65/tcsh/
H A Dvms.termcap.c43 * in bp (which must be an array of 1024 chars). Returns 1 if
48 tgetent(char *bp, char *name) argument
57 capab = bp;
72 while (fgets(bp, 1024, fp) != NULL) {
74 if ((*bp == '#') || (*bp == '\n')) continue;
78 while (*(cp = &bp[strlen(bp) - 2]) == '\\')
89 sscanf(bp,"%[^|]",tmp);
98 ptr = bp;
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/vmalloc/
H A Dvmopen.c68 Block_t *bp, *np; local
141 bp = SEGBLOCK(seg);
142 SEG(bp) = seg;
143 size = ((seg->baddr - (Vmuchar_t*)bp)/ALIGN) * ALIGN; /**/ ASSERT(size > 0);
144 SIZE(bp) = size - 2*sizeof(Head_t); /**/ASSERT(SIZE(bp) > 0 && (SIZE(bp)%ALIGN) == 0);
145 SELF(bp) = bp;
146 /**/ ASSERT(SIZE(bp)
[all...]
/macosx-10.10.1/msdosfs-209.1.1/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_lookup.c212 buf_t bp; local
266 error = (int)buf_meta_bread(dep->de_pmp->pm_devvp, bn, blsize, vfs_context_ucred(context), &bp);
268 buf_brelse(bp);
275 dirp = (struct dosdirentry *)((char *)buf_dataptr(bp) + blkoff);
350 buf_brelse(bp);
358 buf_brelse(bp);
631 struct buf *bp; local
671 if ((error = (int)buf_meta_bread(pmp->pm_devvp, bn, blsize, vfs_context_ucred(context), &bp)) != 0) {
672 buf_brelse(bp);
675 ndep = bptoep(pmp, bp, offse
780 struct buf *bp; local
861 struct buf *bp = NULL; local
1019 struct buf *bp; local
1085 struct buf *bp = NULL; local
1242 struct buf *bp = NULL; local
1384 buf_t bp; local
[all...]
/macosx-10.10.1/ruby-106/ruby/
H A Ddln_find.c125 register char *bp; local
141 ((bp - fbuf) > 100 ? 100 : (int)(bp - fbuf)), fbuf, \
142 ((bp - fbuf) > 100 ? "..." : ""), \
196 ep = bp = 0;
205 bp = fbuf;
229 bp = fbuf;
253 memcpy(bp, home, i);
254 bp += i;
263 memcpy(bp, d
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_packbits.c74 unsigned char* bp = (unsigned char*) buf; local
89 b = *bp++, cc--, n = 1;
90 for (; cc > 0 && b == *bp; cc--, bp++)
199 PackBitsEncodeChunk(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
209 if (PackBitsEncode(tif, bp, chunk, s) < 0)
211 bp += chunk;
220 char *bp; local
226 bp = (char*) tif->tif_rawcp;
229 n = (long) *bp
[all...]
/macosx-10.10.1/MITKerberosShim-66/profile/
H A Dprof_init.c289 unsigned char *bp;
295 bp = *bufpp;
305 pack_int32(PROF_MAGIC_PROFILE, &bp, &remain);
306 pack_int32(fcount, &bp, &remain);
309 pack_int32(slen, &bp, &remain);
311 memcpy(bp, pfp->data->filespec, (size_t) slen);
312 bp += slen;
316 pack_int32(PROF_MAGIC_PROFILE, &bp, &remain);
318 *bufpp = bp;
342 unsigned char *bp;
[all...]
/macosx-10.10.1/ntp-92/libntp/
H A Ddolfptoa.c26 char *bp; local
159 bp = buf;
161 *bp++ = '-';
164 *bp++ = '.';
165 *bp++ = (char)(*cp++ + '0'); /* ascii dependent? */
167 *bp = '\0';
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Dread_termcap.c181 register char *bp; local
183 bp = buf;
191 if (*bp == '\0')
193 else if (*bp++ == ':')
200 for (cp = cap; *cp == *bp && *bp != '\0'; cp++, bp++)
204 if (*bp == '@')
207 if (*bp != '\0' && *bp !
340 register char *bp = buf; local
593 register char *bp; local
768 _nc_tgetent(char *bp, char **sourcename, int *lineno, const char *name) argument
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/pem/
H A Dpem_oth.c70 void *PEM_ASN1_read_bio(d2i_of_void *d2i, const char *name, BIO *bp, void **x, argument
78 if (!PEM_bytes_read_bio(&data, &len, NULL, name, bp, cb, u))
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/openssl/
H A Ddh.h158 #define d2i_DHparams_bio(bp,x) (DH *)ASN1_d2i_bio((char *(*)())DH_new, \
159 (char *(*)())d2i_DHparams,(bp),(unsigned char **)(x))
161 #define i2d_DHparams_bio(bp,x) ASN1_i2d_bio((int (*)())i2d_DHparams,(bp), \
164 #define i2d_DHparams_bio(bp,x) ASN1_i2d_bio(i2d_DHparams,(bp), \
193 int DHparams_print(BIO *bp, DH *x);
195 int DHparams_print(char *bp, DH *x);

Completed in 221 milliseconds

1234567891011>>