• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/osfmk/mach/

Lines Matching refs:port

62  *	port identifiers - they are only used for the task_get_special_port
75 #define TASK_HOST_PORT 2 /* The host (priv) port for task. */
77 #define TASK_NAME_PORT 3 /* the name (unpriv) port for task */
89 #define TASK_SEATBELT_PORT 7 /* Seatbelt compiler/DEM port for task. */
91 #define TASK_GSSD_PORT 8 /* GSSD port for security context */
97 #define task_get_wired_ledger_port(task, port) \
98 (task_get_special_port((task), TASK_WIRED_LEDGER_PORT, (port)))
100 #define task_set_wired_ledger_port(task, port) \
101 (task_set_special_port((task), TASK_WIRED_LEDGER_PORT, (port)))
103 #define task_get_paged_ledger_port(task, port) \
104 (task_get_special_port((task), TASK_PAGED_LEDGER_PORT, (port)))
106 #define task_set_paged_ledger_port(task, port) \
107 (task_set_special_port((task), TASK_PAGED_LEDGER_PORT, (port)))
113 #define task_get_kernel_port(task, port) \
114 (task_get_special_port((task), TASK_KERNEL_PORT, (port)))
116 #define task_set_kernel_port(task, port) \
117 (task_set_special_port((task), TASK_KERNEL_PORT, (port)))
119 #define task_get_host_port(task, port) \
120 (task_get_special_port((task), TASK_HOST_PORT, (port)))
122 #define task_set_host_port(task, port) \
123 (task_set_special_port((task), TASK_HOST_PORT, (port)))
125 #define task_get_bootstrap_port(task, port) \
126 (task_get_special_port((task), TASK_BOOTSTRAP_PORT, (port)))
128 #define task_set_bootstrap_port(task, port) \
129 (task_set_special_port((task), TASK_BOOTSTRAP_PORT, (port)))
131 #define task_get_gssd_port(task, port) \
132 (task_get_special_port((task), TASK_GSSD_PORT, (port)))
134 #define task_set_gssd_port(task, port) \
135 (task_set_special_port((task), TASK_GSSD_PORT, (port)))
137 #define task_get_task_access_port(task, port) \
138 (task_get_special_port((task), TASK_ACCESS_PORT, (port)))
140 #define task_set_task_access_port(task, port) \
141 (task_set_special_port((task), TASK_ACCESS_PORT, (port)))
143 #define task_get_automountd_port(task, port) \
144 (task_get_special_port((task), TASK_AUTOMOUNTD_PORT, (port)))
146 #define task_set_automountd_port(task, port) \
147 (task_set_special_port((task), TASK_AUTOMOUNTD_PORT, (port)))