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

/haiku-fatelf/src/tests/system/libroot/posix/
H A Dfseek_test.cpp37 const char outstr[] = "hello world!\n"; local
38 char strbuf[sizeof outstr];
61 setbuffer(fp, strbuf, sizeof(outstr) - 1);
63 if (fwrite(outstr, sizeof(outstr) - 1, 1, fp) != 1) {
111 } else if (fread(buf, sizeof(outstr) - 1, 1, fp) != 1) {
114 } else if (memcmp(buf, outstr, sizeof(outstr) - 1) != 0) {
129 } else if (fread(buf, sizeof(outstr) - 1, 1, fp) != 1) {
132 } else if (memcmp(buf, outstr, sizeo
[all...]
/haiku-fatelf/src/bin/
H A Dmodifiers.cpp42 FILE *outstr; local
43 outstr = error?stderr:stdout;
44 fprintf(outstr, "Usage: %s [-help] [-list] [-/+][[|l|r][shift|control|command|option]|capslock|scrolllock|numlock|menu]\n", progname);
45 fprintf(outstr, "\t- asserts unpressed modifier,\n");
46 fprintf(outstr, "\t+ asserts pressed modifier,\n");
/haiku-fatelf/src/bin/network/atftpd/
H A Dtftpd_pcre.h70 int tftpd_pcre_sub(tftpd_pcre_self_t *self, char *outstr, int outlen, char *str);
H A Dtftpd_pcre.c196 char *outstr, int outsize,
205 for (chp = pat->right_str, outchp = outstr;
206 (*chp != '\0') && (outchp - outstr < outsize);
246 int tftpd_pcre_sub(tftpd_pcre_self_t *self, char *outstr, int outlen, char *str) argument
280 outstr, outlen,
283 logger(LOG_DEBUG,"outstr: \"%s\"", outstr);
195 tftpd_pcre_makesub(struct tftpd_pcre_pattern *pat, char *outstr, int outsize, char *str, int *ovector, int matches) argument
/haiku-fatelf/src/bin/rmd160/
H A Dmain.c63 char *outstr = buf; local
67 *outstr++ = *instr;
69 sprintf(outstr, "%%%02x", *instr);
70 outstr += 3;
73 *outstr = '\0';
81 char *outstr = buf; local
87 *outstr++ = cvthex(instr[1]) << 4 | cvthex(instr[2]);
91 *outstr++ = *instr ++;
93 *outstr = '\0';
/haiku-fatelf/src/bin/network/ftpd/
H A Dftpd.c2072 * Tranfer the contents of "instr" to "outstr" peer using the appropriate
2078 send_data(FILE *instr, FILE *outstr, size_t blksize, off_t filesize, int isreg) argument
2106 FTPD_PUTC('\r', outstr, data_err);
2109 FTPD_PUTC(c, outstr, data_err);
2114 while (fflush(outstr) == EOF) {
2118 clearerr(outstr);
2123 if (fflush(outstr) == EOF)
2135 netfd = fileno(outstr);
2238 * Transfer data from peer to "outstr" using the appropriate encapulation of
2244 receive_data(FILE *instr, FILE *outstr)
[all...]
/haiku-fatelf/src/bin/less/
H A Dscreen.c1394 tmodes(incap, outcap, instr, outstr, def_instr, def_outstr, spp)
1398 char **outstr;
1408 *outstr = def_outstr;
1412 *outstr = ltgetstr(outcap, spp);
1413 if (*outstr == NULL)
1415 *outstr = ltgetstr("me", spp);
1416 if (*outstr == NULL)
1418 *outstr = "";

Completed in 80 milliseconds