Searched defs:repbuf (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/cfgadm_plugins/fp/common/
H A Dcfga_rep.c176 if (repbuf != NULL) { \
177 munmap(repbuf, filesize); \
209 * 3 buffers - the original buffer (repbuf), a copy buffer (c_repbuf) and a
211 * The contents of the repository are mmap-ed into the repbuf and then
225 char *repbuf, *c_repbuf, *t_repbuf; local
232 repbuf = c_repbuf = t_repbuf = NULL;
320 if ((repbuf = (char *)mmap(0, filesize, PROT_READ,
345 memcpy(c_repbuf, repbuf, filesize);
350 munmap(repbuf, filesize);
351 repbuf
[all...]
/illumos-gate/usr/src/cmd/exstr/
H A Dexstr.c252 char repbuf[BUFSIZ], *repbufp; local
276 while (fgets(repbuf, sizeof (repbuf), stdin) != (char *)NULL) {
281 (void) strcpy(curline, repbuf);
284 repbufp = strchr(repbuf, ':');
289 if (strcmp(repbuf, name) != NULL)

Completed in 66 milliseconds