Lines Matching refs:to
2 /// This is a little bit restricted to reduce false positives
18 expression from,to,size,flag;
22 - to = \(kmalloc\|kzalloc\)(size,flag);
23 + to = memdup_user(from,size);
25 - to==NULL
26 + IS_ERR(to)
30 + PTR_ERR(to)
33 - if (copy_from_user(to, from, size) != 0) {
40 expression from,to,size,flag;
45 * to = \(kmalloc@p\|kzalloc@p\)(size,flag);
46 if (to==NULL || ...) S1
47 if (copy_from_user(to, from, size) != 0)