Lines Matching refs:from
17 expression from,to;
22 - to = kmalloc(strlen(from) + 1,flag);
23 + to = kstrdup(from, flag);
24 ... when != \(from = E1 \| to = E1 \)
26 ... when != \(from = E2 \| to = E2 \)
27 - strcpy(to, from);
30 expression x,from,to;
35 - x = strlen(from) + 1;
36 ... when != \( x = E1 \| from = E1 \)
38 + to = kstrdup(from, flag);
39 ... when != \(x = E2 \| from = E2 \| to = E2 \)
41 ... when != \(x = E3 \| from = E3 \| to = E3 \)
42 - memcpy(to, from, x);
47 expression from,to;
53 * to = kmalloc@p1(strlen(from) + 1,flag);
54 ... when != \(from = E1 \| to = E1 \)
56 ... when != \(from = E2 \| to = E2 \)
57 * strcpy@p2(to, from);
60 expression x,from,to;
66 * x = strlen(from) + 1;
67 ... when != \( x = E1 \| from = E1 \)
69 ... when != \(x = E2 \| from = E2 \| to = E2 \)
71 ... when != \(x = E3 \| from = E3 \| to = E3 \)
72 * memcpy@p2(to, from, x);