Searched defs:ut (Results 1 - 7 of 7) sorted by relevance

/osnet-11/usr/src/lib/libnsl/rpc/
H A Dauth_time.c204 char ut[INET6_ADDRSTRLEN]; local
469 (void) sprintf(ut, "%d.%d.%d.%d.0.37",
476 if (strlen(useua) >= sizeof (ut)) {
480 (void) strcpy(ut, useua);
483 if ((dot = strrchr(ut, '.')) != 0) {
485 if ((dot = strrchr(ut, '.')) != 0)
493 if ((len = strlen(ut))+strlen(port) >=
494 sizeof (ut)) {
498 (void) strcat(ut + len, port);
502 addr = uaddr2taddr(nc, ut);
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Duname.c146 uname(register struct utsname* ut) argument
169 if (gethostname(ut->nodename, sizeof(ut->nodename) - 1))
172 strncpy(ut->nodename, "local", sizeof(ut->nodename) - 1);
175 if (!(ut->sysname = sys))
177 if (!*(ut->sysname = SYSNAME))
178 ut->sysname = ut->nodename;
180 if (!(ut
262 struct utsname ut; local
[all...]
H A Dwho.c135 # define dead(ut) (nonuser(ut))
139 # define dead(ut) ((ut).ut_type != USER_PROCESS)
144 # define dead(ut) ((ut).ut_type == DEAD_PROCESS)
147 # define dead(ut) 0
151 #define skip(ut) (!*ut.ut_user||!*ut
213 struct utmpx ut; local
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dgetut.c421 _compat_updwtmp(const char *file, struct utmp *ut) argument
436 utmp_api2frec(ut, &fut);
H A Dgetutx.c891 updwtmp(const char *file, struct utmp *ut) argument
899 getutmpx(ut, &utmpx);
902 _compat_updwtmp(file, ut);
1150 struct futmpx *ut; /* "current" utmpx being examined */ local
1172 while (ut = getoneutx(&offset))
1173 if (idcmp(utmp->ut_id, ut->ut_id)) {
1181 if (ut->ut_type == DEAD_PROCESS)
1184 (void) memcpy(saveid, ut->ut_id,
1188 if (ut) {
1194 (void) memcpy((caddr_t)utmp->ut_id, ut
1364 getutmpx(const struct utmp *ut, struct utmpx *utx) argument
1388 getutmp(const struct utmpx *utx, struct utmp *ut) argument
[all...]
/osnet-11/usr/src/lib/libast/common/comp/
H A Domitted.c1050 utimes(const char* path, const struct timeval* ut) argument
1057 if ((r = sysutimes(path, ut)) && errno == ENOENT && execrate(path, buf, sizeof(buf), 0))
1060 r = sysutimes(path = buf, ut);
1068 utime(const char* path, const struct utimbuf* ut) argument
1075 if ((r = sysutime(path, ut)) && errno == ENOENT && execrate(path, buf, sizeof(buf), 0))
1078 r = sysutime(path = buf, ut);
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfsundelete.c1615 struct utimbuf ut; local
1620 ut.actime = date;
1621 ut.modtime = date;
1622 if (utime(pathname, &ut)) {

Completed in 69 milliseconds