Home | History | Annotate | Download | only in ipc

Lines Matching defs:int1

180   int int1 = 0;
186 Send(new Msg_C_0_2(&bool1, &int1));
188 DCHECK_EQ(2, int1);
190 Send(new Msg_C_0_3(&bool1, &int1, &string1));
192 DCHECK_EQ(3, int1);
200 Send(new Msg_C_1_2(false, &bool1, &int1));
202 DCHECK_EQ(12, int1);
205 Send(new Msg_C_1_3(3, &string1, &int1, &bool1));
207 DCHECK_EQ(13, int1);
215 Send(new Msg_C_2_2(false, 2, &bool1, &int1));
217 DCHECK_EQ(22, int1);
220 Send(new Msg_C_2_3(3, true, &string1, &int1, &bool1));
222 DCHECK_EQ(23, int1);
230 Send(new Msg_C_3_2("3_2", false, 2, &bool1, &int1));
232 DCHECK_EQ(32, int1);
235 Send(new Msg_C_3_3(3, "3_3", true, &string1, &int1, &bool1));
237 DCHECK_EQ(33, int1);
242 Send(new Msg_C_3_4(true, 3, "3_4", &int1, &bool1, &string1, &bool2));
243 DCHECK_EQ(34, int1);
252 Send(new Msg_R_0_2(0, &bool1, &int1));
254 DCHECK_EQ(2, int1);
256 Send(new Msg_R_0_3(0, &bool1, &int1, &string1));
258 DCHECK_EQ(3, int1);
266 Send(new Msg_R_1_2(0, false, &bool1, &int1));
268 DCHECK_EQ(12, int1);
271 Send(new Msg_R_1_3(0, 3, &string1, &int1, &bool1));
273 DCHECK_EQ(13, int1);
281 Send(new Msg_R_2_2(0, false, 2, &bool1, &int1));
283 DCHECK_EQ(22, int1);
286 Send(new Msg_R_2_3(0, 3, true, &string1, &int1, &bool1));
289 DCHECK_EQ(23, int1);
296 Send(new Msg_R_3_2(0, "3_2", false, 2, &bool1, &int1));
298 DCHECK_EQ(32, int1);
301 Send(new Msg_R_3_3(0, 3, "3_3", true, &string1, &int1, &bool1));
303 DCHECK_EQ(33, int1);