Searched refs:tval (Results 26 - 50 of 71) sorted by relevance

123

/macosx-10.9.5/libedit-39/src/
H A Dterminal.c181 } tval[] = { variable in typeref:struct:termcapval
1358 for (tv = tval; tv->name != NULL; tv++)
1365 if (tv == &tval[T_pt] || tv == &tval[T_km] ||
1366 tv == &tval[T_am] || tv == &tval[T_xn]) {
1368 el->el_terminal.t_val[tv - tval] = 1;
1370 el->el_terminal.t_val[tv - tval] = 0;
1390 el->el_terminal.t_val[tv - tval] = (int) i;
1393 if (tv == &tval[T_c
[all...]
/macosx-10.9.5/file_cmds-230/pax/
H A Dsel_subs.c533 str_sec(const char *p, time_t *tval) argument
554 lt = localtime(tval);
609 if ((*tval = mktime(lt)) == -1)
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libedit/
H A Dterm.c227 } tval[] = { variable in typeref:struct:termcapval
1305 for (tv = tval; tv->name != NULL; tv++)
1310 if (tv == &tval[T_pt] || tv == &tval[T_km] ||
1311 tv == &tval[T_am] || tv == &tval[T_xn]) {
1313 el->el_term.t_val[tv - tval] = 1;
1315 el->el_term.t_val[tv - tval] = 0;
1335 el->el_term.t_val[tv - tval] = (int) i;
1338 if (tv == &tval[T_c
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftp/
H A Druserpass.c53 int tval; member in struct:toktab
311 return (t->tval);
/macosx-10.9.5/awk-18/src/
H A Dparse.c196 cp->tval = ARR;
247 v->tval = FCN;
/macosx-10.9.5/lukemftp-13.92.1/tnftp/src/
H A Druserpass.c77 int tval; member in struct:toktab
323 return (t->tval);
H A Dfetch.c1252 struct timeval tval[2]; local
1254 (void)gettimeofday(&tval[0], NULL);
1255 tval[1].tv_sec = mtime;
1256 tval[1].tv_usec = 0;
1260 if (utimes(savefile, tval) == -1) {
/macosx-10.9.5/syslog-217.1.4/syslogd.tproj/
H A Ddaemon.c807 char *p, *colon, *brace, *space, *tmp, *tval, *hval, *sval, *pval, *mval; local
818 tval = NULL;
877 tval = tmp;
883 asprintf(&tval, "%d.%02d.%02d %02d:%02d:%02d UTC", time.tm_year + 1900, time.tm_mon + 1, time.tm_mday, time.tm_hour, time.tm_min, time.tm_sec);
979 if (tval != NULL)
981 asl_set(msg, ASL_KEY_TIME, tval);
982 free(tval);
/macosx-10.9.5/tcl-102/tcl84/tcl/unix/
H A DtclUnixFile.c831 TclpUtime(pathPtr, tval)
833 struct utimbuf *tval; /* New modification date structure */
835 return utime(Tcl_FSGetNativePath(pathPtr),tval);
H A DtclUnixFCmd.c1234 struct utimbuf tval;
1256 tval.actime = statBufPtr->st_atime;
1257 tval.modtime = statBufPtr->st_mtime;
1259 if (utime(dst, &tval)) { /* INTL: Native. */
1223 struct utimbuf tval; local
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dif_llreach.c222 iflr_reachable(struct if_llreach *lr, int cmp_delta, u_int64_t tval) argument
245 return ((expire >= now) && (now - tval) < lr->lr_reachable);
258 ifnet_llreach_reachable_delta(struct if_llreach *lr, u_int64_t tval) argument
263 return (iflr_reachable(lr, 1, tval));
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclCmdAH.c856 struct utimbuf tval;
871 tval.actime = newTime;
872 tval.modtime = buf.st_mtime;
873 if (Tcl_FSUtime(objv[2], &tval) != 0) {
1093 struct utimbuf tval;
1108 tval.actime = buf.st_atime;
1109 tval.modtime = newTime;
1110 if (Tcl_FSUtime(objv[2], &tval) != 0) {
844 struct utimbuf tval; local
1081 struct utimbuf tval; local
/macosx-10.9.5/xnu-2422.115.4/tools/lldbmacros/
H A Dmisc.py72 tval = ' {:#018x}: {:16d} {:16d} {:s}{:3d}.{:09d} ({:#018x})({:#018x},{:#018x})'
73 print tval.format(entry,
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclCmdAH.c832 struct utimbuf tval;
897 tval.actime = newTime;
898 tval.modtime = buf.st_mtime;
900 tval.actime = buf.st_atime;
901 tval.modtime = newTime;
904 if (Tcl_FSUtime(objv[2], &tval) != 0) {
819 struct utimbuf tval; local
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/asn/
H A Dasn.tcl920 set tval [expr {$type & 0x1f}]
921 if {$tval == 0x1f} {
924 set tval [expr {wide($tagbyte & 0x7f)}]
927 set tval [expr {($tval << 7) + ($tagbyte & 0x7f)}]
933 set tag $tval
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dtask.c2343 uint64_t tval; local
2352 tval = timer_grab(&thread->user_timer);
2353 info->threads_user += tval;
2354 info->total_user += tval;
2356 tval = timer_grab(&thread->system_timer);
2358 info->threads_system += tval;
2359 info->total_system += tval;
2362 info->threads_user += tval;
2363 info->total_user += tval;
2787 uint64_t tval; local
[all...]
H A Dtelemetry.c636 uint64_t tval = timer_grab(&thread->system_timer); local
639 thsnap->system_time = tval;
641 thsnap->user_time += tval;
/macosx-10.9.5/syslog-217.1.4/libsystem_asl.tproj/src/
H A Dasl.c1080 struct timeval tval; local
1117 memset(&tval, 0, sizeof(struct timeval));
1119 status = gettimeofday(&tval, NULL);
1122 snprintf(aux_val, sizeof(aux_val), "%lu", tval.tv_sec);
1124 snprintf(aux_val, sizeof(aux_val), "%d", tval.tv_usec * 1000);
1255 if (tval.tv_sec > last_send)
1257 delta = tval.tv_sec - last_send;
1263 OSAtomicCompareAndSwapLongBarrier(last_send, tval.tv_sec, (long *)&_asl_global.last_send);
1268 if ((tval.tv_sec - last_oq) > QUOTA_MSG_INTERVAL)
1271 OSAtomicCompareAndSwapLongBarrier(last_oq, tval
[all...]
/macosx-10.9.5/top-89.1.2/
H A Dglobalstats.c198 struct timeval tval; local
201 gettimeofday(&tval, NULL);
202 localtime_r(&(tval.tv_sec), &tm);
207 timersub(&tsamp->time, &tsamp->b_time, &tval);
209 sec = tval.tv_sec;
/macosx-10.9.5/rsync-42/rsync/
H A Dutil.c1180 struct timeval tval, t1, t2; local
1185 tval.tv_sec = (t-tdiff)/1000;
1186 tval.tv_usec = 1000*((t-tdiff)%1000);
1189 select(0,NULL,NULL, NULL, &tval);
/macosx-10.9.5/tcl-102/tcl/tcl/unix/
H A DtclUnixFCmd.c1265 struct utimbuf tval;
1286 tval.actime = statBufPtr->st_atime;
1287 tval.modtime = statBufPtr->st_mtime;
1289 if (utime(dst, &tval)) { /* INTL: Native. */
1254 struct utimbuf tval; local
H A DtclUnixFile.c1182 struct utimbuf *tval) /* New modification date structure */
1184 return utime(Tcl_FSGetNativePath(pathPtr), tval);
1163 TclpUtime( Tcl_Obj *pathPtr, struct utimbuf *tval) argument
/macosx-10.9.5/vim-53/src/
H A Dif_sniff.c951 struct timeval tval; local
956 tval.tv_sec = 0;
957 tval.tv_usec = 0;
970 if (select(fd + 1, &rfds, NULL, NULL, &tval) > 0)
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dsocket_wrapper.c155 #define swrapGetTimeOfDay(tval) gettimeofday(tval,NULL)
157 #define swrapGetTimeOfDay(tval) gettimeofday(tval)
769 static struct swrap_packet *swrap_packet_init(struct timeval *tval, argument
829 packet->frame.seconds = tval->tv_sec;
830 packet->frame.micro_seconds = tval->tv_usec;
/macosx-10.9.5/xnu-2422.115.4/osfmk/kdp/
H A Dkdp.c1406 uint64_t tval; local
1427 tval = safe_grab_timer_value(&thread->user_timer);
1428 tsnap->user_time = tval;
1429 tval = safe_grab_timer_value(&thread->system_timer);
1431 tsnap->system_time = tval;
1433 tsnap->user_time += tval;

Completed in 338 milliseconds

123