Searched refs:st (Results 1 - 15 of 15) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_clock.c337 struct timeval st; local
344 st.tv_sec = syst->seconds;
345 st.tv_usec = syst->microseconds;
349 ticks = ((tv->tv_sec - st.tv_sec) * 1000 +
350 (tv->tv_usec - st.tv_usec) / 1000) /
361 struct timeval st; local
369 st = p->p_stats->p_ru.ru_stime;
372 tv->seconds = st.tv_sec;
373 tv->microseconds = st.tv_usec;
H A Dkern_acct.c224 struct timeval ut, st, tmp; local
245 calcru(p, &ut, &st, NULL);
247 an_acct.ac_stime = encode_comp_t(st.tv_sec, st.tv_usec);
261 timevaladd(&tmp, &st);
H A Dkern_resource.c958 struct timeval ut,st; local
965 st.tv_sec = tinfo.system_time.seconds;
966 st.tv_usec = tinfo.system_time.microseconds;
968 timeradd(&st, sp, sp);
976 st.tv_sec = ttimesinfo.system_time.seconds;
977 st.tv_usec = ttimesinfo.system_time.microseconds;
979 timeradd(&st, sp, sp);
H A Dkern_event.c2988 struct vinfo_stat * st; local
2992 st = &kinfo->kq_stat;
2994 st->vst_size = kq->kq_count;
2996 st->vst_blksize = sizeof(struct kevent64_s);
2998 st->vst_blksize = sizeof(struct kevent);
2999 st->vst_mode = S_IFIFO;
H A Dkern_exit.c1875 struct timeval ut,st; local
1891 st.tv_sec = ttimesinfo.system_time.seconds;
1892 st.tv_usec = ttimesinfo.system_time.microseconds;
1894 timeradd(&st,&p->p_ru->ru_stime,&p->p_ru->ru_stime);
/darwin-on-arm/xnu/security/
H A Dmac_port.c104 mac_port_label_associate(struct label *it, struct label *st, struct label *port) argument
109 MAC_PERFORM(port_label_associate, it, st, port);
H A Dmac_mach_internal.h90 void mac_port_label_associate(struct label *it, struct label *st, struct label *plabel);
H A Dmac_policy.h2619 @param st Task label of target
2629 struct label *st,
/darwin-on-arm/xnu/tools/tests/libMicro/
H A Dbench.sh664 pipe $OPTS -N "pipe_pst1" -s 1 -I 1000 -x pipe -m st
667 pipe $OPTS -N "pipe_pst4k" -s 4k -I 1000 -x pipe -m st
671 pipe $OPTS -N "pipe_sst1" -s 1 -I 1000 -x sock -m st
674 pipe $OPTS -N "pipe_sst4k" -s 4k -I 1000 -x sock -m st
678 pipe $OPTS -N "pipe_tst1" -s 1 -I 1000 -x tcp -m st
681 pipe $OPTS -N "pipe_tst4k" -s 4k -I 1000 -x tcp -m st
H A Dcoreos_bench.sh682 pipe $OPTS -N "pipe_pst1" -s 1 -I 1000 -x pipe -m st
685 pipe $OPTS -N "pipe_pst4k" -s 4k -I 1000 -x pipe -m st
689 pipe $OPTS -N "pipe_sst1" -s 1 -I 1000 -x sock -m st
692 pipe $OPTS -N "pipe_sst4k" -s 4k -I 1000 -x sock -m st
696 pipe $OPTS -N "pipe_tst1" -s 1 -I 1000 -x tcp -m st
699 pipe $OPTS -N "pipe_tst4k" -s 4k -I 1000 -x tcp -m st
H A Dembd_bench.sh668 pipe $OPTS -N "pipe_pst1" -s 1 -I 1000 -x pipe -m st
671 pipe $OPTS -N "pipe_pst4k" -s 4k -I 1000 -x pipe -m st
675 pipe $OPTS -N "pipe_sst1" -s 1 -I 1000 -x sock -m st
678 pipe $OPTS -N "pipe_sst4k" -s 4k -I 1000 -x sock -m st
682 pipe $OPTS -N "pipe_tst1" -s 1 -I 1000 -x tcp -m st
685 pipe $OPTS -N "pipe_tst4k" -s 4k -I 1000 -x tcp -m st
/darwin-on-arm/xnu/bsd/sys/
H A Dvnode_internal.h384 void cvtstat(struct stat *st, struct ostat *ost);
/darwin-on-arm/xnu/bsd/net/
H A Dpf_ioctl.c1199 #define PF_MD5_UPD(st, elm) \
1200 MD5Update(ctx, (u_int8_t *)&(st)->elm, sizeof ((st)->elm))
1202 #define PF_MD5_UPD_STR(st, elm) \
1203 MD5Update(ctx, (u_int8_t *)(st)->elm, strlen((st)->elm))
1205 #define PF_MD5_UPD_HTONL(st, elm, stor) do { \
1206 (stor) = htonl((st)->elm); \
1210 #define PF_MD5_UPD_HTONS(st, elm, stor) do { \
1211 (stor) = htons((st)
[all...]
H A Dpf.c1262 struct pf_state *st; local
1265 RB_FOREACH(st, pf_state_tree_id, &tree_id) {
1266 sk = st->state_key;
1283 (*state)->rule.ptr == st->rule.ptr)) {
1284 st->timeout = PFTM_PURGE;
1285 st->src.state = st->dst.state =
/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_session.c433 audit_session_debug_filterfn(proc_t p, void *st) argument
437 au_sentry_debug_t *sed_tab = (au_sentry_debug_t *) st;

Completed in 97 milliseconds