HomeSort by: relevance | last modified time | path
    Searched defs:pts (Results 1 - 8 of 8) sorted by relevancy

  /src/lib/libc/gen/
devname.c 55 static devmajor_t pts; variable
61 pts = getdevmajor("pts", S_IFCHR);
96 if (type != S_IFCHR || pts == NODEVMAJOR || major(dev) != pts)
  /src/bin/ps/
ps.c 168 else if (strncmp(ttname, "pts/", 4) == 0 ||
181 devmajor_t pts; local
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/sys/kern/
kern_time.c 1036 ptimer_free(struct ptimers *pts, int index)
1043 it = pts->pts_timers[index];
1045 pts->pts_timers[index] = NULL;
1070 struct ptimers *pts; local
1073 pts = kmem_alloc(sizeof(*pts), KM_SLEEP);
1074 LIST_INIT(&pts->pts_virtual);
1075 LIST_INIT(&pts->pts_prof);
1077 pts->pts_timers[i] = NULL;
1080 p->p_timers = pts;
1104 struct ptimers *pts; local
1225 struct ptimers *pts; local
1315 struct ptimers *pts; local
1390 struct ptimers *pts; local
1495 struct ptimers *pts; local
1526 struct ptimers *pts; local
1577 struct ptimers *pts; local
1640 struct ptimers *pts; local
1758 struct ptimers *pts; local
    [all...]
  /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
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/libc/sys/
t_poll.c 1001 char *pts; local
1006 REQUIRE_LIBC(pts = ptsname(hostfd), NULL);
1007 RL(appfd = open(pts, O_RDWR|O_NOCTTY));
1022 char *pts; local
1027 REQUIRE_LIBC(pts = ptsname(hostfd), NULL);
1028 RL(appfd = open(pts, O_RDWR|O_NOCTTY));
  /src/tests/lib/libpthread/
t_cancellation.c 809 char *pts; local
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::__anon7734::__anon7735

Completed in 30 milliseconds