HomeSort by: relevance | last modified time | path
    Searched refs:native_params (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/compat/freebsd/
freebsd_sched.c 66 struct sched_param *native_params)
90 if (freebsd_params != NULL && native_params != NULL) {
92 native_params->sched_priority = freebsd_params->sched_priority;
98 sched_native2freebsd(int native_policy, const struct sched_param *native_params,
123 if (native_params != NULL && freebsd_params != NULL) {
126 freebsd_params->sched_priority = native_params->sched_priority;
  /src/sys/compat/linux/common/
linux_sched.c 342 int *native_policy, struct sched_param *native_params)
371 KASSERT(native_params != NULL);
377 native_params->sched_priority = PRI_NONE; /* XXX */
383 native_params->sched_priority =
395 sched_native2linux(int native_policy, struct sched_param *native_params,
422 if (native_params != NULL) {
423 int prio = native_params->sched_priority;
  /src/sbin/disklabel/
main.c 296 static struct disklabel_params native_params; variable in typeref:struct:disklabel_params
490 labeloffset = native_params.labeloffset = getlabeloffset();
491 labelsector = native_params.labelsector = getlabelsector();
492 labelusesmbr = native_params.labelusesmbr = getlabelusesmbr();
493 maxpartitions = native_params.maxpartitions = getmaxpartitions();
494 byteorder = native_params.byteorder = BYTE_ORDER;
649 native_p = native_params.labelusesmbr == labelusesmbr
650 && native_params.labelsector == labelsector
651 && native_params.labeloffset == labeloffset
652 && maxpartitions <= native_params.maxpartition
    [all...]

Completed in 13 milliseconds