Searched refs:outstr (Results 1 - 8 of 8) sorted by relevance

/openbsd-current/bin/md5/
H A Dcrc.c124 CKSUM_End(CKSUM_CTX *ctx, char *outstr) argument
128 if (outstr == NULL) {
129 if (asprintf(&outstr, "%u %lld", ctx->crc, ctx->len) == -1)
132 (void)snprintf(outstr, (size_t)CKSUM_DIGEST_STRING_LENGTH,
136 return (outstr);
/openbsd-current/usr.bin/less/
H A Dscreen.c492 tmodes(char *incap, char *outcap, char **instr, char **outstr, argument
497 *outstr = "";
502 *outstr = outcap;
507 *outstr = def_outstr;
511 if (*outstr == NULL)
513 *outstr = exit_attribute_mode;
514 if (*outstr == NULL)
516 *outstr = "";
/openbsd-current/games/hunt/huntd/
H A Dterminal.c95 * outstr:
99 outstr(PLAYER *pp, char *str, int len) function
103 outstr(pp, str, len);
105 outstr(pp, str, len);
138 outstr(pp, buf, len);
H A Ddraw.c61 outstr(pp, pp->p_maze[0], WIDTH);
79 outstr(pp, pp->p_maze[HEIGHT - 1], WIDTH);
334 outstr(pp, s, strlen(s));
H A Dserver.h264 void outstr(PLAYER *, char *, int);
/openbsd-current/distrib/special/more/
H A Dmore.c1620 char *outstr; local
1626 outstr = temp;
1631 len = strlcpy(outstr, fnames[fnum],
1632 temp + sizeof(temp) - outstr);
1633 if (len >= temp + sizeof(temp) - outstr)
1634 len = temp + sizeof(temp) - outstr - 1;
1635 outstr += len;
1638 *outstr++ = c;
1643 len = strlcpy(outstr, shell_line,
1644 temp + sizeof(temp) - outstr);
[all...]
/openbsd-current/usr.bin/mandoc/
H A Ddba.c235 static char *outstr = NULL; local
241 outstr = mandoc_realloc(outstr, newlen + 1);
244 *outstr = inbyte;
245 memcpy(outstr + 1, instr, newlen);
246 return outstr;
/openbsd-current/libexec/ftpd/
H A Dftpd.c1494 * Transfer the contents of "instr" to "outstr" peer using the appropriate
1500 send_data(FILE *instr, FILE *outstr, off_t blksize, off_t filesize, int isreg) argument
1515 if (ferror(outstr))
1517 (void) putc('\r', outstr);
1519 (void) putc(c, outstr);
1521 fflush(outstr);
1525 if (ferror(outstr))
1536 netfd = fileno(outstr);
1619 * Transfer data from peer to "outstr" using the appropriate encapulation of
1625 receive_data(FILE *instr, FILE *outstr) argument
[all...]

Completed in 126 milliseconds