/src/sys/ddb/ |
db_print.c | 66 char tbuf[24]; local in function:db_show_regs 68 db_format_radix(tbuf, 24, offset, true); 69 db_printf("+%s", tbuf);
|
db_examine.c | 78 char tbuf[24]; local in function:db_examine 126 db_format_radix(tbuf, 24, value, false); 127 db_printf("%-*s", width, tbuf); 179 db_format_hex(tbuf, 24, value, false); 180 db_printf("%-*s", width, tbuf); 254 char tbuf[24]; local in function:db_print_cmd 256 db_format_radix(tbuf, 24, addr, false); 257 db_printf("%11s", tbuf); 265 char tbuf[24]; local in function:db_print_cmd 267 db_format_hex(tbuf, 24, addr, false) [all...] |
/src/libexec/talkd/ |
print.c | 75 char tbuf[80]; local in function:print_request 79 (void)snprintf(tbuf, sizeof tbuf, "type %d", mp->type); 80 tp = tbuf; 91 char tbuf[80], abuf[80]; local in function:print_response 95 (void)snprintf(tbuf, sizeof tbuf, "type %d", rp->type); 96 tp = tbuf;
|
/src/sbin/dump/ |
itime.c | 238 char tbuf[BUFSIZ]; local in function:getrecord 241 if ( (fgets(tbuf, sizeof (tbuf), df)) != tbuf) 244 if (makedumpdate(ddatep, tbuf) < 0) 256 makedumpdate(struct dumpdates *ddp, const char *tbuf) 260 (void) sscanf(tbuf, DUMPINFMT, ddp->dd_name, &ddp->dd_level, un_buf);
|
/src/lib/libc/gen/ |
xsyslog.c | 151 char tbuf[TBUF_LEN], fmt_cpy[FMT_LEN], fmt_cat[FMT_LEN] = ""; local in function:_vxsyslogp_r 178 p = tbuf; 301 cnt = p - tbuf; 339 if (send(data->log_file, tbuf, cnt, 0) != -1)
|
/src/sys/arch/sun68k/stand/libsa/ |
netif_sun.c | 72 char *tbuf; member in struct:devdata 134 if (dd->tbuf == NULL) { 136 dd->tbuf = dvma_alloc(dd->tbuf_len); 139 (dd->tbuf == NULL)) 144 printf("netif_init: rbuf=0x%x, tbuf=0x%x\n", 145 dd->rbuf, dd->tbuf); 174 if (dd->tbuf) { 175 dvma_free(dd->tbuf, dd->tbuf_len); 176 dd->tbuf = NULL; 315 memcpy(dd->tbuf, pkt, slen) [all...] |
/src/sys/compat/common/ |
vfs_syscalls_12.c | 121 char *inp, *tbuf; /* Current-format */ local in function:compat_12_sys_getdirentries 162 tbuf = malloc(buflen, M_TEMP, M_WAITOK); 167 aiov.iov_base = tbuf; 184 inp = tbuf; 255 free(tbuf, M_TEMP);
|
vfs_syscalls_30.c | 210 char *inp, *tbuf; /* BSD-format */ local in function:compat_30_sys_getdents 240 tbuf = malloc(buflen, M_TEMP, M_WAITOK); 244 aiov.iov_base = tbuf; 261 inp = tbuf; 327 free(tbuf, M_TEMP);
|
vfs_syscalls_43.c | 338 void *tbuf; /* Current-format */ local in function:compat_43_sys_getdirentries 380 tbuf = malloc(buflen, M_TEMP, M_WAITOK); 385 aiov.iov_base = tbuf; 402 inp = (char *)tbuf; 473 free(tbuf, M_TEMP);
|
/src/sys/compat/linux/common/ |
linux_exec_elf32.c | 102 char tbuf[sizeof(signature)]; local in function:ELFNAME2 128 error = exec_read(l, epp->ep_vp, stroff + s->sh_name, tbuf, 132 if (!memcmp(tbuf, signature, sigsz)) { 133 DPRINTF(("linux_atexit_sig=%s\n", tbuf)); 167 char tbuf[sizeof(signature) - 1]; local in function:ELFNAME2 192 error = exec_read(l, epp->ep_vp, s->sh_offset, tbuf, 200 DPRINTF(("linux_gcc_sig: sig=%s\n", tbuf)); 201 if (!memcmp(tbuf, signature, sizeof(signature) - 1)) { 227 char tbuf[sizeof(signature)]; local in function:ELFNAME2 253 error = exec_read(l, epp->ep_vp, stroff + s->sh_name, tbuf, 285 char tbuf[sizeof(signature)], *tmp = NULL; local in function:ELFNAME2 [all...] |
/src/sys/compat/linux32/common/ |
linux32_dirent.c | 104 char *inp, *tbuf; /* BSD-format */ local in function:linux32_sys_getdents 150 tbuf = malloc(buflen, M_TEMP, M_WAITOK); 155 aiov.iov_base = tbuf; 172 inp = tbuf; 257 free(tbuf, M_TEMP);
|
/src/sys/fs/cd9660/ |
cd9660_node.c | 301 u_char tbuf[7]; local in function:cd9660_tstamp_conv17 304 tbuf[0] = cd9660_chars2ui(pi,4) - 1900; 307 tbuf[1] = cd9660_chars2ui(pi + 4,2); 310 tbuf[2] = cd9660_chars2ui(pi + 6,2); 313 tbuf[3] = cd9660_chars2ui(pi + 8,2); 316 tbuf[4] = cd9660_chars2ui(pi + 10,2); 319 tbuf[5] = cd9660_chars2ui(pi + 12,2); 322 tbuf[6] = pi[16]; 324 return cd9660_tstamp_conv7(tbuf,pu);
|
/src/usr.bin/finger/ |
finger.c | 97 char tbuf[1024]; variable in typeref:typename:char[1024]
|
/src/usr.bin/skeyinit/ |
skeyinit.c | 54 char passwd[SKEY_MAX_PW_LEN+2], passwd2[SKEY_MAX_PW_LEN+2], tbuf[27], buf[80]; local in function:main 95 (void)snprintf(tbuf, sizeof(tbuf), "%05ld", (long) (now % 100000)); 96 (void)strlcat(defaultseed, tbuf, sizeof(defaultseed)); 337 (void)strftime(tbuf, sizeof(tbuf), " %b %d,%Y %T", tm); 370 pp->pw_name, n, seed, skey.val, tbuf); 373 pp->pw_name, skey_get_algorithm(), n, seed, skey.val, tbuf);
|
/src/usr.bin/telnet/ |
utilities.c | 635 char tbuf[64]; 636 snprintf(tbuf, sizeof(tbuf), "%s%s%s%s%s", 642 fprintf(NetTrace, "%s", tbuf[1] ? &tbuf[1] : "0"); 634 char tbuf[64]; local in function:printsub
|
/src/usr.sbin/grfconfig/ |
grfconfig.c | 128 char *obuf, tbuf[_POSIX2_LINE_MAX], *tbuf2; local in function:main 142 tbuf2 = tbuf; 154 obuf = tbuf;
|
/src/usr.sbin/rtadvd/ |
advcap.c | 79 * BUG: Should use a "last" pointer in tbuf, so that searching 90 static char *tbuf; variable in typeref:typename:char * 129 tbuf = bp; 195 char *holdtbuf = tbuf; 198 p = tbuf + strlen(tbuf) - 2; /* before the last colon */ 200 if (p < tbuf) { 228 tbuf = holdtbuf; 243 Bp = tbuf; 314 char *bp = tbuf; [all...] |
/src/sys/nfs/ |
nfs_clntsubs.c | 478 char *tbuf, *cp; local in function:nfs_cookieheuristic 483 tbuf = malloc(NFS_DIRFRAGSIZ, M_TEMP, M_WAITOK); 485 aiov.iov_base = tbuf; 498 free(tbuf, M_TEMP); 508 cp = tbuf; 523 free(tbuf, M_TEMP);
|
/src/games/rogue/ |
save.c | 179 char tbuf[MAX_OPT_LEN]; local in function:restore 196 (void)strlcpy(tbuf, login_name, sizeof tbuf); 198 if (strcmp(tbuf, login_name)) {
|
/src/usr.bin/mail/ |
main.c | 105 struct termios tbuf; local in function:setscreensize 112 if (tcgetattr(1, &tbuf) < 0) 115 ospeed = cfgetospeed(&tbuf);
|
/src/games/adventure/ |
io.c | 574 char *tbuf; local in function:pspeak 577 if ((tbuf = (char *) malloc(msg->txtlen + 1)) == NULL) 579 memcpy(tbuf, msg->seekadr, msg->txtlen + 1); /* Room to null */ 580 s = tbuf; 583 while (s - tbuf < msg->txtlen) { /* read line at a time */ 609 free(tbuf);
|
/src/lib/libskey/ |
skeylogin.c | 248 char tbuf[27]; local in function:skeyverify 254 strftime(tbuf, sizeof(tbuf), " %b %d,%Y %T", tm); 334 mp->logname, mp->n, mp->seed, mp->val, tbuf); 338 mp->seed, mp->val, tbuf);
|
/src/lib/libtelnet/ |
auth.c | 567 unsigned char tbuf[16]; local in function:auth_gen_printsub 575 snprintf((char *)tbuf, sizeof(tbuf), " %d", *data); 576 for (cp = tbuf; *cp && buflen > 0; --buflen)
|
/src/libexec/telnetd/ |
utility.c | 730 char tbuf[40]; local in function:printsub 732 (void)snprintf(tbuf, sizeof tbuf, "%s%s%s%s%s", 738 output_data("%s", tbuf[1] ? &tbuf[1] : "0");
|
/src/sbin/dmesg/ |
dmesg.c | 153 char tbuf[64]; local in function:main 278 if (tstamp < sizeof(tbuf) - 1) \ 279 tbuf[tstamp++] = (c); \ 283 tbuf[sizeof(tbuf) - 1] = '\0'; \ 290 for (char *_p = tbuf; *_p != '\0'; _p++) { \ 331 switch (sscanf(tbuf, "[%jd.%ld]", &sec, &fsec)){ 365 strftime(tbuf, sizeof(tbuf), 368 printf("%s", tbuf); [all...] |