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

/xnu-2782.1.97/osfmk/ipc/
H A Dipc_voucher.h186 iv_refs_t refs; local
191 refs = hw_atomic_sub(&ivac->ivac_refs, 1);
192 if (refs == 0)
H A Dipc_voucher.c103 iv_refs_t refs; local
105 refs = hw_atomic_add(&iv->iv_refs, 1);
106 return refs;
112 iv_refs_t refs; local
115 refs = hw_atomic_sub(&iv->iv_refs, 1);
116 if (0 == refs)
443 iv_refs_t refs; local
448 refs = iv_reference(voucher);
449 assert(1 < refs);
646 panic("deallocing a resource manager with live refs t
1601 iv_refs_t refs; local
[all...]
H A Dipc_importance.c342 /* can't get to no refs if we contribute to something else's importance */
2773 /* Any oustanding made refs? */
2998 uint32_t refs, *outrefsp; local
3005 if (in_content_size != sizeof(refs) ||
3006 (*out_content_size != 0 && *out_content_size != sizeof(refs))) {
3009 refs = *(uint32_t *)(void *)in_content;
3032 if (0 == refs) {
3041 if (III_EXTERN(inherit) < refs) {
3054 inherit->iii_externdrop += refs;
3055 to_task->iit_externdrop += refs;
[all...]
H A Dipc_port.c909 /* consumes our refs for port and pdrequest */
1896 int refs);
/xnu-2782.1.97/osfmk/kern/
H A Dthread_call.c744 int32_t refs; local
756 refs = --call->tc_refs;
757 if (refs < 0) {
758 panic("Refcount negative: %d\n", refs);
764 if (refs == 0) {
H A Dtask.c999 uint32_t refs; local
1004 refs = task_deallocate_internal(task);
1007 if (refs > 1)
1010 if (refs == 1) {
1013 * disconnect it. But more task refs may be added before
1023 if (refs > 0)
1742 /* can unlock task now that we've got the thread refs */
/xnu-2782.1.97/libsyscall/mach/
H A Dmach_port.c140 mach_port_urefs_t *refs)
144 rv = _kernelrpc_mach_port_get_refs(task, name, right, refs);
136 mach_port_get_refs( ipc_space_t task, mach_port_name_t name, mach_port_right_t right, mach_port_urefs_t *refs) argument
/xnu-2782.1.97/osfmk/mach/
H A Dmach_port.defs150 * port (possibly with multiple user refs), a port set, or
151 * a dead name (again, with multiple user refs).
173 * A dead name always has one or more user refs.
174 * A send right always has one or more user refs.
188 out refs : mach_port_urefs_t);
/xnu-2782.1.97/tools/lldbmacros/
H A Dipc.py29 "port", "mqueue", "recvname", "flags", "refs", "recvname", "dest"))
142 "portset", "waitqueue", "recvname", "flags", "refs", "recvname", "process"))
653 @header("{: <18s} {: <4s} {: <8s} {: <8s} {: <18s} {: <18s}".format("iie", "type", "refs", "made", "#kmsgs", "#inherits"))
667 refs = unsigned(iie.iie_bits) & 0x7fffffff
671 out_str += fmt.format(iie, type_str, refs, made_refs, kmsg_count, inherit_count)
728 @header("{: <18s} {: <10s} {: <18s} {: <18s} {: <8s} {: <5s} {: <5s} {: <5s}".format("ivac", "refs", "port", "tbl", "tblsize", "index", "Grow", "freelist"))
868 For example key 1 -> ATM and it puts atm_value_t in the handle. So summary of it would be atm value and refs etc.
871 key 7 -> Bag of Bits and it puts user_data_element_t in handle. So summary of it would be Bag of Bits content and refs etc.
879 @header("{: <18s} {: <18s} {: <10s} {: <4s} {: <18s} {: <18s}".format("ivace", "value_handle", "#refs", "rel?", "maderefs", "next_layer"))
928 @header('{: <18s} {: <8s} {: <18s} {: <18s} {: <18s} {: <18s} {: <18s}'.format("ipc_voucher", "refs", "checksu
[all...]

Completed in 93 milliseconds