Searched defs:fubuf (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetut.c95 static struct futmp fubuf; /* Copy of last entry read in. */ variable in typeref:struct:futmp
161 if (read(fd, &fubuf, sizeof (fubuf)) != sizeof (fubuf)) {
162 bzero(&fubuf, sizeof (fubuf));
169 return (&fubuf);
181 utmp_frec2api(&fubuf, &ubuf);
196 utmp_api2frec(&ubuf, &fubuf);
206 if (fubuf
[all...]
H A Dgetutx.c130 static struct futmpx fubuf; /* Copy of last entry read in. */ variable in typeref:struct:futmpx
226 if (fread(&fubuf, sizeof (fubuf), 1, fp) != 1) {
228 * Make sure fubuf is zeroed.
230 bzero(&fubuf, sizeof (fubuf));
234 return (&fubuf);
263 utmpx_frec2api(&fubuf, &ubuf);
308 utmpx_api2frec(&ubuf, &fubuf);
316 * If there is no entry in "fubuf", ski
[all...]
/illumos-gate/usr/src/cmd/truss/
H A Dexpound.c436 f_user_t fubuf; local
447 Pread(Proc, &fubuf, sizeof (fubuf), offset) == sizeof (fubuf)) {
450 (int)fubuf.fu_pid,
451 fubuf.fu_uid,
452 fuflags(pri, fubuf.fu_flags));
454 offset += sizeof (fubuf);

Completed in 56 milliseconds