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

/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Deftread.h39 FILE *eftread_fopen(const char *fname, char *idbuf, size_t idbufsz);
H A Deftread.c76 eftread_fopen(const char *fname, char *idbuf, size_t idbufsz) argument
130 bzero(idbuf, idbufsz);
135 if (fread(idbuf, 1, rsz, fp) != rsz)
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dpnp.c171 static char idbuf[8]; local
174 idbuf[0] = '@' + ((data[0] & 0x7c) >> 2);
175 idbuf[1] = '@' + (((data[0] & 0x3) << 3) + ((data[1] & 0xe0) >> 5));
176 idbuf[2] = '@' + (data[1] & 0x1f);
177 idbuf[3] = hextoascii[(data[2] >> 4)];
178 idbuf[4] = hextoascii[(data[2] & 0xf)];
179 idbuf[5] = hextoascii[(data[3] >> 4)];
180 idbuf[6] = hextoascii[(data[3] & 0xf)];
181 idbuf[7] = 0;
182 return(idbuf);
[all...]
/illumos-gate/usr/src/lib/libproject/common/
H A Dproject_walk.c36 projlist(id_t *idbuf, size_t idbufsz) argument
38 return (syscall(SYS_tasksys, 3, 0, 0, idbuf, idbufsz));
/illumos-gate/usr/src/cmd/sendmail/db/mp/
H A Dmp_fopen.c90 u_int8_t idbuf[DB_FILE_ID_LEN]; local
191 if ((ret = __os_fileid(dbenv, rpath, 0, idbuf)) != 0)
193 finfop->fileid = idbuf;
/illumos-gate/usr/src/cmd/vgrind/
H A Dvfontedpr.c140 char idbuf[256]; /* enough for all 8 bit chars */ local
304 cp = idbuf;
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dqueue.c5365 char idbuf[MAXQFNAME - 2]; local
5404 idbuf[0] = QueueIdChars[tm->tm_year % QIC_LEN];
5405 idbuf[1] = QueueIdChars[tm->tm_mon];
5406 idbuf[2] = QueueIdChars[tm->tm_mday];
5407 idbuf[3] = QueueIdChars[tm->tm_hour];
5408 idbuf[4] = QueueIdChars[tm->tm_min % QIC_LEN_R];
5409 idbuf[5] = QueueIdChars[tm->tm_sec % QIC_LEN_R];
5410 idbuf[6] = QueueIdChars[seq / QIC_LEN];
5411 idbuf[7] = QueueIdChars[seq % QIC_LEN];
5412 (void) sm_snprintf(&idbuf[
5672 static char idbuf[MAXQFNAME + 34]; local
[all...]
/illumos-gate/usr/src/uts/common/fs/proc/
H A Dprvnops.c5842 char idbuf[16]; local
5848 (void) snprintf(idbuf, sizeof (idbuf), "%d", curproc->p_pid);
5849 ret = uiomove(idbuf, strlen(idbuf), UIO_READ, uiop);
5869 length = sizeof (CTFS_ROOT "//") + sizeof (idbuf) +

Completed in 100 milliseconds