Searched refs:item (Results 1 - 12 of 12) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOPMPowerSourceList.cpp110 // Find the item in the list, unlink it, and free it.
115 IOPMPowerSource * item = firstItem; local
118 if ( NULL == item) goto exit;
120 if ( item == theItem ) {
121 firstItem = item->nextInList;
123 item->release();
126 while ( item->nextInList != NULL ) {
127 if ( item->nextInList == theItem ) {
128 temp = item->nextInList;
129 item
[all...]
H A DIOPMinformeeList.cpp135 // Find the item in the list, unlink it, and free it.
140 IOPMinformee * item = firstItem; local
144 if ( NULL == item )
151 if ( item->whatObject == theItem )
153 firstItem = item->nextInList;
155 item->release();
159 while ( item->nextInList != NULL )
161 if ( item->nextInList->whatObject == theItem )
163 temp = item->nextInList;
164 item
[all...]
H A DIOServicePM.cpp675 IOPMinformee * item; local
678 while ((item = list->firstInList()))
680 list->removeFromList(item->whatObject);
1188 IOPMinformee * item; local
1204 item = list->findItem(driver);
1205 if (item && item->active)
1207 item->active = false;
/macosx-10.5.8/xnu-1228.15.4/osfmk/console/panic_ui/
H A Dsetupdialog.c217 int row, col, item, line=0, currWidth; local
238 for( item=0; item<17; item++)
239 pixmap[item] = (int *) malloc( 2*width[item]*height*sizeof(int) );
247 for( item=0; item < numbers; item++) {
250 for( col=0; col < width[item]; co
[all...]
/macosx-10.5.8/xnu-1228.15.4/security/
H A Dmac_alloc.h65 void mac_zone_change (zone_t zone, unsigned int item, boolean_t value);
H A Dmac_alloc.c139 mac_zone_change(zone_t zone, unsigned int item, boolean_t value) argument
142 zone_change(zone, item, value);
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dpthread_synch.c130 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; local
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) argument
1687 workqueue_removeitem(struct workqueue *wq, int prio, user_addr_t item) argument
1723 user_addr_t item = 0; local
1960 wq_runitem(proc_t p, user_addr_t item, thread_t th, struct threadlist *tl, int reuse_thread, int wake_thread, int return_directly) argument
1990 setup_wqthread(proc_t p, thread_t th, user_addr_t item, int reuse_thread, struct threadlist *tl) argument
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dzalloc.h214 unsigned int item,
H A Dzalloc.c1333 unsigned int item,
1339 switch(item){
1331 zone_change( zone_t zone, unsigned int item, boolean_t value) argument
/macosx-10.5.8/xnu-1228.15.4/osfmk/ipc/
H A Dipc_port.c1686 unsigned long item; member in struct:port_item
1708 unsigned long item);
1727 i->item = i->count = 0;
1734 unsigned long item)
1740 if (i->item == item) {
1749 i->item = item;
1794 iprintf("0x%x\t%8d\n", p->item, p->count);
1803 iprintf("0x%x\t%8d\t", p->item,
1732 port_item_add( port_track *trackp, unsigned long item) argument
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/dtrace/
H A Ddtrace_glue.c608 ddi_soft_state_zalloc(void *state, int item) argument
611 if (item < NSOFT_STATES)
618 ddi_get_soft_state(void *state, int item) argument
621 ASSERT(item < NSOFT_STATES);
622 return soft[item];
626 ddi_soft_state_free(void *state, int item) argument
628 ASSERT(item < NSOFT_STATES);
629 bzero( soft[item], (size_t)state );
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dsysproto.h1455 char item_l_[PADL_(user_addr_t)]; user_addr_t item; char item_r_[PADR_(user_addr_t)]; member in struct:workq_ops_args

Completed in 142 milliseconds