/src/lib/libc/gen/ |
devname.c | 54 static devmajor_t pts; variable in typeref:typename:devmajor_t 60 pts = getdevmajor("pts", S_IFCHR); 95 if (type != S_IFCHR || pts == NODEVMAJOR || major(dev) != pts)
|
/src/tests/lib/libc/sys/ |
t_poll.c | 1001 char *pts; local in function:pollclosed_ptyapp_setup 1006 REQUIRE_LIBC(pts = ptsname(hostfd), NULL); 1007 RL(appfd = open(pts, O_RDWR|O_NOCTTY)); 1022 char *pts; local in function:pollclosed_ptyhost_setup 1027 REQUIRE_LIBC(pts = ptsname(hostfd), NULL); 1028 RL(appfd = open(pts, O_RDWR|O_NOCTTY));
|
/src/sys/kern/ |
kern_time.c | 1035 ptimer_free(struct ptimers *pts, int index) 1042 it = pts->pts_timers[index]; 1044 pts->pts_timers[index] = NULL; 1069 struct ptimers *pts; local in function:ptimers_alloc 1072 pts = kmem_alloc(sizeof(*pts), KM_SLEEP); 1073 LIST_INIT(&pts->pts_virtual); 1074 LIST_INIT(&pts->pts_prof); 1076 pts->pts_timers[i] = NULL; 1079 p->p_timers = pts; 1103 struct ptimers *pts; local in function:ptimers_free 1224 struct ptimers *pts; local in function:timer_create1 1314 struct ptimers *pts; local in function:sys_timer_delete 1389 struct ptimers *pts; local in function:dotimer_settime 1483 struct ptimers *pts; local in function:dotimer_gettime 1514 struct ptimers *pts; local in function:sys_timer_getoverrun 1565 struct ptimers *pts; local in function:dogetitimer 1628 struct ptimers *pts; local in function:dosetitimer 1746 struct ptimers *pts; local in function:ptimer_tick [all...] |
/src/bin/ps/ |
ps.c | 168 else if (strncmp(ttname, "pts/", 4) == 0 || 181 devmajor_t pts; local in function:ttyname2dev 185 pts = getdevmajor("pts", S_IFCHR); 186 if (pts != NODEVMAJOR && strncmp(ttname, "pts/", 4) == 0) { 189 snprintf(pathbuf, sizeof(pathbuf), "pts/%d", ptsminor); 191 return makedev(pts, ptsminor);
|
/src/games/sail/ |
extern.h | 212 short pts; member in struct:shipspecs
|
/src/sys/arch/vax/vax/ |
pmap.c | 1272 struct pte *pt, *pts, *ptd; local in function:pmap_protect_long 1322 pts = &pt[start >> VAX_PGSHIFT]; 1325 if (((int)pts - (int)pt) & 7) 1326 panic("pmap_remove: pts not even"); 1331 while (pts < ptd) { 1332 if (kvtopte(pts)->pg_pfn && *(int *)pts) { 1334 if ((*(int *)pts & PG_SREF) == 0) 1335 rmpage(pmap, (u_int *)pts); 1342 memset(pts, 0, sizeof(struct pte) * LTOHPN) [all...] |
/src/tests/lib/libpthread/ |
t_cancellation.c | 809 char *pts; local in function:cancelpoint_tcdrain 814 REQUIRE_LIBC(pts = ptsname(hostfd), NULL); 815 RL(appfd = open(pts, O_RDWR|O_NOCTTY));
|
/src/sys/sys/ |
videoio.h | 2852 u_int64_t pts; member in struct:v4l2_enc_idx_entry 2915 u_int64_t pts; member in struct:v4l2_decoder_cmd::__anona13a034e0f0a::__anona13a034e1008
|