Searched defs:tres (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dftell.c45 register long tres; local
59 tres = lseek(fileno(iop), 0L, 1);
60 if(tres >= 0)
61 tres += (long)adjust;
62 return(tres);
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dftell.c56 off64_t tres; local
77 tres = lseek64(FILENO(iop), 0, SEEK_CUR);
78 if (tres >= 0)
79 tres += adjust;
81 if (tres > LONG_MAX) {
88 return ((long)tres);
H A Dftello.c64 off64_t tres; local
82 tres = lseek64(FILENO(iop), 0, SEEK_CUR);
83 if (tres >= 0)
84 tres += (off64_t)adjust;
86 return (tres);
/illumos-gate/usr/src/lib/librpcsvc/common/
H A Dbindresvport.c76 struct t_bind *tbind, *tres; local
131 tres = (struct t_bind *)t_alloc(fd, T_BIND, T_ADDR);
132 if (tres == NULL) {
179 res = t_bind(fd, tbind, tres);
181 if (memcmp(tbind->addr.buf, tres->addr.buf,
182 (int)tres->addr.len) == 0)
196 (void) t_free((char *)tres, T_BIND);
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dsvc_generic.c235 struct t_bind *tres = NULL; /* bind info */ local
317 * In any case, try to get its bound info in tres
320 tres = (struct t_bind *)t_alloc(fd, T_BIND, T_ADDR);
321 if (tres == NULL) {
366 if (t_bind(fd, (struct t_bind *)bindaddr, tres) == -1) {
381 (memcmp(bindaddr->addr.buf, tres->addr.buf,
382 (int)tres->addr.len) != 0)) {
389 if (rpc_control(__RPC_SVC_LSTNBKLOG_GET, &tres->qlen)
395 tres->addr.len = 0;
396 if (t_bind(fd, tres, tre
[all...]
H A Drpc_soc.c285 struct t_bind tbindstr, *tres; local
330 tres = (struct t_bind *)t_alloc(fd, T_BIND, T_ADDR);
331 if (tres == NULL)
348 res = t_bind(fd, &tbindstr, tres);
350 if ((tbindstr.addr.len == tres->addr.len) &&
351 (memcmp(tbindstr.addr.buf, tres->addr.buf,
352 (int)tres->addr.len) == 0))
363 (void) t_free((char *)tres, T_BIND);
H A Dsvc_vc.c397 struct netbuf tres = {0}; local
428 if (t_getname(fd, &tres, LOCALNAME) == -1)
429 tres.len = 0;
430 dummy->xp_ltaddr = tres;
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_addr_finder.c408 int tres; local
420 tres = dwarf_tag(newdie, &ltag, &err);
421 if (tres != DW_DLV_OK) {
422 return tres;
506 int tres = DW_DLV_OK; local
528 tres = dwarf_child(newdie, &ch_die, &err);
530 if (tres == DW_DLV_OK) {
545 } else if (tres == DW_DLV_ERROR) {
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dnetdir_inet_sundry.c905 struct t_bind tbindstr, *tres; local
957 tres = (struct t_bind *)t_alloc(fd, T_BIND, T_ADDR);
958 if (tres == NULL) {
980 (void) t_free((char *)tres, T_BIND);
995 (void) t_free((char *)tres, T_BIND);
1003 res = t_bind(fd, &tbindstr, tres);
1023 (void) t_free((char *)tres, T_BIND);
1030 (void) t_free((char *)tres, T_BIND);
/illumos-gate/usr/src/cmd/krb5/kadmin/server/
H A Dovsec_kadmd.c429 struct t_bind tbindstr, *tres; local
741 tres = (struct t_bind *) t_alloc(fd, T_BIND, T_ADDR);
742 if (tres == NULL) {
755 if (t_bind(fd, &tbindstr, tres) < 0) {
824 (void) t_free((char *) tres, T_BIND);
/illumos-gate/usr/src/uts/common/sys/nxge/
H A Dnxge_fflp_hw.h351 uint32_t tres:2; member in struct:_tcam_res_t::__anon8220::__anon8222
361 uint32_t tres:2;

Completed in 89 milliseconds