HomeSort by relevance Sort by last modified time
    Searched defs:bp (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /packages/apps/Email/tests/src/com/android/email/mail/internet/
MimeBodyPartTest.java 40 MimeBodyPart bp = new MimeBodyPart(); local
43 assertNull(bp.getContentId());
47 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, cid1);
48 assertEquals(cid1, bp.getContentId());
51 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, "<" + cid1 + ">");
52 assertEquals(cid1, bp.getContentId());
  /external/webkit/WebCore/platform/graphics/
FontFamily.cpp 49 const FontFamily* bp; local
50 for (ap = a.next(), bp = b.next(); ap != bp; ap = ap->next(), bp = bp->next()) {
51 if (!ap || !bp)
53 if (ap->family() != bp->family())
  /external/chromium/net/third_party/nss/ssl/
ssl3gthr.c 69 unsigned char *bp; local
89 bp = ((gs->state != GS_HEADER) ? lbp : gs->hdr) + gs->offset;
90 nb = ssl_DefRecv(ss, bp, gs->remainder, flags);
93 PRINT_BUF(60, (ss, "raw gather data:", bp, nb));
sslgathr.c 89 unsigned char * bp; local
116 bp = ((gs->state != GS_HEADER) ? pBuf : gs->hdr) + gs->offset;
117 nb = ssl_DefRecv(ss, bp, gs->remainder, flags);
119 PRINT_BUF(60, (ss, "raw gather data:", bp, nb));
ssltrace.c 73 char *bp; local
83 bp = buf;
87 *bp++ = hex[(ch >> 4) & 0xf];
88 *bp++ = hex[ch & 0xf];
89 *bp++ = ' ';
95 bp = buf;
99 if (bp > buf) {
134 char *bp; local
143 bp = buf;
146 *bp++ = hex[(ch >> 4) & 0xf]
    [all...]
  /external/libpcap/
etherent.c 93 char *bp; local
144 bp = e.name;
148 *bp++ = c;
151 *bp = '\0';
pcap-enet.c 56 register u_char *bp; local
77 bp = buf.p;
79 ph = (struct packet_header *)bp;
92 bp += inc;
pcap-nit.c 103 register u_char *bp, *cp, *ep; local
117 bp = p->buffer;
119 bp = p->bp;
127 ep = bp + cc;
128 while (bp < ep) {
143 p->cc = ep - bp;
144 p->bp = bp;
149 nh = (struct nit_hdr *)bp;
    [all...]
pcap-pf.c 90 register u_char *p, *bp; local
124 bp = pc->buffer + pc->offset;
126 bp = pc->bp;
150 pc->bp = bp;
160 if ((long)bp & 3) {
162 memcpy((char *)sp, (char *)bp, sizeof(*sp));
165 sp = (struct enstamp *)bp;
173 p = bp + sp->ens_stamplen
    [all...]
pcap-snit.c 117 register u_char *bp, *cp, *ep; local
134 bp = p->buffer;
136 bp = p->bp;
142 ep = bp + cc;
143 while (bp < ep) {
158 p->bp = bp;
159 p->cc = ep - bp;
165 cp = bp;
    [all...]
  /external/ipsec-tools/src/racoon/
vmbuf.h 38 * bp v
49 caddr_t bp; /* pointer to the buffer */ member in struct:_vchar_t_
security.c 70 caddr_t bp; local
87 bp = (caddr_t)(sab + 1); /* here bp points to first proposal payload */
90 pbuf = isakmp_parsewoh(ISAKMP_NPTYPE_P, (struct isakmp_gen *)bp, len);
114 bp = (caddr_t)prop + sizeof(struct isakmp_pl_p) + prop->spi_size;
117 tbuf = isakmp_parsewoh(ISAKMP_NPTYPE_T, (struct isakmp_gen *)bp, len);
  /external/openssl/crypto/lhash/
lh_stats.c 144 BIO *bp; local
146 bp=BIO_new(BIO_s_file());
147 if (bp == NULL) goto end;
148 BIO_set_fp(bp,fp,BIO_NOCLOSE);
149 lh_stats_bio(lh,bp);
150 BIO_free(bp);
156 BIO *bp; local
158 bp=BIO_new(BIO_s_file());
159 if (bp == NULL) goto end;
160 BIO_set_fp(bp,fp,BIO_NOCLOSE)
168 BIO *bp; local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/
MessageTestUtils.java 81 final MimeBodyPart bp = new MimeBodyPart(null, mimeType); local
83 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, contentId);
85 return bp;
187 final BodyPart bp = new MimeBodyPart(); local
188 bp.setBody(this.build());
189 return bp;
  /external/openssl/crypto/bn/
bn_add.c 108 BN_ULONG *ap,*bp,*rp,carry,t1,t2; local
127 bp=b->d;
130 carry=bn_add_words(rp,ap,bp,min);
133 bp+=min;
169 register BN_ULONG t1,t2,*ap,*bp,*rp; local
191 bp=b->d;
199 t2= *(bp++);
216 carry=bn_sub_words(rp,ap,bp,min);
218 bp+=min;
  /external/openssl/crypto/pem/
pem_pk8.c 69 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder,
73 static int do_pk8pkey_fp(FILE *bp, EVP_PKEY *x, int isder,
84 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
88 return do_pk8pkey(bp, x, 0, nid, NULL, kstr, klen, cb, u);
91 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
95 return do_pk8pkey(bp, x, 0, -1, enc, kstr, klen, cb, u);
98 int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
102 return do_pk8pkey(bp, x, 1, -1, enc, kstr, klen, cb, u);
105 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
109 return do_pk8pkey(bp, x, 1, nid, NULL, kstr, klen, cb, u)
214 BIO *bp; local
227 BIO *bp; local
    [all...]
  /bionic/libc/tzcode/
strptime.c 106 const unsigned char *bp; local
116 bp = (unsigned char *)buf;
123 while (isspace(*bp))
124 bp++;
137 if (c != *bp++)
161 if (!(bp = _strptime(bp, _ctloc(d_t_fmt), tm, 0)))
167 if (!(bp = _strptime(bp, "%m/%d/%y", tm, 0)))
173 if (!(bp = _strptime(bp, "%H:%M", tm, 0))
    [all...]
  /bionic/libc/unistd/
exec.c 139 char *bp, *cur, *path, buf[MAXPATHLEN]; local
151 bp = (char *)name;
155 bp = buf;
202 retry: (void)execve(bp, argv, environ);
218 memp[1] = bp;
  /external/tcpdump/
print-ntp.c 81 register const struct ntpdata *bp; local
84 bp = (struct ntpdata *)cp;
86 TCHECK(bp->status);
88 version = (int)(bp->status & VERSIONMASK) >> 3;
91 mode = bp->status & MODEMASK;
103 leapind = bp->status & LEAPMASK;
108 TCHECK(bp->stratum);
109 printf(", Stratum %u", bp->stratum);
111 TCHECK(bp->ppoll);
112 printf(", poll %us", bp->ppoll)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
BasicPermission2Test.java 41 BasicPermission bp = new BasicPermissionSubclass("aName"); field in class:BasicPermission2Test
62 assertEquals("Incorrect name returned", "aName", bp.getName());
93 assertTrue("a) Equal objects returned non-equal", bp.equals(bp2));
94 assertTrue("b) Equal objects returned non-equal", bp2.equals(bp));
95 assertTrue("a) Unequal objects returned equal", !bp.equals(bp3));
111 assertTrue("a) Incorrect actions returned, wanted the empty String", bp
129 bp.hashCode() == bp2.hashCode());
144 assertTrue("Equal objects should imply each other", bp.implies(bp2));
145 assertTrue("a) should not imply", !bp.implies(bp3));
164 PermissionCollection bpc = bp.newPermissionCollection()
    [all...]
  /external/chromium/net/http/
md4.cc 79 Uint8 *bp; const Uint32 *wp, *wpend; local
81 bp = out;
85 for (; wp != wpend; ++wp, bp += 4)
87 bp[0] = (Uint8) ((*wp ) & 0xFF);
88 bp[1] = (Uint8) ((*wp >> 8) & 0xFF);
89 bp[2] = (Uint8) ((*wp >> 16) & 0xFF);
90 bp[3] = (Uint8) ((*wp >> 24) & 0xFF);
97 Uint32 *wp; const Uint8 *bp, *bpend; local
100 bp = in;
103 for (; bp != bpend; bp += 4, ++wp
    [all...]
  /external/dbus/dbus/
dbus-string-util.c 48 const unsigned char *bp; local
60 bp = (const unsigned char*) c_str;
64 if (*ap != *bp)
68 ++bp;
72 _dbus_assert (*bp == '\0');
  /external/dhcpcd/
if-bsd.c 120 char *bp = rtm.buffer, *p; local
126 memcpy(bp, &(_su), l); \
127 bp += l; \
196 rtm.hdr.rtm_msglen = l = bp - (char *)&rtm;
  /external/jpeg/
ansi2knr.c 538 char **bp; local
555 bp = breaks;
563 if ( bp >= btop )
570 *bp++ = p;
629 { *bp++ = "va_alist";
634 if ( bp == breaks + 1 ) /* sole argument */
637 writeblanks(bp[-1] - 1, p);
638 bp--;
643 *bp++ = p+1;
648 *bp = p
    [all...]
  /external/kernel-headers/original/asm-arm/
processor.h 38 struct debug_entry bp[2]; member in struct:debug_info

Completed in 517 milliseconds

1 2 3 4