Lines Matching full:from
18 expression from,to;
23 - to = kmalloc(strlen(from) + 1,flag);
24 + to = kstrdup(from, flag);
25 ... when != \(from = E1 \| to = E1 \)
27 ... when != \(from = E2 \| to = E2 \)
28 - strcpy(to, from);
31 expression x,from,to;
36 - x = strlen(from) + 1;
37 ... when != \( x = E1 \| from = E1 \)
39 + to = kstrdup(from, flag);
40 ... when != \(x = E2 \| from = E2 \| to = E2 \)
42 ... when != \(x = E3 \| from = E3 \| to = E3 \)
43 - memcpy(to, from, x);
48 expression from,to;
54 * to = kmalloc@p1(strlen(from) + 1,flag);
55 ... when != \(from = E1 \| to = E1 \)
57 ... when != \(from = E2 \| to = E2 \)
58 * strcpy@p2(to, from);
61 expression x,from,to;
67 * x = strlen(from) + 1;
68 ... when != \( x = E1 \| from = E1 \)
70 ... when != \(x = E2 \| from = E2 \| to = E2 \)
72 ... when != \(x = E3 \| from = E3 \| to = E3 \)
73 * memcpy@p2(to, from, x);