Searched refs:links (Results 1 - 19 of 19) sorted by relevance

/xnu-2422.115.4/iokit/Kernel/
H A DIORegistryEntry.cpp1317 OSArray * links; local
1320 if( (links = (OSArray *)
1323 result = arrayMember( links, to );
1325 result = links->setObject( to );
1329 links = OSArray::withObjects( (const OSObject **) &to, 1, 1 );
1330 result = (links != 0);
1333 links );
1334 links->release();
1345 OSArray * links; local
1348 if( (links
1373 OSArray * links; local
1398 OSArray * links; local
1434 OSArray * links; local
1461 OSArray * links; local
1537 OSArray * links; local
1559 OSArray * links; local
1623 OSArray * links; local
1686 OSArray * links; local
1713 OSArray * links; local
1740 OSArray * links; local
1981 OSArray * links = 0; local
[all...]
/xnu-2422.115.4/osfmk/ipc/
H A Dipc_pset.c250 queue_t links)
260 ipc_mqueue_remove_from_all(&port->ip_messages, links);
282 queue_t links = &link_data; local
285 queue_init(links);
294 ipc_mqueue_remove_all(&pset->ips_messages, links);
309 while(!queue_empty(links)) {
310 wql = (wait_queue_link_t) dequeue(links);
248 ipc_pset_remove_from_all( ipc_port_t port, queue_t links) argument
H A Dipc_pset.h129 queue_t links);
H A Dipc_mqueue.h172 queue_t links);
177 queue_t links);
H A Dipc_right.c663 queue_t links = &links_data; local
668 queue_init(links);
669 ipc_port_clear_receiver(port, links);
671 while(!queue_empty(links)) {
672 wql = (wait_queue_link_t) dequeue(links);
816 queue_t links = &links_data; local
822 queue_init(links);
824 ipc_port_clear_receiver(port, links);
827 while(!queue_empty(links)) {
828 wql = (wait_queue_link_t) dequeue(links);
1125 queue_t links = &links_data; local
1454 queue_t links = &links_data; local
1836 ipc_right_copyin( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, mach_msg_type_name_t msgt_name, boolean_t deadok, ipc_object_t *objectp, ipc_port_t *sorightp, ipc_port_t *releasep, int *assertcntp, queue_t links) argument
[all...]
H A Dipc_object.c508 queue_t links = &links_data; local
515 queue_init(links);
536 links);
541 while(!queue_empty(links)) {
542 wql = (wait_queue_link_t) dequeue(links);
H A Dipc_right.h195 queue_t links);
H A Dipc_kmsg.c1693 queue_t links = &links_data; local
1696 queue_init(links);
1790 links);
1797 links);
1822 links);
1829 links);
1849 links);
1856 links);
1915 links);
1922 links);
[all...]
H A Dipc_mqueue.c182 queue_t links)
186 wait_queue_unlink_all_nofree(mq_waitq, links);
200 queue_t links)
204 wait_queue_set_unlink_all_nofree(mq_setq, links);
1098 * Iterate over the member ports through the mqueue set links
180 ipc_mqueue_remove_from_all( ipc_mqueue_t mqueue, queue_t links) argument
198 ipc_mqueue_remove_all( ipc_mqueue_t mqueue, queue_t links) argument
H A Dipc_port.h415 queue_t links);
H A Dmach_port.c1368 queue_t links = &links_data; local
1383 queue_init(links);
1419 ipc_pset_remove_from_all(port, links);
1432 while(!queue_empty(links)) {
1433 wql = (wait_queue_link_t) dequeue(links);
H A Dipc_port.c551 queue_t links)
561 ipc_pset_remove_from_all(port, links);
549 ipc_port_clear_receiver( ipc_port_t port, queue_t links) argument
/xnu-2422.115.4/osfmk/kern/
H A Dwait_queue.c211 "wait queue links");
441 "wait queue set links corruption: wqs=%#x, wql=%#x", \
846 queue_t links)
870 enqueue(links, &wql->wql_links);
889 queue_t links)
899 wait_queue_unlink_all_nofree_locked(wq, links);
910 * sets and enqueue the allocated ones onto the links queue
918 queue_t links)
944 enqueue(links, &wql->wql_links);
968 queue_t links local
844 wait_queue_unlink_all_nofree_locked( wait_queue_t wq, queue_t links) argument
887 wait_queue_unlink_all_nofree( wait_queue_t wq, queue_t links) argument
916 wait_queue_unlink_all_locked( wait_queue_t wq, queue_t links) argument
1011 wait_queue_set_unlink_all_nofree( wait_queue_set_t wq_set, queue_t links) argument
1075 queue_t links = &links_queue_head; local
[all...]
H A Dwait_queue.h97 queue_head_t wqs_setlinks; /* links from set perspective */
98 queue_head_t wqs_preposts; /* preposted links */
111 * consist of both thread shuttle elements and links off of
115 * shuttle (run queue links and run queue pointer). Any change in
136 * operation. Each port's event queue links in all the portset
360 queue_t links);
364 queue_t links);
H A Dthread.h141 queue_chain_t links; /* run/wait queue links */ member in struct:thread
304 * - affinity_threads links task threads with the same affinity set
H A Dsched_prim.c4768 queue_iterate(q, thread, thread_t, links) {
/xnu-2422.115.4/osfmk/vm/
H A Dvm_map.h210 struct vm_map_links links; /* links to other entries */ member in struct:vm_map_entry
211 #define vme_prev links.prev
212 #define vme_next links.next
213 #define vme_start links.start
214 #define vme_end links.end
289 struct vm_map_links links; /* first, last, min, max */ member in struct:vm_map_header
322 #define min_offset hdr.links.start /* start of range */
323 #define max_offset hdr.links.end /* end of range */
355 #define vm_map_to_entry(map) ((struct vm_map_entry *) &(map)->hdr.links)
[all...]
H A Dvm_map.c5692 * The links in the entry chain must be
6274 copy->cpy_hdr.links.prev;
6275 copy->cpy_hdr.links.prev = copy_entry;
6319 copy->cpy_hdr.links.prev->vme_next =
6321 copy->cpy_hdr.links.prev
6351 copy->cpy_hdr.links.next = next_copy;
6352 copy->cpy_hdr.links.prev = previous_prev;
6411 copy->cpy_hdr.links.prev;
6412 copy->cpy_hdr.links.prev = copy_entry;
6442 copy->cpy_hdr.links
[all...]
/xnu-2422.115.4/tools/lldbmacros/
H A Dmemory.py931 vme_list_head = task.map.hdr.links
934 for vme in IterateQueue(vme_list_head, vme_ptr_type, "links"):
961 vme_list_head = map_val.hdr.links
964 for vme in IterateQueue(vme_list_head, vme_ptr_type, "links"):
993 num_pages = (unsigned(vme.links.end) - unsigned(vme.links.start)) >> 12
994 out_string += format_string.format(vme, vme.links.start, vme_protection, vme_max_protection, vme_extra_info_str, num_pages, vme.object.vm_object, vme.offset)

Completed in 148 milliseconds