Home | History | Annotate | Download | only in unittest

Lines Matching refs:p1

194 template <class P1>
195 Closure *NewCallback(void (*f)(P1), P1 p1) {
196 CHECK(sizeof(P1) <= sizeof(void*));
200 res->param1 = (void*)(intptr_t)p1;
205 template <class P1, class P2>
206 Closure *NewCallback(void (*f)(P1, P2), P1 p1, P2 p2) {
207 CHECK(sizeof(P1) <= sizeof(void*));
212 res->param1 = (void*)p1;