Searched refs:enable (Results 1 - 25 of 41) sorted by relevance

12

/xnu-2422.115.4/osfmk/chud/
H A Dchud_cpu.c10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
73 #pragma mark **** interrupts enable/disable ****
77 chudxnu_set_interrupts_enabled(boolean_t enable) argument
79 return ml_set_interrupts_enabled(enable);
89 #pragma mark **** preemption enable/disable ****
H A Dchud_xnu.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
138 extern kern_return_t chudxnu_enable_cpu(int cpu, boolean_t enable);
140 extern boolean_t chudxnu_set_interrupts_enabled(boolean_t enable);
267 extern kern_return_t chudxnu_enable_cpu_nap(int cpu, boolean_t enable);
/xnu-2422.115.4/iokit/IOKit/
H A DIONotifier.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
42 @discussion IOService notification requests are represented as implementations of the IONotifier object. It defines methods to enable, disable and remove notification requests. These actions are synchronized with invocations of the notification handler, so removing a notification request will guarantee the handler is not being executed. */
59 @result Returns the previous enable state of the IONotifier. */
63 /*! @function enable
64 @abstract Sets the enable state of the notification request.
65 @discussion Restores the enable state of the notification request, given the previous state passed in.
66 @param was The enable state of the notifier to restore. */
68 virtual void enable( bool was ) = 0;
H A DIOCommandGate.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
126 work-loop event sources. If the command is disabled the attempt to run a command will be stalled until enable is called.
143 work-loop event sources. If the command is disabled the attempt to run a command will be stalled until enable is called.
203 @discussion When a command gate is disabled all future calls to runAction and runCommand will stall until the gate is enable()d later. This can be used to block client threads when a system sleep is requested. The IOWorkLoop thread itself will never stall, even when making runAction/runCommand calls. This call must be made from a gated context, to clear potential race conditions. */
206 /*! @function enable
209 virtual void enable();
H A DIOInterruptEventSource.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
57 Warning: All IOInterruptEventSources are created in the disabled state. If you want to actually schedule interrupt delivery do not forget to enable the source.
147 /*! @function enable
152 virtual void enable();
H A DIOEventSource.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
221 /*! @function enable
226 virtual void enable();
235 @abstract Get'ter for $link enable variable.
H A DIOTimerEventSource.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
67 /*! @var abstime time to wake up next, see enable. */
121 /*! @function enable
123 @discussion Allows the action function to be called. If the timer event source was disabled while a call was outstanding and the call wasn't cancelled then it will be rescheduled. So a disable/enable pair will disable calls from this event source. */
124 virtual void enable();
128 @discussion When disable returns the action will not be called until the next time enable(qv) is called. */
H A DIOCPU.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
92 virtual void enableCPUTimeBase(bool enable);
/xnu-2422.115.4/osfmk/kern/
H A Dast.c10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
106 boolean_t enable
155 ml_set_interrupts_enabled(enable);
226 ml_set_interrupts_enabled(enable);
H A Dast.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
134 boolean_t enable);
/xnu-2422.115.4/osfmk/chud/i386/
H A Dchud_cpu_i386.c10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
45 #pragma mark **** cpu enable/disable ****
52 kern_return_t chudxnu_enable_cpu(int cpu, boolean_t enable) argument
65 if(enable) {
/xnu-2422.115.4/bsd/sys/
H A Dmake_posix_availability.sh48 * may not be used to create, or enable the creation or redistribution of,
50 * circumvent, violate, or enable the circumvention or violation of, any
H A Dmake_symbol_aliasing.sh52 * may not be used to create, or enable the creation or redistribution of,
54 * circumvent, violate, or enable the circumvention or violation of, any
/xnu-2422.115.4/bsd/netinet6/
H A Dnd6_prproxy.c10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
78 * NA packets; RA packets are never proxied. Care should be taken to enable
142 static void nd6_prproxy_prelist_setroute(boolean_t enable,
281 nd6_prproxy_prelist_setroute(boolean_t enable, argument
308 if (enable && pr->ndpr_allmulti_cnt == 0) {
312 } else if (!enable && pr->ndpr_allmulti_cnt > 0) {
319 if ((enable && prproxy) || (!enable && !prproxy))
329 rt_set_proxy(rt, enable);
384 nd6_if_prproxy(struct ifnet *ifp, boolean_t enable) argument
721 boolean_t enable; local
[all...]
/xnu-2422.115.4/osfmk/console/
H A Dvideo_console.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
96 void vc_progress_set(boolean_t enable, uint32_t vc_delay);
H A Dvideo_console.c10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
133 void (*enable)(boolean_t enable); member in struct:__anon872
270 static void gc_enable(boolean_t enable);
366 gc_enable( boolean_t enable )
377 if ( enable == FALSE )
383 gc_ops.enable(FALSE);
421 if ( enable )
479 gc_ops.enable(TRU
1699 vc_enable(boolean_t enable) argument
2357 vc_progress_set(boolean_t enable, uint32_t vc_delay) argument
[all...]
/xnu-2422.115.4/osfmk/vm/
H A Dvm_compressor.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
211 #define PAGE_REPLACEMENT_DISALLOWED(enable) (enable == TRUE ? lck_rw_lock_shared(&c_master_lock) : lck_rw_done(&c_master_lock))
212 #define PAGE_REPLACEMENT_ALLOWED(enable) (enable == TRUE ? lck_rw_lock_exclusive(&c_master_lock) : lck_rw_done(&c_master_lock))
/xnu-2422.115.4/iokit/Kernel/
H A DIOServicePrivate.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
100 virtual void enable( bool was );
122 virtual void enable( bool was );
H A DIOCommandGate.cpp10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
102 /* virtual */ void IOCommandGate::enable() function in class:IOCommandGate
106 super::enable();
H A DIOInterruptEventSource.cpp10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
150 void IOInterruptEventSource::enable() function in class:IOInterruptEventSource
225 enable();
243 enable();
H A DIOEventSource.cpp10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
186 void IOEventSource::enable() function in class:IOEventSource
H A DIOWorkLoop.cpp10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
303 event->enable();
306 event->enable();
328 event->enable();
/xnu-2422.115.4/osfmk/i386/
H A DDiagnostics.c10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
287 boolean_t enable = TRUE; local
294 mp_cpus_call(CPUMASK_ALL, ASYNC, cpu_pmc_control, &enable);
366 boolean_t enable = *(boolean_t *)enablep; local
369 if (enable) {
379 cdp->cpu_fixed_pmcs_enabled = enable;
H A Dmachine_routines.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
175 typedef void (*time_base_enable_t)(cpu_id_t cpu_id, boolean_t enable);
319 boolean_t ml_set_interrupts_enabled(boolean_t enable);
/xnu-2422.115.4/bsd/kern/
H A Dkern_resource.c10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
511 int enable; local
535 enable = TASK_POLICY_ENABLE;
539 enable = TASK_POLICY_ENABLE;
549 enable = TASK_POLICY_DISABLE;
553 proc_set_task_policy(proc_task(targetp), THREAD_NULL, external, flavor, enable); local
636 int enable, external; local
645 enable = (priority == PRIO_DARWIN_BG) ? TASK_POLICY_ENABLE : TASK_POLICY_DISABLE;
649 TASK_POLICY_DARWIN_BG, enable);
[all...]

Completed in 76 milliseconds

12