Searched refs:bp (Results 226 - 250 of 519) sorted by relevance

1234567891011>>

/external/lldb/test/lang/c/array_types/
H A DTestArrayTypes.py106 bp = str(breakpoint)
107 self.expect(bp, msg="Breakpoint looks good", exe=False,
111 self.expect(bp, msg="Breakpoint is not resolved as yet", exe=False, matching=False,
140 bp = str(breakpoint)
141 self.expect(bp, "Breakpoint looks good and is resolved", exe=False,
/external/openssl/crypto/pem/
H A Dpem_lib.c273 int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm, const char *name, BIO *bp, argument
284 if (!PEM_read_bio(bp,&nm,&header,&data,&len)) {
333 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, argument
425 i=PEM_write_bio(bp,name,buf,data,i);
594 int PEM_write_bio(BIO *bp, const char *name, char *header, unsigned char *data, argument
605 if ( (BIO_write(bp,"-----BEGIN ",11) != 11) ||
606 (BIO_write(bp,name,nlen) != nlen) ||
607 (BIO_write(bp,"-----\n",6) != 6))
613 if ( (BIO_write(bp,header,i) != i) ||
614 (BIO_write(bp,"\
674 PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data, long *len) argument
[all...]
H A Dpem_info.c91 STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u)
120 i=PEM_read_bio(bp,&name,&header,&data,&len);
314 int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc, argument
374 i=PEM_write_bio(bp,PEM_STRING_RSA,buf,data,i);
382 if (PEM_write_bio_RSAPrivateKey(bp,
391 if ((xi->x509 != NULL) && (PEM_write_bio_X509(bp,xi->x509) <= 0))
/external/openssl/crypto/
H A Dsparcv9cap.c17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num) argument
19 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
20 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
25 return bn_mul_mont_fpu(rp,ap,bp,np,n0,num);
27 return bn_mul_mont_int(rp,ap,bp,np,n0,num);
/external/libedit/src/
H A Dmap.c1125 el_bindings_t *bp, *ep; local
1130 for (bp = el->el_map.help; bp < ep; bp++)
1131 if (bp->func == map[(unsigned char) *in]) {
1133 "%s\t->\t" FSTR "\n", outbuf, bp->name);
1147 el_bindings_t *bp, *ep; local
1165 for (bp = el->el_map.help; bp < ep; bp
1253 el_bindings_t *bp, *ep; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_info.c192 int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION* a)
194 i2a_ASN1_OBJECT(bp, a->method);
196 i2a_GENERAL_NAME(bp, a->location);
/external/ltrace/
H A Dproc.h230 int proc_add_breakpoint(struct process *proc, struct breakpoint *bp);
234 void proc_remove_breakpoint(struct process *proc, struct breakpoint *bp);
241 struct breakpoint *bp,
/external/openssl/crypto/x509v3/
H A Dv3_info.c186 int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION* a)
188 i2a_ASN1_OBJECT(bp, a->method);
190 i2a_GENERAL_NAME(bp, a->location);
/external/chromium_org/third_party/boringssl/src/crypto/pem/
H A Dpem_info.c92 STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u)
121 i=PEM_read_bio(bp,&name,&header,&data,&len);
311 int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc, argument
373 i=PEM_write_bio(bp,PEM_STRING_RSA,buf,data,i);
380 if (PEM_write_bio_RSAPrivateKey(bp,
388 if ((xi->x509 != NULL) && (PEM_write_bio_X509(bp,xi->x509) <= 0))
/external/openssl/crypto/bio/
H A Dbss_file.c443 static int MS_CALLBACK file_gets(BIO *bp, char *buf, int size) argument
448 if (bp->flags&BIO_FLAGS_UPLINK)
450 if (!UP_fgets(buf,size,bp->ptr))
455 if (!fgets(buf,size,(FILE *)bp->ptr))
464 static int MS_CALLBACK file_puts(BIO *bp, const char *str) argument
469 ret=file_write(bp,str,n);
/external/clang/test/CodeGen/
H A Dexprs.c22 const unsigned char *bp; local
23 bp -= (short)1;
/external/libmtp/examples/
H A Dsendtr.c66 char *cp, *bp; local
82 bp = buffer;
83 while ( bp != cp ) {
84 if ( *bp != ' ' && *bp != '\t' ) return bp;
85 bp++;
88 if (! required) return bp;
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp486 MachThreadList::NotifyBreakpointChanged (const DNBBreakpoint *bp) argument
492 m_threads[idx]->NotifyBreakpointChanged(bp);
498 MachThreadList::EnableHardwareBreakpoint (const DNBBreakpoint* bp) const
500 if (bp != NULL)
504 m_threads[idx]->EnableHardwareBreakpoint(bp);
510 MachThreadList::DisableHardwareBreakpoint (const DNBBreakpoint* bp) const
512 if (bp != NULL)
516 m_threads[idx]->DisableHardwareBreakpoint(bp);
/external/openssl/crypto/bn/asm/
H A Dalpha-mont.pl21 $bp="a2"; # const BN_ULONG *bp,
82 ldq $bi,0($bp) # bp[0]
165 s8addq $i,$bp,$bi
267 mov $rp,$bp # put rp aside
289 mov $bp,$rp # restore rp
292 bic $bp,$hi0,$bp
293 bis $bp,
[all...]
/external/qemu/include/sysemu/
H A Dkvm.h123 struct kvm_sw_breakpoint *bp);
125 struct kvm_sw_breakpoint *bp);
/external/tcpdump/
H A Dprint-icmp.c334 icmp_print(const u_char *bp, u_int plen, const u_char *bp2, int fragmented) argument
351 dp = (struct icmp *)bp;
352 ext_dp = (struct icmp_ext_t *)bp;
565 if (TTEST2(*bp, plen)) {
583 bp += 8;
585 ip = (struct ip *)bp;
586 snaplen = snapend - bp;
588 ip_print(gndo, bp, EXTRACT_16BITS(&ip->ip_len));
H A Dprint-igrp.c80 igrp_print(register const u_char *bp, u_int length, const u_char *bp2 _U_) argument
86 hdr = (struct igrphdr *)bp;
H A Dprint-sunrpc.c85 sunrpcrequest_print(register const u_char *bp, register u_int length, argument
96 rp = (struct sunrpc_msg *)bp;
H A Dprint-nfs.c160 print_nfsaddr(const u_char *bp, const char *s, const char *d) argument
174 switch (IP_V((struct ip *)bp)) {
176 ip = (struct ip *)bp;
182 ip6 = (struct ip6_hdr *)bp;
286 nfsreply_print(register const u_char *bp, u_int length, argument
293 rp = (const struct sunrpc_msg *)bp;
307 nfsreply_print_noaddr(bp, length, bp2);
316 nfsreply_print_noaddr(register const u_char *bp, u_int length, argument
327 rp = (const struct sunrpc_msg *)bp;
521 nfsreq_print(register const u_char *bp, u_in argument
552 nfsreq_print_noaddr(register const u_char *bp, u_int length, register const u_char *bp2) argument
969 xid_map_enter(const struct sunrpc_msg *rp, const u_char *bp) argument
1020 xid_map_find(const struct sunrpc_msg *rp, const u_char *bp, u_int32_t *proc, u_int32_t *vers) argument
[all...]
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c576 mov bp,si local
3414 push bp
3415 mov bp, sp local
3422 mov cx, 10[bp] ; count
3425 mov ax, 4[bp] ; segment
3427 mov ax, 6[bp] ; offset
3429 mov al, 8[bp] ; value
3440 pop bp
3452 push bp
3453 mov bp, s local
3492 mov bp, sp local
3538 mov bp, sp local
3588 mov bp, sp local
3612 mov bp, sp local
3637 mov bp, sp local
3664 mov bp, sp local
3689 mov bp, sp local
3706 mov bp, sp local
3725 mov bp, sp local
3747 mov bp, sp local
[all...]
/external/bison/lib/
H A Dmemchr.c43 # include <bp-sym.h>
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dfile.c295 static int file_gets(BIO *bp, char *buf, int size) { argument
302 if (!fgets(buf, size, (FILE *)bp->ptr)) {
312 static int file_puts(BIO *bp, const char *str) { argument
313 return file_write(bp, str, strlen(str));
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2318.js59 var bp = Debug.setBreakPoint(f, 0); variable
/external/compiler-rt/include/sanitizer/
H A Dasan_interface.h68 void __asan_report_error(void *pc, void *bp, void *sp,
/external/lldb/include/lldb/Breakpoint/
H A DBreakpointSiteList.h164 typedef void (*BreakpointSiteSPMapFunc) (lldb::BreakpointSiteSP &bp, void *baton);

Completed in 759 milliseconds

1234567891011>>