Searched refs:tm (Results 201 - 225 of 516) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/efidev/
H A Defidev.c67 struct efi_tm *tm = (struct efi_tm *)addr; local
69 error = efi_get_time(tm);
74 struct efi_tm *tm = (struct efi_tm *)addr; local
76 error = efi_set_time(tm);
/freebsd-11-stable/usr.sbin/pw/
H A Dpw_log.c50 struct tm *t;
/freebsd-11-stable/usr.bin/who/
H A Dwho.c171 struct tm *tm; local
196 tm = localtime(&t);
197 strftime(buf, sizeof(buf), d_first ? "%e %b %R" : "%b %e %R", tm);
/freebsd-11-stable/contrib/apr/include/
H A Dapr_portable.h86 typedef struct tm apr_os_exp_time_t;
107 typedef struct tm apr_os_exp_time_t;
120 typedef struct tm apr_os_exp_time_t;
165 typedef struct tm apr_os_exp_time_t; /**< native tm */
/freebsd-11-stable/libexec/rpc.rstatd/
H A Drstat_proc.c172 struct timeval tm, btm; local
247 (void)gettimeofday(&tm, NULL);
248 stats_all.s1.v_intr -= hz*(tm.tv_sec - btm.tv_sec) +
249 hz*(tm.tv_usec - btm.tv_usec)/1000000;
290 (void)gettimeofday(&tm, NULL);
291 stats_all.s3.curtime.tv_sec = tm.tv_sec;
292 stats_all.s3.curtime.tv_usec = tm.tv_usec;
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_bancomm.c106 struct stfp_tm tm; member in struct:stfp_time
416 struct tm *tadr;
586 struct tm maj;
610 time_vme->day = stfp->tm.tm_yday+1;
611 time_vme->hr = stfp->tm.tm_hour;
612 time_vme->mn = stfp->tm.tm_min;
613 time_vme->sec = stfp->tm.tm_sec;
/freebsd-11-stable/sys/dev/vt/
H A Dvt_core.c1025 vtterm_bell(struct terminal *tm) argument
1027 struct vt_window *vw = tm->tm_softc;
1040 vtterm_beep(struct terminal *tm, u_int param) argument
1048 vtterm_bell(tm);
1059 vtterm_cursor(struct terminal *tm, const term_pos_t *p) argument
1061 struct vt_window *vw = tm->tm_softc;
1068 vtterm_putchar(struct terminal *tm, const term_pos_t *p, term_char_t c) argument
1070 struct vt_window *vw = tm->tm_softc;
1077 vtterm_fill(struct terminal *tm, const term_rect_t *r, term_char_t c) argument
1079 struct vt_window *vw = tm
1086 vtterm_copy(struct terminal *tm, const term_rect_t *r, const term_pos_t *p) argument
1096 vtterm_param(struct terminal *tm, int cmd, unsigned int arg) argument
1325 vtterm_done(struct terminal *tm) argument
1370 vtterm_cnprobe(struct terminal *tm, struct consdev *cp) argument
1449 vtterm_cngetc(struct terminal *tm) argument
1534 vtterm_cngrab(struct terminal *tm) argument
1568 vtterm_cnungrab(struct terminal *tm) argument
1592 vtterm_opened(struct terminal *tm, int opened) argument
1612 struct terminal *tm = vw->vw_terminal; local
2025 vtterm_mmap(struct terminal *tm, vm_ooffset_t offset, vm_paddr_t * paddr, int nprot, vm_memattr_t *memattr) argument
2039 vtterm_ioctl(struct terminal *tm, u_long cmd, caddr_t data, struct thread *td) argument
2602 struct terminal *tm; local
[all...]
/freebsd-11-stable/contrib/diff/src/
H A Dcontext.c32 size_t nstrftime (char *, size_t, char const *, struct tm const *, int, long);
60 struct tm const *tm = localtime (&inf->stat.st_mtime);
62 if (! (tm && nstrftime (buf, sizeof buf, time_format, tm, 0, nsec)))
59 struct tm const *tm = localtime (&inf->stat.st_mtime); local
/freebsd-11-stable/usr.sbin/timed/timed/
H A Dreadmsg.c446 char tm[26]; local
471 strncpy(tm, ctime(&tsp_time_sec)+3+1, sizeof(tm));
472 tm[15] = '\0'; /* ugh */
477 tm,
/freebsd-11-stable/sys/vm/
H A Dvm_object.c1192 vm_page_t m, tm; local
1247 } while ((tm = vm_page_lookup(tobject, tpindex)) ==
1251 tm = m;
1258 if (tm->valid != VM_PAGE_BITS_ALL)
1260 vm_page_lock(tm);
1261 if (tm->hold_count != 0 || tm->wire_count != 0) {
1262 vm_page_unlock(tm);
1265 KASSERT((tm->flags & PG_FICTITIOUS) == 0,
1266 ("vm_object_madvise: page %p is fictitious", tm));
2272 vm_page_t m, tm; local
[all...]
/freebsd-11-stable/contrib/dialog/
H A Dcalendar.c49 typedef int (*BOX_DRAW) (struct _box *, struct tm *);
142 days_in_month(struct tm *current, int offset /* -1, 0, 1 */ )
168 days_in_year(struct tm *current, int offset /* -1, 0, 1 */ )
176 day_cell_number(struct tm *current)
216 draw_day(BOX * data, struct tm *current)
293 draw_month(BOX * data, struct tm *current)
317 draw_year(BOX * data, struct tm *current)
438 struct tm current;
460 /* compute a struct tm that matches the day/month/year parameters */
622 struct tm ol
[all...]
/freebsd-11-stable/sys/fs/tmpfs/
H A Dtmpfs_vnops.c80 struct tmpfs_mount *tm; local
102 tm = VFS_TO_TMPFS(dvp->v_mount);
107 tmpfs_free_node(tm, pnode);
1204 struct tmpfs_mount *tm; local
1223 tm = VFS_TO_TMPFS(vp->v_mount);
1237 error = tmpfs_dir_getdents(tm, node, uio, 0, NULL, NULL);
1239 error = tmpfs_dir_getdents(tm, node, uio, maxcookies, *cookies,
1501 struct tmpfs_mount *tm; local
1511 tm = VFS_TO_TMPFS(vp->v_mount);
1520 tmpfs_free_node(tm, tn
[all...]
/freebsd-11-stable/usr.bin/ipcs/
H A Dipcs.c93 struct tm *tm; local
98 tm = localtime(&t);
100 tm->tm_hour, tm->tm_min, tm->tm_sec);
/freebsd-11-stable/contrib/unbound/sldns/
H A Dstr2wire.c1419 struct tm tm; local
1424 memset(&tm, 0, sizeof(tm));
1426 &tm.tm_year, &tm.tm_mon, &tm.tm_mday, &tm.tm_hour,
1427 &tm.tm_min, &tm
[all...]
/freebsd-11-stable/usr.sbin/cdcontrol/
H A Dcdcontrol.c530 unsigned char tm, ts, tf; local
605 tm = toc_buffer[tr1].addr.msf.minute;
610 &tm, &ts, &tf); local
611 if ((m1 > tm)
612 || ((m1 == tm)
632 m1 += tm;
658 &tm, &ts, &tf); local
659 m2 = tm;
671 tm = toc_buffer[tr2].addr.msf.minute;
676 &tm, local
698 &tm, &ts, &tf); local
727 &tm, &ts, &tf); local
[all...]
/freebsd-11-stable/contrib/libstdc++/config/locale/generic/
H A Dtime_members.cc45 const tm* __tm) const
127 const tm* __tm) const
/freebsd-11-stable/gnu/lib/csu/
H A DMakefile74 COMMONHDRS+= tm.h tconfig.h options.h
75 CLEANFILES+= ${COMMONHDRS} optionlist cs-tconfig.h cs-tm.h
/freebsd-11-stable/usr.bin/finger/
H A Dsprint.c66 struct tm *lc;
165 struct tm *delta;
/freebsd-11-stable/usr.sbin/rtadvd/
H A Dtimer.c186 rtadvd_set_timer(struct timespec *tm, struct rtadvd_timer *rat) argument
192 TS_ADD(&now, tm, &rat->rat_tm);
/freebsd-11-stable/contrib/libpcap/lbl/
H A Dos-sunos4.h169 struct tm;
171 int strftime(char *, int, char *, struct tm *);
/freebsd-11-stable/contrib/tcpdump/lbl/
H A Dos-sunos4.h170 struct tm;
172 int strftime(char *, int, char *, struct tm *);
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dopenbsd-compat.h109 char *strptime(const char *buf, const char *fmt, struct tm *tm);
/freebsd-11-stable/sys/sys/
H A Defi.h182 int efi_get_time(struct efi_tm *tm);
185 int efi_set_time(struct efi_tm *tm);
/freebsd-11-stable/sys/dev/mpr/
H A Dmpr_sas.h65 struct mpr_command *tm; member in struct:mprsas_target
175 void mprsas_prepare_for_tm(struct mpr_softc *sc, struct mpr_command *tm,
/freebsd-11-stable/usr.bin/at/
H A Dat.c466 struct tm runtime;
648 struct tm *t;
885 struct tm *tm = localtime(&timer); local
886 fprintf(stderr, "%s\n", asctime(tm));
904 struct tm *tm = localtime(&timer); local
905 fprintf(stderr, "%s\n", asctime(tm));

Completed in 336 milliseconds

1234567891011>>