Lines Matching refs:idle
199 * @param taskHandle idle handler
200 * @param context idle function context
206 * @brief Add a new idle handler
208 * @param loopHandle the running loop this idle will be attached
209 * @param idle optional output parameter for the created idle handler
210 * @param processIdle the idle handler function
211 * @param context optional idle handler context
212 * @param repeat if the idle function will be repeated forevent (non zero) or once (zero)
215 LE_STATUS LE_AddIdle(const LoopHandle loopHandle, IdleHandle *idle,
219 * @brief Delete an idle handler
221 * @param idle idle handler
224 void LE_DelIdle(IdleHandle idle);
229 * @param loopHandle the running loop this idle will be attached
230 * @param idle the function to be executed
231 * @param context optional idle handler context
234 int LE_DelayProc(const LoopHandle loopHandle, LE_ProcessIdle idle, void *context);