Home | History | Annotate | Download | only in tests-mx32

Lines Matching refs:len

50 	kernel_ulong_t len;
53 len = __NEW_UTS_LEN;
54 rc = syscall(__NR_sethostname, 0, len);
56 (unsigned) len, sprintrc(rc));
59 len |= F8ILL_KULONG_MASK;
60 rc = syscall(__NR_sethostname, 0, len);
62 (unsigned) len, sprintrc(rc));
65 len = __NEW_UTS_LEN + 1;
66 void *const p = tail_alloc(len);
67 rc = syscall(__NR_sethostname, p, len);
69 p, (unsigned) len, sprintrc(rc));