Home | History | Annotate | Download | only in heap

Lines Matching defs:action

133   GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
134 EXPECT_EQ(DO_NOTHING, action.type);
145 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
146 EXPECT_EQ(DO_FULL_GC, action.type);
156 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
157 EXPECT_EQ(DO_FULL_GC, action.type);
168 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
169 EXPECT_EQ(DO_INCREMENTAL_STEP, action.type);
180 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
181 EXPECT_EQ(DO_INCREMENTAL_STEP, action.type);
188 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
189 EXPECT_EQ(DO_INCREMENTAL_STEP, action.type);
198 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
199 EXPECT_EQ(DONE, action.type);
207 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
208 EXPECT_EQ(DONE, action.type);
216 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
217 EXPECT_EQ(DONE, action.type);
219 action = handler()->Compute(idle_time_ms, heap_state);
220 EXPECT_EQ(DO_INCREMENTAL_STEP, action.type);
227 GCIdleTimeAction action = handler()->Compute(0, heap_state);
228 EXPECT_EQ(DO_NOTHING, action.type);
237 GCIdleTimeAction action = handler()->Compute(10, heap_state);
238 EXPECT_TRUE(DO_NOTHING == action.type || DONE == action.type);
251 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state);
252 EXPECT_EQ(DONE, action.type);