Lines Matching refs:delay_id
123 void AddProxyExpectationForRegisterSuspendDelay(int delay_id, in AddProxyExpectationForRegisterSuspendDelay() argument
127 .WillOnce(DoAll(SetArgumentPointee<2>(delay_id), Return(return_value))); in AddProxyExpectationForRegisterSuspendDelay()
130 void AddProxyExpectationForUnregisterSuspendDelay(int delay_id, in AddProxyExpectationForUnregisterSuspendDelay() argument
132 EXPECT_CALL(*power_manager_proxy_, UnregisterSuspendDelay(delay_id)) in AddProxyExpectationForUnregisterSuspendDelay()
136 void AddProxyExpectationForReportSuspendReadiness(int delay_id, in AddProxyExpectationForReportSuspendReadiness() argument
140 ReportSuspendReadiness(delay_id, suspend_id)) in AddProxyExpectationForReportSuspendReadiness()
150 void AddProxyExpectationForRegisterDarkSuspendDelay(int delay_id, in AddProxyExpectationForRegisterDarkSuspendDelay() argument
154 .WillOnce(DoAll(SetArgumentPointee<2>(delay_id), Return(return_value))); in AddProxyExpectationForRegisterDarkSuspendDelay()
157 void AddProxyExpectationForReportDarkSuspendReadiness(int delay_id, in AddProxyExpectationForReportDarkSuspendReadiness() argument
161 ReportDarkSuspendReadiness(delay_id, suspend_id)) in AddProxyExpectationForReportDarkSuspendReadiness()
165 void AddProxyExpectationForUnregisterDarkSuspendDelay(int delay_id, in AddProxyExpectationForUnregisterDarkSuspendDelay() argument
167 EXPECT_CALL(*power_manager_proxy_, UnregisterDarkSuspendDelay(delay_id)) in AddProxyExpectationForUnregisterDarkSuspendDelay()