Home | History | Annotate | Download | only in mlock

Lines Matching defs:from

7  * From:
52 long from, to;
69 sscanf(b, "%lx-%lx", &from, &to);
73 first = (to - from) / KB;
77 if (mlock((const void *)from, to - from) == -1)
82 if (munlock((void *)from, to - from) == -1)
89 tst_resm(TINFO, "%s from %lx to %0lx",
90 (lc & 1) ? "munlock" : "mlock", from, to);
94 last = (to - from) / KB;