Searched refs:this_len (Results 1 - 2 of 2) sorted by path

/kernel/
H A Dptrace.c526 int this_len, retval; local
528 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
529 retval = access_process_vm(tsk, src, buf, this_len, 0);
551 int this_len, retval; local
553 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
554 if (copy_from_user(buf, src, this_len))
556 retval = access_process_vm(tsk, dst, buf, this_len, 1);
H A Drelay.c1257 unsigned int this_len, this_end, private; local
1263 this_len = min_t(unsigned long, len, PAGE_SIZE - poff);
1264 private = this_len;
1269 this_end = cur_pos + this_len;
1271 this_len = nonpad_end - cur_pos;
1272 private = this_len + padding;
1274 spd.partial[spd.nr_pages].len = this_len;
1277 len -= this_len;
1278 total_len += this_len;

Completed in 35 milliseconds