Lines Matching defs:orl
1484 struct rlimit orl;
1486 struct orlimit orl;
1494 memset(&orl, 0, sizeof(orl));
1495 bsd_to_linux_rlimit(&orl, &l->l_proc->p_rlimit[which]);
1497 return copyout(&orl, SCARG(uap, rlp), sizeof(orl));
1513 struct rlimit orl;
1515 struct orlimit orl;
1520 if ((error = copyin(SCARG(uap, rlp), &orl, sizeof(orl))) != 0)
1527 linux_to_bsd_rlimit(&rl, &orl);
1549 struct rlimit rl, nrl, orl;
1564 memset(&orl, 0, sizeof(orl));
1565 bsd_to_linux_rlimit64(&orl, &l->l_proc->p_rlimit[which]);
1566 if ((error = copyout(&orl, p, sizeof(orl))) != 0)