Home
last modified time | relevance | path

Searched refs:m_action (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/communication/dhcp/services/dhcp_client/src/
H A Ddhcp_client_state_machine.cpp159 m_action = action; in StartIpv4Type()
168 if ((m_action == ACTION_START_NEW) || (m_action == ACTION_START_OLD)) { in StartIpv4Type()
171 DHCP_LOGI("StartIpv4Type not supported m_action:%{public}d", m_action); in StartIpv4Type()
288 …if ((m_action != ACTION_RENEW_T1) && (m_action != ACTION_RENEW_T2) && (m_action != ACTION_RENEW_T3… in StartIpv4()
355 return m_action; in GetAction()
1872 if (m_action == ACTION_RENEW_T1 || m_action == ACTION_RENEW_T2) { in GetIpTimerCallback()
1874 } else if (m_action == ACTION_RENEW_T3) { in GetIpTimerCallback()
1947 m_action = ACTION_RENEW_T1; // T1 begin renew in RenewDelayCallback()
1963 m_action = ACTION_RENEW_T2; // T2 begin rebind in RebindDelayCallback()
1978 m_action = ACTION_RENEW_T3; // T3 expired, in RemainingDelayCallback()
[all …]
/ohos5.0/foundation/communication/dhcp/test/unittest/services/dhcp_client/
H A Ddhcp_client_state_machine_test.cpp767 dhcpClient->m_action = ACTION_RENEW_T1;
770 dhcpClient->m_action = ACTION_RENEW_T3;
773 dhcpClient->m_action = ACTION_START_NEW;
776 dhcpClient->m_action = ACTION_INVALID;
/ohos5.0/foundation/communication/dhcp/test/fuzztest/dhcpclientfun_fuzzer/
H A Ddhcpclientfun_fuzzer.cpp414 dhcpClient->m_action = ActionMode::ACTION_START_NEW; in GetActionFuzzerTest()
887 dhcpClient->m_action = ACTION_RENEW_T1; in GetIpTimerCallbackFuzzerTest()
890 dhcpClient->m_action = ACTION_RENEW_T3; in GetIpTimerCallbackFuzzerTest()
893 dhcpClient->m_action = ACTION_START_NEW; in GetIpTimerCallbackFuzzerTest()
/ohos5.0/foundation/communication/dhcp/services/dhcp_client/include/
H A Ddhcp_client_state_machine.h143 ActionMode m_action; variable