Searched refs:tbuf (Results 1 - 19 of 19) sorted by relevance

/external/ipsec-tools/src/racoon/
H A Dlogger.h41 time_t *tbuf; member in struct:log
H A Dlogger.c82 p->tbuf = (time_t *)racoon_malloc(sizeof(time_t *) * siz);
83 if (p->tbuf == NULL) {
88 memset(p->tbuf, 0, sizeof(time_t *) * siz);
111 p->tbuf[p->head] = time(NULL);
197 tm = localtime(&p->tbuf[j]);
220 racoon_free(p->tbuf);
H A Dsecurity.c72 vchar_t *tbuf = NULL; local
117 tbuf = isakmp_parsewoh(ISAKMP_NPTYPE_T, (struct isakmp_gen *)bp, len);
118 if (tbuf == NULL)
121 ta = (struct isakmp_parse_t *)tbuf->v;
H A Dracoonctl.c1029 char tbuf[56]; local
1125 strftime(tbuf, sizeof(tbuf), "%Y-%m-%d %T", tm);
1127 snprintf(tbuf, sizeof(tbuf), " ");
1128 printf("%s ", tbuf);
1244 char tbuf[56]; local
1255 strftime(tbuf, sizeof(tbuf), "%Y-%m-%d %T", tm);
1261 tbuf);
[all...]
/external/icu4c/common/
H A Dcstring.c146 char tbuf[30]; local
147 int32_t tbx = sizeof(tbuf);
160 tbx = sizeof(tbuf)-1;
161 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
164 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
169 uprv_strcpy(buffer+length, tbuf+tbx);
170 length += sizeof(tbuf) - tbx -1;
184 char tbuf[30]; local
185 int32_t tbx = sizeof(tbuf);
198 tbx = sizeof(tbuf)
[all...]
/external/openssl/crypto/rsa/
H A Drsa_pmeth.c85 unsigned char *tbuf; member in struct:__anon7568
98 rctx->tbuf = NULL;
130 if (ctx->tbuf)
132 ctx->tbuf = OPENSSL_malloc(EVP_PKEY_size(pk->pkey));
133 if (!ctx->tbuf)
145 if (rctx->tbuf)
146 OPENSSL_free(rctx->tbuf);
170 memcpy(rctx->tbuf, tbs, tbslen);
171 rctx->tbuf[tbslen] =
173 ret = RSA_private_encrypt(tbslen + 1, rctx->tbuf,
[all...]
/external/strace/
H A Dresource.c453 struct tms tbuf; local
460 else if (umove(tcp, tcp->u_arg[0], &tbuf) < 0)
464 tbuf.tms_utime, tbuf.tms_stime);
466 tbuf.tms_cutime, tbuf.tms_cstime);
/external/grub/netboot/
H A Dlance.c88 unsigned char tbuf[ETH_FRAME_LEN]; member in struct:lance_interface
345 memcpy(lp->tbuf, d, ETH_ALEN); /* dst */
346 memcpy(&lp->tbuf[ETH_ALEN], nic->node_addr, ETH_ALEN); /* src */
347 lp->tbuf[ETH_ALEN+ETH_ALEN] = t >> 8; /* type */
348 lp->tbuf[ETH_ALEN+ETH_ALEN+1] = t; /* type */
349 memcpy(&lp->tbuf[ETH_HLEN], p, s);
353 lp->tbuf[s++] = 0;
357 lp->tx_ring.u.base = virt_to_bus(lp->tbuf) & 0xffffff;
/external/webkit/Source/WebCore/loader/
H A DFTPDirectoryParser.cpp125 char tbuf[4]; local
558 tbuf[0] = p[0];
559 tbuf[1] = toASCIILower(p[1]);
560 tbuf[2] = toASCIILower(p[2]);
564 if (tbuf[0] == month_names[pos+0] &&
565 tbuf[1] == month_names[pos+1] &&
566 tbuf[2] == month_names[pos+2])
1387 tbuf[0] = toASCIIUpper(p[0]);
1388 tbuf[1] = toASCIILower(p[1]);
1389 tbuf[
[all...]
/external/quake/quake/src/QW/client/
H A Dconsole.c158 char tbuf[CON_TEXTSIZE]; local
188 Q_memcpy (tbuf, con->text, CON_TEXTSIZE);
196 tbuf[((con->current - i + oldtotallines) %
/external/quake/quake/src/WinQuake/
H A Dconsole.cpp156 char tbuf[CON_TEXTSIZE]; local
186 Q_memcpy (tbuf, con_text, CON_TEXTSIZE);
194 tbuf[((con_current - i + oldtotallines) %
/external/openssl/crypto/objects/
H A Dobj_dat.c472 char tbuf[DECIMAL_SIZE(i)+DECIMAL_SIZE(l)+2]; local
597 BIO_snprintf(tbuf,sizeof tbuf,".%lu",l);
598 i=strlen(tbuf);
601 BUF_strlcpy(buf,tbuf,buf_len);
/external/skia/src/opts/
H A DSkBlitRow_opts_arm.cpp885 char tbuf[32]; local
890 sprintf(tbuf, " %02x", pc[i]);
891 strcat(buf, tbuf);
898 char tbuf[32]; local
904 sprintf(tbuf, " %04x", pc[i]);
905 strcat(buf, tbuf);
/external/mksh/src/
H A Dexpr.c248 char tbuf[2]; local
265 tbuf[0] = *es->tokp;
266 tbuf[1] = '\0';
267 s = tbuf;
H A Dmisc.c488 char tbuf[64]; local
489 char *t = len <= sizeof(tbuf) ? tbuf : alloc(len, ATEMP);
/external/libpng/
H A Dpngwrite.c447 struct tm *tbuf; local
451 tbuf = gmtime(&ttime);
452 png_convert_from_struct_tm(ptime, tbuf);
/external/qemu/distrib/libpng-1.2.19/
H A Dpngwrite.c414 struct tm *tbuf; local
417 tbuf = gmtime(&ttime);
418 png_convert_from_struct_tm(ptime, tbuf);
/external/ppp/pppd/
H A Deap.c319 char tbuf[9]; local
330 strftime(tbuf, sizeof (tbuf), "%Y%m%d", tp);
331 SHA1Update(&ctxt, tbuf, strlen(tbuf));
/external/openssl/apps/
H A Dapps.c2384 unsigned char tbuf[1024]; local
2394 len = BIO_read(in, tbuf, len);
2397 if (BIO_write(mem, tbuf, len) != len)

Completed in 431 milliseconds