Home
last modified time | relevance | path

Searched refs:INSERT (Results 1 – 9 of 9) sorted by relevance

/base/useriam/user_auth_framework/test/unittest/services/mocks/
Dmock_context_pool_listener.h32 INSERT, enumerator
45 return callback(INSERT, context); in Create()
Dmock_resource_node_pool_listener.h33 INSERT, enumerator
48 return callback(INSERT, resource); in Create()
/base/useriam/user_auth_framework/test/unittest/services/src/
Dresource_node_pool_test.cpp151 EXPECT_CALL(callback1, Call(MockResourceNodePoolListener::INSERT, _)).Times(1);
152 EXPECT_CALL(callback2, Call(MockResourceNodePoolListener::INSERT, _)).Times(2);
153 EXPECT_CALL(callback3, Call(MockResourceNodePoolListener::INSERT, _)).Times(3);
187 EXPECT_CALL(callback, Call(MockResourceNodePoolListener::INSERT, _)).Times(1);
Dcontext_pool_test.cpp176 EXPECT_CALL(callback1, Call(MockContextPoolListener::INSERT, _)).Times(1);
177 EXPECT_CALL(callback2, Call(MockContextPoolListener::INSERT, _)).Times(2);
178 EXPECT_CALL(callback3, Call(MockContextPoolListener::INSERT, _)).Times(3);
/base/customization/enterprise_device_management/common/native/include/plugin_utils/
Diptables_utils.h26 enum class AddMethod { INVALID = -1, APPEND, INSERT }; enumerator
/base/customization/enterprise_device_management/common/native/src/plugin_utils/
Diptables_utils.cpp86 …pe >= static_cast<int32_t>(AddMethod::APPEND) && type <= static_cast<int32_t>(AddMethod::INSERT)) { in ProcessFirewallMethod()
/base/customization/enterprise_device_management/services/edm_plugin/src/
Diptables_rule_plugin.cpp130 } else if (addFilter.method == IPTABLES::AddMethod::INSERT) { in ConvertAddFilterToIptablesCommand()
297 if (method == IPTABLES::AddMethod::INSERT && ruleNo != 0) { in ConvertRuleNoCommand()
/base/customization/enterprise_device_management/test/unittest/edm_plugin/src/
Diptables_rule_plugin_test.cpp153 addFilter.method = IPTABLES::AddMethod::INSERT;
443 plugin->ConvertRuleNoCommand(IPTABLES::AddMethod::INSERT, ruleNo, command1);
/base/customization/enterprise_device_management/interfaces/kits/network_manager/src/
Dnetwork_manager_addon.cpp70 …URN_VOID(env, napi_create_int32(env, static_cast<int32_t>(IPTABLES::AddMethod::INSERT), &nInsert)); in CreateFirewallAddMethodObject()