Lines Matching defs:runtime
216 unsigned long long runtime)
223 retval = osnoise_write_ll_config("osnoise/runtime_us", runtime);
227 context->runtime_us = runtime;
248 * osnoise_set_runtime_period - set osnoise runtime and period
250 * Osnoise's runtime and period are related as runtime <= period.
252 * to set the runtime and period if they are != 0.
255 unsigned long long runtime,
262 if (!period && !runtime)
273 if (runtime > curr_period_us)
275 return __osnoise_write_runtime(context, runtime);
276 } else if (!runtime) {
282 if (runtime > curr_period_us) {
286 retval = __osnoise_write_runtime(context, runtime);
290 retval = __osnoise_write_runtime(context, runtime);
302 * osnoise_restore_runtime_period - restore the original runtime and period
320 err_msg("Could not restore original osnoise runtime/period\n");