Lines Matching refs:be

10  * may not be used to create, or enable the creation or redistribution of,
43 * OSAction is an object that represents a callback to be be invoked.
47 * State associated with the callback may be allocated and stored for the creator of the object.
56 …* through the 'action' parameter with a +1 retain count to be released by the caller. See IOReturn…
68 …* a TYPE attribute, so there should not be any need to directly call OSAction::Create…
69 …* @param target OSObject to receive the callback. This object will be retained until the OSA…
76 * @param action Created OSAction with +1 retain count to be released by the caller.
102 …* @discussion Reference data is allocated with zero initialized content. It may be set and retrie…
104 …* @return A pointer to storage for the owner. It will be NULL if referenceSize was zero, and …
112 * @discussion After cancellation, the action can only be freed. It cannot be reactivated.
113 * @param handler Handler block to be invoked after any callbacks have completed.
120 * @brief Install a handler to be invoked when no other processes reference the action.
123 * @param handler Handler block to be invoked on no more references.
130 * @brief Mark this OSAction to be waited for later with Wait().
131 * @discussion This call should be made before any possible invocation of the action.
133 * @param token Opaque value to be passed to a later call to Wait() and EndWait().
142 * There should be no outstanding invocations of the action when EndWait is called,
143 * if necessary the action should be canceled before calling EndWait().
144 * @param token Opaque value to be passed from an earlier call to WillWait().
153 * @brief Wait for the action to be invoked.
156 * @param token Opaque value to be passed from an earlier call to WillWait().