HomeSort by: relevance | last modified time | path
    Searched refs:pts (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/sys/rump/fs/lib/libptyfs/
Makefile 7 COMMENT=/dev/pts pseudo file system
  /src/sys/kern/
kern_time.c 1049 ptimer_free(struct ptimers *pts, int index)
1056 it = pts->pts_timers[index];
1058 pts->pts_timers[index] = NULL;
1083 struct ptimers *pts; local
1086 pts = kmem_alloc(sizeof(*pts), KM_SLEEP);
1087 LIST_INIT(&pts->pts_virtual);
1088 LIST_INIT(&pts->pts_prof);
1090 pts->pts_timers[i] = NULL;
1093 p->p_timers = pts;
1117 struct ptimers *pts; local
1238 struct ptimers *pts; local
1328 struct ptimers *pts; local
1403 struct ptimers *pts; local
1508 struct ptimers *pts; local
1539 struct ptimers *pts; local
1590 struct ptimers *pts; local
1653 struct ptimers *pts; local
1771 struct ptimers *pts; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
obsd-nat.c 49 struct ptrace_thread_state pts; local
53 if (ptrace (PT_GET_THREAD_FIRST, pid, (caddr_t)&pts, sizeof pts) == -1)
56 while (pts.pts_tid != -1)
58 ptid_t ptid = ptid_t (pid, pts.pts_tid, 0);
68 if (ptrace (PT_GET_THREAD_NEXT, pid, (caddr_t)&pts, sizeof pts) == -1)
  /src/external/gpl3/gdb/dist/gdb/
obsd-nat.c 49 struct ptrace_thread_state pts; local
53 if (ptrace (PT_GET_THREAD_FIRST, pid, (caddr_t)&pts, sizeof pts) == -1)
56 while (pts.pts_tid != -1)
58 ptid_t ptid = ptid_t (pid, pts.pts_tid, 0);
68 if (ptrace (PT_GET_THREAD_NEXT, pid, (caddr_t)&pts, sizeof pts) == -1)
  /src/external/mpl/dhcp/dist/tests/
t_api.c 162 testspec_t *pts; local
219 pts = &T_testlist[0];
221 while (pts->pfv != NULL) {
222 if (! strcmp(pts->func_name,
232 ++pts;
235 if (pts->pfv == NULL) {
326 pts = &T_testlist[0];
327 while (*pts->pfv != NULL) {
332 (*pts->pfv)();
379 (*pts->pfv)()
762 testspec_t *pts; local
    [all...]
  /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/games/sail/
lo_main.c 113 (float) log.l_netpoints / ship->specs->pts);
154 (float) log.l_netpoints / ship->specs->pts);
dr_1.c 208 ? from->specs->pts
209 : 2 * from->specs->pts);
212 topoints = 2 * from->specs->pts + to->file->points;
214 topoints -= from->specs->pts;
418 net = (float)s->file->points / s->specs->pts;
misc.c 215 net = (float)s->file->points / s->specs->pts;
228 / scene[lp->l_gamenum].ship[lp->l_shipnum].specs->pts) {
assorted.c 281 points = ship->specs->pts + from->file->points;
  /src/external/gpl3/gdb.old/dist/gdbserver/
linux-arm-low.cc 612 struct arm_linux_hw_breakpoint p, *pts; local
625 pts = proc->priv->arch_private->wpts;
630 pts = proc->priv->arch_private->bpts;
634 if (!arm_hwbp_control_is_enabled (pts[i].control))
636 pts[i] = p;
657 struct arm_linux_hw_breakpoint p, *pts; local
670 pts = proc->priv->arch_private->wpts;
675 pts = proc->priv->arch_private->bpts;
679 if (arm_linux_hw_breakpoint_equal (&p, pts + i))
681 pts[i].control = arm_hwbp_control_disable (pts[i].control)
    [all...]
  /src/external/gpl3/gdb/dist/gdbserver/
linux-arm-low.cc 612 struct arm_linux_hw_breakpoint p, *pts; local
625 pts = proc->priv->arch_private->wpts;
630 pts = proc->priv->arch_private->bpts;
634 if (!arm_hwbp_control_is_enabled (pts[i].control))
636 pts[i] = p;
657 struct arm_linux_hw_breakpoint p, *pts; local
670 pts = proc->priv->arch_private->wpts;
675 pts = proc->priv->arch_private->bpts;
679 if (arm_linux_hw_breakpoint_equal (&p, pts + i))
681 pts[i].control = arm_hwbp_control_disable (pts[i].control)
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
HeapData.cc 108 Vector<hrtime_t> *pts = hData->peakTimestamps; local
110 if (pts != NULL)
111 for (int i = 0; i < pts->size (); i++)
113 ts = pts->fetch (i);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
HeapData.cc 108 Vector<hrtime_t> *pts = hData->peakTimestamps; local
110 if (pts != NULL)
111 for (int i = 0; i < pts->size (); i++)
113 ts = pts->fetch (i);
  /src/external/mit/libuv/dist/src/unix/
tty.c 97 * Implement function to compare major device number with pts devices.
102 * - slave tty: pts - major 5
106 /* Lookup device's major for the pts driver and cache it. */
107 static devmajor_t pts = NODEVMAJOR; local
109 if (pts == NODEVMAJOR) {
110 pts = getdevmajor("pts", S_IFCHR);
111 if (pts == NODEVMAJOR)
127 result = (pts == major(sb.st_rdev));
  /src/external/gpl3/gcc/dist/gcc/
tree-diagnostic-path.cc 288 per_thread_summary *pts = new per_thread_summary (thread.get_name (false), local
290 m_thread_id_to_events.put (tid, pts);
291 m_per_thread_summary.safe_push (pts);
292 return *pts;
308 per_thread_summary &pts local
311 pts.update_depth_limits (event.get_stack_depth ());
317 cur_event_range = new event_range (&path, idx, event, pts);
319 pts.m_event_ranges.safe_push (cur_event_range);
  /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/distrib/utils/embedded/conf/
usermode.conf 18 ptyfs /dev/pts ptyfs rw
  /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/crypto/external/apache2/openssl/dist/crypto/ec/
ec_mult.c 94 EC_POINT **pts; local
96 for (pts = pre->points; *pts != NULL; pts++)
97 EC_POINT_free(*pts);
  /src/crypto/external/bsd/openssl/dist/crypto/ec/
ec_mult.c 100 EC_POINT **pts; local
102 for (pts = pre->points; *pts != NULL; pts++)
103 EC_POINT_free(*pts);
  /src/crypto/external/bsd/openssl.old/dist/crypto/ec/
ec_mult.c 94 EC_POINT **pts; local
96 for (pts = pre->points; *pts != NULL; pts++)
97 EC_POINT_free(*pts);
  /src/distrib/utils/embedded/
mkimage 148 ptyfs /dev/pts ptyfs rw
168 ptyfs /dev/pts ptyfs rw
  /src/external/bsd/ntp/dist/ntpd/
ntpd.c 1509 l_fp pts; local
1513 get_systime(&pts);
1514 tsa = pts;
1536 l_fp dts = pts;
  /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));

Completed in 41 milliseconds

1 2