Searched refs:tsp (Results 1 - 25 of 45) sorted by relevance

12

/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-timed.c50 struct tsp *tsp = (struct tsp *)bp; local
54 if (endof(tsp->tsp_type) > snapend) {
58 if (tsp->tsp_type < TSPTYPENUMBER)
59 printf("TSP_%s", tsptype[tsp->tsp_type]);
61 printf("(tsp_type %#x)", tsp->tsp_type);
63 if (endof(tsp->tsp_vers) > snapend) {
67 printf(" vers %d", tsp->tsp_vers);
69 if (endof(tsp
[all...]
H A Dtimed.h52 struct tsp { struct
/macosx-10.10.1/remote_cmds-47/timed.tproj/timedc.tproj/
H A Dextern.h39 struct tsp;
44 void bytehostorder(struct tsp *);
45 void bytenetorder(struct tsp *);
H A Dcmds.c75 void bytenetorder(struct tsp *);
76 void bytehostorder(struct tsp *);
281 struct tsp msg;
314 if (sendto(sock, &msg, sizeof(struct tsp), 0,
328 cc = recvfrom(sock, &msg, sizeof(struct tsp), 0,
339 if (cc < (sizeof(struct tsp) - MAXHOSTNAMELEN + 32)) {
342 cc, sizeof(struct tsp) - MAXHOSTNAMELEN + 32,
386 struct tsp msg;
417 if (sendto(sock, &msg, sizeof(struct tsp), 0,
441 struct tsp ms
[all...]
/macosx-10.10.1/remote_cmds-47/timed.tproj/timed.tproj/
H A Dextern.h42 struct tsp;
48 struct tsp *readmsg(int,
50 struct tsp *acksend(struct tsp *,
54 void adj_msg_time(struct tsp *, struct timeval *);
55 void bytehostorder(struct tsp *);
56 void bytenetorder(struct tsp *);
57 void byteorder(struct tsp *);
62 void doquit(struct tsp *);
77 void newslave(struct tsp *);
[all...]
H A Dacksend.c46 struct tsp *answer;
56 static struct tsp msg;
63 if (sendto(sock, (char *)&msg, sizeof(struct tsp), 0,
78 struct tsp *
80 struct tsp *message; /* this message */
109 if (sendto(sock, (char *)message, sizeof(struct tsp),
H A Dbyteorder.c52 struct tsp *ptr;
72 struct tsp *ptr;
H A Dcandidate.c56 struct tsp *resp, msg;
58 struct tsp *answer;
87 if (sendto(sock, (char *)&msg, sizeof(struct tsp), 0,
H A Dreadmsg.c59 struct tsp msgin;
61 struct tsp info;
78 struct tsp *
212 if ((n = recvfrom(sock, (char *)&msgin, sizeof(struct tsp), 0,
222 if (n < (ssize_t)(sizeof(struct tsp) - MAXHOSTNAMELEN + 32)) {
225 n, sizeof(struct tsp) - MAXHOSTNAMELEN + 32,
414 struct tsp resp;
456 struct tsp *msg;
H A Dcorrect.c62 struct tsp to;
63 struct tsp *answer;
186 struct tsp *msg;
H A Dslave.c58 static void schgdate(struct tsp *, char *);
59 static void setmaster(struct tsp *);
80 struct tsp *msg, to;
83 struct tsp *answer;
159 if (sendto(sock, (char *)&to, sizeof(struct tsp), 0,
502 sizeof(struct tsp), 0,
570 sizeof(struct tsp), 0,
635 struct tsp *msg;
665 struct tsp *msg;
668 struct tsp t
[all...]
H A Dmaster.c62 static void mchgdate(struct tsp *);
86 struct tsp *msg, *answer, to;
156 sizeof(struct tsp), 0,
356 struct tsp *msg;
488 struct tsp to;
489 struct tsp *answer;
762 struct tsp *msg;
765 struct tsp *answer, to;
808 struct tsp *msg;
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cryptkit/
H A Dplatform.c46 struct tsval tsp; local
48 (void)kern_timestamp(&tsp);
49 return tsp.low_val;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A Dplatform.c46 struct tsval tsp; local
48 (void)kern_timestamp(&tsp);
49 return tsp.low_val;
/macosx-10.10.1/shell_cmds-179/who/
H A Dutmpentry.c57 #define timespecclear(tsp) (tsp)->tv_sec = (time_t)((tsp)->tv_nsec = 0L)
58 #define timespeccmp(tsp, usp, cmp) \
59 (((tsp)->tv_sec == (usp)->tv_sec) ? \
60 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
61 ((tsp)->tv_sec cmp (usp)->tv_sec))
/macosx-10.10.1/Libc-1044.1.2/include/protocols/
H A Dtimed.h73 struct tsp { struct
/macosx-10.10.1/shell_cmds-179/date/
H A Dnetdate.c72 struct tsp msg;
127 if (send(s, (char *)&msg, sizeof(struct tsp), 0) < 0) {
153 if (recvfrom(s, &msg, sizeof(struct tsp), 0,
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DBranchFolding.h57 SameTailElt(MPIterator mp, MachineBasicBlock::iterator tsp) argument
58 : MPIter(mp), TailStartPos(tsp) {}
/macosx-10.10.1/msdosfs-209.1.1/msdosfs.kextproj/msdosfs.kmodproj/
H A Ddirentry.h162 void msdosfs_unix2dostime(struct timespec *tsp, u_int16_t *ddp,
164 void msdosfs_dos2unixtime(u_int dd, u_int dt, u_int dh, struct timespec *tsp);
/macosx-10.10.1/file_cmds-242/stat/
H A Dstat.c551 const struct timespec *tsp; local
556 tsp = NULL;
675 tsp = &st->st_atimespec;
678 if (tsp == NULL)
679 tsp = &st->st_mtimespec;
682 if (tsp == NULL)
683 tsp = &st->st_ctimespec;
687 if (tsp == NULL)
688 tsp = &st->st_birthtimespec;
690 ts = *tsp; /* cop
[all...]
/macosx-10.10.1/smb-759.0/kernel/smbfs/
H A Dsmbfs_subr.c78 smb_time_NT2local(uint64_t nsec, struct timespec *tsp) argument
80 tsp->tv_sec = (long)(nsec / 10000000 - DIFF1970TO1601);
84 smb_time_local2NT(struct timespec *tsp, uint64_t *nsec, int fat_fstype) argument
92 *nsec = (((uint64_t)(tsp->tv_sec) & ~1) + DIFF1970TO1601) * (uint64_t)10000000;
94 *nsec = ((uint64_t)tsp->tv_sec + DIFF1970TO1601) * (uint64_t)10000000;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Doptget.c525 register Push_t* tsp; local
527 while (tsp = psp)
530 free(tsp);
1218 Push_t* tsp; local
1224 if (tsp = newof(0, Push_t, 1, n + 1))
1226 tsp->nb = (char*)(tsp + 1);
1227 tsp->ne = tsp->nb + n;
1228 strcpy(tsp
1247 Push_t* tsp; local
1304 Push_t* tsp; local
1830 Push_t* tsp; local
2401 Push_t* tsp; local
4278 Push_t* tsp; local
[all...]
/macosx-10.10.1/vim-55/src/proto/
H A Dgui_athena.pro16 void gui_mch_get_toolbar_colors __ARGS((Pixel *bgp, Pixel *fgp, Pixel *bsp, Pixel *tsp, Pixel *hsp));
/macosx-10.10.1/apache-793/httpd/modules/filters/
H A Dsed0.c930 char *ep, *tsp; local
940 for(tsp = commands->cp; (c = *tsp) != commands->sseof; tsp++) {
942 tsp++;
948 tsp++;
958 if((ep[cint] = *tsp++) == '\\' && *tsp == 'n') {
960 tsp++;
966 if(*tsp !
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_time.c688 struct timespec *tsp)
695 tsp->tv_sec = tv_sec;
696 tsp->tv_nsec = tv_nsec;
701 struct timespec *tsp)
708 tsp->tv_sec = tv_sec;
709 tsp->tv_nsec = tv_nsec;
687 nanotime( struct timespec *tsp) argument
700 nanouptime( struct timespec *tsp) argument

Completed in 144 milliseconds

12