Lines Matching refs:to
17 expression from,to;
22 - to = kmalloc(strlen(from) + 1,flag);
23 + to = kstrdup(from, flag);
24 ... when != \(from = E1 \| to = E1 \)
25 if (to==NULL || ...) S
26 ... when != \(from = E2 \| to = E2 \)
27 - strcpy(to, from);
30 expression x,from,to;
37 - to = \(kmalloc\|kzalloc\)(x,flag);
38 + to = kstrdup(from, flag);
39 ... when != \(x = E2 \| from = E2 \| to = E2 \)
40 if (to==NULL || ...) S
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 \)
55 if (to==NULL || ...) S
56 ... when != \(from = E2 \| to = E2 \)
57 * strcpy@p2(to, from);
60 expression x,from,to;
68 * to = \(kmalloc@p1\|kzalloc@p2\)(x,flag);
69 ... when != \(x = E2 \| from = E2 \| to = E2 \)
70 if (to==NULL || ...) S
71 ... when != \(x = E3 \| from = E3 \| to = E3 \)
72 * memcpy@p2(to, from, x);