Searched refs:buffp (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/usr.bin/ident/
H A Dident.c59 FILE* buffp; local
67 buffp = open_memstream(&buf, &sz);
68 if (buffp == NULL)
90 rewind(buffp);
91 fputc('$', buffp);
92 fputc(c, buffp);
105 fputc(c, buffp);
135 fputc(c, buffp);
169 fputc(c, buffp);
175 fflush(buffp);
[all...]
/freebsd-current/usr.sbin/pkg/
H A Dconfig.c216 FILE *buffp; local
229 buffp = open_memstream(&buf, &bufsz);
230 if (buffp == NULL)
239 rewind(buffp);
243 fputc(toupper(key[j]), buffp); local
244 fflush(buffp);
247 fputs("PACKAGESITE", buffp);
249 fputs("MIRROR_TYPE", buffp);
251 fputs("SIGNATURE_TYPE", buffp);
253 fputs("FINGERPRINTS", buffp);
[all...]
/freebsd-current/contrib/ntp/ntpd/
H A Dntp_control.c2050 char *buffp, *buffend; local
2056 buffp = buf;
2061 snprintf(buffp, sizeof(buf), "%s=\"",sys_var[CS_VARLIST].text);
2062 buffp += strlen(buffp);
2068 if (len + 1 >= buffend - buffp)
2071 *buffp++ = ',';
2074 memcpy(buffp, k->text, len);
2075 buffp += len;
2088 if (len + 1 >= buffend - buffp)
[all...]

Completed in 185 milliseconds