Searched defs:obuf (Results 1 - 25 of 27) sorted by relevance

12

/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs8.c25 char obuf[80]; local
87 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
88 wpa_printf(MSG_DEBUG, "PKCS #8: algorithm=%s", obuf);
99 "algorithm %s", obuf);
H A Dtlsv1_client_ocsp.c686 char obuf[80]; local
765 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
766 wpa_printf(MSG_DEBUG, "OCSP: responseType %s", obuf);
H A Dpkcs5.c96 char obuf[80]; local
138 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
140 obuf);
144 obuf);
242 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
244 obuf);
250 obuf);
283 char obuf[8 local
[all...]
H A Dtlsv1_cred.c448 char obuf[80]; local
476 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
477 wpa_printf(MSG_DEBUG, "PKCS #12: certId %s", obuf);
482 obuf);
582 char obuf[80]; local
596 asn1_oid_to_str(&a_oid, obuf, sizeof(obuf));
597 wpa_printf(MSG_DEBUG, "PKCS #12: attrId %s", obuf);
627 char obuf[8 local
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dpkcs8.c25 char obuf[80]; local
87 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
88 wpa_printf(MSG_DEBUG, "PKCS #8: algorithm=%s", obuf);
99 "algorithm %s", obuf);
H A Dtlsv1_client_ocsp.c686 char obuf[80]; local
765 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
766 wpa_printf(MSG_DEBUG, "OCSP: responseType %s", obuf);
H A Dpkcs5.c96 char obuf[80]; local
138 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
140 obuf);
144 obuf);
242 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
244 obuf);
250 obuf);
283 char obuf[8 local
[all...]
H A Dtlsv1_cred.c448 char obuf[80]; local
476 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
477 wpa_printf(MSG_DEBUG, "PKCS #12: certId %s", obuf);
482 obuf);
582 char obuf[80]; local
596 asn1_oid_to_str(&a_oid, obuf, sizeof(obuf));
597 wpa_printf(MSG_DEBUG, "PKCS #12: attrId %s", obuf);
627 char obuf[8 local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dpkcs8.c25 char obuf[80]; local
87 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
88 wpa_printf(MSG_DEBUG, "PKCS #8: algorithm=%s", obuf);
99 "algorithm %s", obuf);
H A Dtlsv1_client_ocsp.c686 char obuf[80]; local
765 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
766 wpa_printf(MSG_DEBUG, "OCSP: responseType %s", obuf);
H A Dpkcs5.c96 char obuf[80]; local
138 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
140 obuf);
144 obuf);
242 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
244 obuf);
250 obuf);
283 char obuf[8 local
[all...]
H A Dtlsv1_cred.c448 char obuf[80]; local
476 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
477 wpa_printf(MSG_DEBUG, "PKCS #12: certId %s", obuf);
482 obuf);
582 char obuf[80]; local
596 asn1_oid_to_str(&a_oid, obuf, sizeof(obuf));
597 wpa_printf(MSG_DEBUG, "PKCS #12: attrId %s", obuf);
627 char obuf[8 local
[all...]
/external/curl/lib/
H A Dbase64.c178 unsigned char obuf[4]; local
228 obuf[0] = (unsigned char) ((ibuf[0] & 0xFC) >> 2);
229 obuf[1] = (unsigned char) (((ibuf[0] & 0x03) << 4) | \
231 obuf[2] = (unsigned char) (((ibuf[1] & 0x0F) << 2) | \
233 obuf[3] = (unsigned char) (ibuf[2] & 0x3F);
238 table64[obuf[0]],
239 table64[obuf[1]]);
244 table64[obuf[0]],
245 table64[obuf[1]],
246 table64[obuf[
[all...]
/external/iproute2/ip/
H A Dipmroute.c61 char obuf[256]; local
121 len = snprintf(obuf, sizeof(obuf),
124 len = sprintf(obuf, "(unknown, ");
126 snprintf(obuf + len, sizeof(obuf) - len,
129 snprintf(obuf + len, sizeof(obuf) - len, "unknown) ");
131 fprintf(fp, "%-32s Iif: ", obuf);
/external/iptables/utils/
H A Dnfnl_osf.c150 static void xt_osf_parse_opt(struct xt_osf_opt *opt, __u16 *optnum, char *obuf, int olen) argument
156 ptr = &obuf[0];
162 switch (obuf[i]) {
165 ptr = xt_osf_strchr(&obuf[i], OPTDEL);
169 i += (int)(ptr - &obuf[i]);
175 ptr = xt_osf_strchr(&obuf[i], OPTDEL);
179 i += (int)(ptr - &obuf[i]);
185 ptr = xt_osf_strchr(&obuf[i], OPTDEL);
189 i += (int)(ptr - &obuf[i]);
195 ptr = xt_osf_strchr(&obuf[
273 char obuf[MAXOPTSTRLEN]; local
[all...]
/external/vboot_reference/utility/
H A Dbmpblk_util.c99 void *obuf; local
123 obuf = malloc(osize);
124 if (!obuf) {
132 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
135 free(obuf);
141 return obuf;
148 void *obuf; local
157 obuf = malloc(osize);
158 if (!obuf) {
169 free(obuf);
[all...]
H A Defidecompress.c1093 uint8_t *obuf = malloc(osize); local
1094 if (!obuf) {
1103 r = TianoDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
1110 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
1132 if (1 != fwrite(obuf, osize, 1, ofp)) {
1147 free(obuf);
H A Deficompress.c1674 uint8_t *obuf = malloc(osize); local
1675 if (!obuf) {
1684 EFI_STATUS r = EfiCompress(ibuf, isize, obuf, &osize);
1705 if (1 != fwrite(obuf, osize, 1, ofp)) {
1720 free(obuf);
/external/webrtc/talk/session/media/
H A Dyuvscaler_unittest.cc112 uint8_t* obuf = ALIGNP(obuffer.get(), kAlignment) + memoffset; local
124 memset(obuf, 100, osize); // Output set to something wrong for now.
130 FlushCache(obuf, osize);
144 FlushCache(obuf, osize);
149 EXPECT_EQ(0, libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh,
165 DumpPlanarYuvTestImage(test_name, obuf, ow, oh);
168 double sse = cricket::ComputeSumSquareError(obuf, xbuf, osize);
196 ALIGN16(uint8_t obuf[I420_SIZE(ow, oh)]);
201 libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, 0, false);
203 if (dump_) DumpPlanarYuvTestImage("TestCopy", obuf, o
216 uint8_t* obuf = ALIGNP(obuffer.get(), kAlignment); local
[all...]
H A Dplanarfunctions_unittest.cc448 const uint8_t* obuf,
451 double sse = cricket::ComputeSumSquareError(ibuf, obuf, osize);
455 << " First Diff Byte: " << FindDiff(ibuf, obuf, osize);
469 void DumpArgbImage(const uint8_t* obuf, int width, int height) { argument
470 DumpPlanarArgbTestImage(GetTestName(), obuf, width, height); local
474 void DumpYuvImage(const uint8_t* obuf, int width, int height) { argument
475 DumpPlanarYuvTestImage(GetTestName(), obuf, width, height); local
447 IsMemoryEqual(const uint8_t* ibuf, const uint8_t* obuf, int osize, double average_error) argument
/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_helpers.c163 int get_wpa_status(const char *ifname, const char *field, char *obuf, argument
204 memcpy(obuf, pos, end - pos);
/external/wpa_supplicant_8/src/common/
H A Dwpa_helpers.c163 int get_wpa_status(const char *ifname, const char *field, char *obuf, argument
204 memcpy(obuf, pos, end - pos);
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dwpa_helpers.c163 int get_wpa_status(const char *ifname, const char *field, char *obuf, argument
204 memcpy(obuf, pos, end - pos);
/external/netcat/
H A Dnetcat.c825 unsigned char obuf[4]; local
835 obuf[0] = IAC;
838 obuf[1] = DONT;
840 obuf[1] = WONT;
845 obuf[2] = *p;
846 if (atomicio(vwrite, nfd, obuf, 3) != 3)
/external/bzip2/
H A Dbzip2.c437 UChar obuf[5000]; local
462 nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
465 fwrite ( obuf, sizeof(UChar), nread, stream );
509 nread = fread ( obuf, sizeof(UChar), 5000, zStream );
511 if (nread > 0) fwrite ( obuf, sizeof(UChar), nread, stream );
558 UChar obuf[5000]; local
580 nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );

Completed in 2197 milliseconds

12