• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/kern/

Lines Matching defs:item

130 static int workqueue_additem(struct workqueue *wq, int prio, user_addr_t item);
131 static int workqueue_removeitem(struct workqueue *wq, int prio, user_addr_t item);
133 static void wq_runitem(proc_t p, user_addr_t item, thread_t th, struct threadlist *tl,
135 static int setup_wqthread(proc_t p, thread_t th, user_addr_t item, int reuse_thread, struct threadlist *tl);
1546 user_addr_t item = uap->item;
1557 KERNEL_DEBUG(0xefffd008 | DBG_FUNC_NONE, (int)item, 0, 0, 0, 0);
1568 error = workqueue_additem(wq, prio, item);
1583 error = workqueue_removeitem(wq, prio, item);
1661 workqueue_additem(struct workqueue *wq, int prio, user_addr_t item)
1674 witem->wi_item = item;
1687 workqueue_removeitem(struct workqueue *wq, int prio, user_addr_t item)
1696 if (witem->wi_item == item) {
1723 user_addr_t item = 0;
1857 item = witem->wi_item;
1880 * since we last scheduled an item... and
1881 * the elapsed time since we last scheduled an item
1908 wq_runitem(p, item, th_to_run, tl, reuse_thread, wake_thread, (thread == th_to_run));
1912 KERNEL_DEBUG(0xefffd000 | DBG_FUNC_END, (int)thread, (int)item, wq->wq_flags, 1, 0);
1960 wq_runitem(proc_t p, user_addr_t item, thread_t th, struct threadlist *tl,
1965 KERNEL_DEBUG1(0xefffd004 | DBG_FUNC_START, (int)current_thread(), (int)item, wake_thread, tl->th_affinity_tag, (int)th);
1967 ret = setup_wqthread(p, th, item, reuse_thread, tl);
1990 setup_wqthread(proc_t p, thread_t th, user_addr_t item, int reuse_thread, struct threadlist *tl)
2008 ts64->r6 = (uint64_t)item;
2029 ts->edx = (unsigned int)item;
2047 ts64->rcx = (uint64_t)item;