HomeSort by relevance Sort by last modified time
    Searched defs:obuf (Results 1 - 16 of 16) sorted by null

  /external/wpa_supplicant_8/src/tls/
pkcs8.c 25 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);
pkcs5.c 51 char obuf[80]; local
65 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
66 wpa_printf(MSG_DEBUG, "PKCS #5: encryption algorithm %s", obuf);
70 "algorithm %s", obuf);
  /external/iproute2/ip/
ipmroute.c 100 char obuf[256]; local
118 snprintf(obuf, sizeof(obuf), "(%s, %s)",
122 fprintf(ofp, "%-32s Iif: ", obuf);
  /external/boringssl/src/crypto/bio/
buffer.c 85 char *obuf; /* the char array */ member in struct:bio_f_buffer_ctx_struct
103 ctx->obuf = (char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
104 if (ctx->obuf == NULL) {
131 OPENSSL_free(ctx->obuf);
225 memcpy(&ctx->obuf[ctx->obuf_off + ctx->obuf_len], in, inl);
233 memcpy(&ctx->obuf[ctx->obuf_off + ctx->obuf_len], in, i);
242 i = BIO_write(b->next_bio, &ctx->obuf[ctx->obuf_off], ctx->obuf_len);
341 p2 = ctx->obuf;
366 if (ctx->obuf != p2) {
367 OPENSSL_free(ctx->obuf);
    [all...]
  /external/iptables/utils/
nfnl_osf.c 150 static void xt_osf_parse_opt(struct xt_osf_opt *opt, __u16 *optnum, char *obuf, int olen)
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[i], OPTDEL)
273 char obuf[MAXOPTSTRLEN]; local
    [all...]
  /external/vboot_reference/utility/
bmpblk_util.c 99 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...]
efidecompress.c 1093 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);
eficompress.c 1674 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);
  /ndk/sources/host-tools/make-3.81/
expand.c 526 char *obuf = variable_buffer;
535 variable_buffer = obuf;
549 char *obuf = variable_buffer;
561 variable_buffer = obuf;
520 char *obuf = variable_buffer; local
543 char *obuf = variable_buffer; local
  /bionic/libc/dns/nameser/
ns_print.c 114 const char *obuf = buf; local
1058 _DIAGASSERT(__type_fit(int, buf - obuf));
1059 return (int)(buf - obuf);
1090 _DIAGASSERT(__type_fit(int, buf - obuf));
1091 return (int)(buf - obuf);
  /external/netcat/
netcat.c 825 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/openssh/
kex.c 791 u_int8_t hbuf[2048], sbuf[2048], obuf[SSH_DIGEST_MAX_LENGTH]; local
813 ssh_digest_final(hashctx, obuf, sizeof(obuf)) != 0) {
817 memcpy(id, obuf, ssh_digest_bytes(SSH_DIGEST_MD5));
823 explicit_bzero(obuf, sizeof(obuf));
servconf.c 1952 char *cp, *obuf, *cbuf; local
    [all...]
  /hardware/intel/common/libmix/mix_audio/src/
mixaudio.c 1571 struct snd_sst_buffs obuf = {0}; local
    [all...]
  /external/bzip2/
bzip2.c 437 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 );
    [all...]
  /external/blktrace/
blktrace.c 242 * ofn, ofd, ofp, obuf & mmap_info are used for output file (optionally).
247 char *obuf; member in struct:io_info
1516 iop->obuf = malloc(size);
1517 if (setvbuf(iop->ofp, iop->obuf, mode, size) < 0) {
    [all...]

Completed in 737 milliseconds