Home
last modified time | relevance | path

Searched refs:Remove (Results 1 - 25 of 109) sorted by relevance

12345

/base/notification/eventhandler/test/fuzztest/eventqueueannex_fuzzer/
H A Deventqueueannex_fuzzer.cpp60 eventQueue.Remove(myHandler); in DoSomethingInterestingWithMyAPI()
61 eventQueue.Remove(myHandler, innerEventId); in DoSomethingInterestingWithMyAPI()
62 eventQueue.Remove(myHandler, innerEventId, param); in DoSomethingInterestingWithMyAPI()
63 eventQueue.Remove(myHandler, stringData); in DoSomethingInterestingWithMyAPI()
/base/location/test/location_locator/source/
H A Dwork_record_test.cpp62 EXPECT_EQ(false, emptyWorkrecord->Remove("emptyRecord")); in HWTEST_F()
63 EXPECT_EQ(false, emptyWorkrecord->Remove(SYSTEM_UID, 0, "emptyRecord", "10000")); in HWTEST_F()
77 EXPECT_EQ(false, workrecord->Remove("WrongName")); in HWTEST_F()
79 EXPECT_EQ(true, workrecord->Remove("name")); in HWTEST_F()
94 EXPECT_EQ(false, workrecord->Remove(SYSTEM_UID, 0, "WrongName", "0")); in HWTEST_F()
96 EXPECT_EQ(false, workrecord->Remove(999, 0, "name", "0")); in HWTEST_F()
98 EXPECT_EQ(false, workrecord->Remove(999, 0, "WrongName", "0")); in HWTEST_F()
100 EXPECT_EQ(false, workrecord->Remove(999, 1, "name", "0")); in HWTEST_F()
102 EXPECT_EQ(false, workrecord->Remove(999, 1, "WrongName", "0")); in HWTEST_F()
104 EXPECT_EQ(false, workrecord->Remove(SYSTEM_UI in HWTEST_F()
[all...]
/base/inputmethod/imf/services/adapter/wms_connection_monitor/src/
H A Dwms_connection_observer.cpp35 Remove(userId); in OnDisconnected()
47 void WmsConnectionObserver::Remove(int32_t userId) in Remove() function in OHOS::MiscServices::WmsConnectionObserver
/base/hiviewdfx/hiview/base/event_store/store/
H A Dsys_event_doc_lru_cache.cpp53 return Remove(lruList_.back()); in Add()
58 bool SysEventDocLruCache::Remove(const LruCacheKey& key) in Remove() function in OHOS::HiviewDFX::EventStore::SysEventDocLruCache
/base/time/time_service/services/timer/include/
H A Dbatch.h40 bool Remove(const TimerInfo &alarm);
41 bool Remove(std::function<bool(const TimerInfo &)> predicate);
/base/notification/eventhandler/frameworks/eventhandler/include/
H A Devent_queue_ffrt.h50 * Remove events if its owner is invalid.
55 * Remove all events.
60 * Remove events with specified requirements.
64 LOCAL_API void Remove(const std::shared_ptr<EventHandler> &owner) override;
67 * Remove events with specified requirements.
70 * @param innerEventId Remove events by event id.
72 LOCAL_API void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId) override;
75 * Remove events with specified requirements.
78 * @param innerEventId Remove events by event id.
79 * @param param Remove event
[all...]
H A Devent_queue_base.h71 * Remove events if its owner is invalid.
76 * Remove all events.
81 * Remove events with specified requirements.
85 void Remove(const std::shared_ptr<EventHandler> &owner) override;
88 * Remove events with specified requirements.
91 * @param innerEventId Remove events by event id.
93 void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId) override;
96 * Remove events with specified requirements.
99 * @param innerEventId Remove events by event id.
100 * @param param Remove event
[all...]
/base/time/time_service/services/timer/src/
H A Dbatch.cpp77 bool Batch::Remove(const TimerInfo &alarm) in Remove() function in OHOS::MiscServices::Batch
79 return Remove([alarm] (const TimerInfo &a) { return a == alarm; }); in Remove()
82 bool Batch::Remove(std::function<bool (const TimerInfo &)> predicate) in Remove() function in OHOS::Batch
/base/location/services/location_locator/locator/include/
H A Dwork_record.h34 bool Remove(int uid, int pid, std::string name, std::string uuid);
38 bool Remove(std::string name);
/base/notification/eventhandler/interfaces/inner_api/
H A Devent_queue.h141 * Remove events if its owner is invalid, for base queue.
146 * Remove events if its owner is invalid, for ffrt queue.
151 * Remove all events.
156 * Remove events with specified requirements.
160 virtual void Remove(const std::shared_ptr<EventHandler> &owner) = 0;
163 * Remove events with specified requirements.
166 * @param innerEventId Remove events by event id.
168 virtual void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId) = 0;
171 * Remove events with specified requirements.
174 * @param innerEventId Remove event
[all...]
/base/request/request/frameworks/js/napi/src/upload/
H A Dupload_task.cpp43 Remove(); in ~UploadTask()
47 bool UploadTask::Remove() in Remove() function in OHOS::Request::Upload::UploadTask
49 UPLOAD_HILOGD(UPLOAD_MODULE_FRAMEWORK, "Remove. In."); in Remove()
53 curlAdp_->Remove(); in Remove()
/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/network/executer/
H A Diexecuter_test.cpp128 * @tc.desc: Test Remove func.
136 EXPECT_TRUE(executer->Remove(nullptr) == ERR_OK); in HWTEST_F()
139 EXPECT_TRUE(executer->Remove(nullptr) != ERR_OK); in HWTEST_F()
144 EXPECT_TRUE(executer->Remove(rule) == ERR_OK); in HWTEST_F()
147 EXPECT_FALSE(executer->Remove(rule) == ERR_OK); in HWTEST_F()
155 EXPECT_TRUE(executer->Remove(rule) == ERR_OK); in HWTEST_F()
/base/inputmethod/imf/services/adapter/wms_connection_monitor/include/
H A Dwms_connection_observer.h42 static void Remove(int32_t userId);
/base/security/access_token/services/privacymanager/test/unittest/
H A Dpermission_record_db_test.cpp365 inGenericValues.Remove(PrivacyFiledConst::FIELD_OP_CODE); in HWTEST_F()
445 ASSERT_EQ(0, PermissionUsedRecordDb::GetInstance().Remove(type, value1)); in HWTEST_F()
446 ASSERT_EQ(0, PermissionUsedRecordDb::GetInstance().Remove(type, value2)); in HWTEST_F()
499 ASSERT_EQ(0, PermissionUsedRecordDb::GetInstance().Remove(type, value1)); in HWTEST_F()
500 ASSERT_EQ(0, PermissionUsedRecordDb::GetInstance().Remove(type, value2)); in HWTEST_F()
551 ASSERT_EQ(0, PermissionUsedRecordDb::GetInstance().Remove(type, value)); in HWTEST_F()
610 ASSERT_EQ(0, PermissionUsedRecordDb::GetInstance().Remove(type, value1)); in HWTEST_F()
611 ASSERT_EQ(0, PermissionUsedRecordDb::GetInstance().Remove(type, value2)); in HWTEST_F()
612 ASSERT_EQ(0, PermissionUsedRecordDb::GetInstance().Remove(type, value3)); in HWTEST_F()
703 ASSERT_EQ(PermissionUsedRecordDb::ExecuteResult::SUCCESS, PermissionUsedRecordDb::GetInstance().Remove( in HWTEST_F()
[all...]
/base/accesscontrol/sandbox_manager/services/common/database/include/
H A Dgeneric_values.h50 void Remove(const std::string &key);
/base/customization/enterprise_device_management/services/edm_plugin/include/network/executer/
H A Diexecuter.h38 virtual ErrCode Remove(const std::shared_ptr<ChainRule> &rule);
/base/msdp/device_status/intention/common/epoll/include/
H A Depoll_manager.h41 void Remove(std::shared_ptr<IEpollEventSource> source);
/base/security/access_token/services/common/database/include/
H A Dgeneric_values.h51 void Remove(const std::string& key);
/base/hiviewdfx/hiview/interfaces/js/napi/src/
H A Dnapi_hiview_js.cpp135 static napi_value Remove(napi_env env, napi_callback_info info) in Remove() function
158 int32_t retCode = HiviewServiceAgent::GetInstance().Remove(logType, logName); in Remove()
173 DECLARE_NAPI_FUNCTION("remove", Remove) in Init()
/base/customization/enterprise_device_management/services/edm_plugin/src/network/
H A Diptables_manager.cpp130 executer->Remove(nullptr); in RemoveFirewallRule()
138 executer->Remove(chainRule); in RemoveFirewallRule()
257 executer->Remove(nullptr); in RemoveDomainFilterRules()
269 auto ret = executer->Remove(chainRule); in RemoveDomainFilterRules()
381 executer->Remove(nullptr); in ClearDefaultFirewallDenyChain()
409 executer->Remove(nullptr); in ClearDefaultDomainDenyChain()
/base/accesscontrol/sandbox_manager/services/sandbox_manager/test/unittest/
H A Dsandbox_manager_rdb_test.cpp107 SandboxManagerRdb::GetInstance().Remove(SANDBOX_MANAGER_PERSISTED_POLICY, conditions); in SetUp()
113 SandboxManagerRdb::GetInstance().Remove(SANDBOX_MANAGER_PERSISTED_POLICY, conditions); in TearDown()
197 EXPECT_EQ(0, SandboxManagerRdb::GetInstance().Remove(SANDBOX_MANAGER_PERSISTED_POLICY, in HWTEST_F()
227 EXPECT_EQ(0, SandboxManagerRdb::GetInstance().Remove(SANDBOX_MANAGER_PERSISTED_POLICY, in HWTEST_F()
/base/accesscontrol/sandbox_manager/services/sandbox_manager/main/cpp/include/database/
H A Dsandbox_manager_rdb.h46 int32_t Remove(const DataType type, const GenericValues &conditions);
/base/hiviewdfx/hiview/base/event_store/store/include/
H A Dsys_event_doc_lru_cache.h41 bool Remove(const LruCacheKey& key);
/base/update/updateservice/services/core/ability/preference/src/
H A Dpreference_utils_empty.cpp94 bool PreferencesUtil::Remove(const std::string &key) in Remove() function in OHOS::UpdateEngine::PreferencesUtil
/base/hiviewdfx/hiview/adapter/service/test/unittest/common/
H A Dadapter_loglibrary_ability_test.cpp144 * @tc.desc: Check Func Remove
152 int32_t result = ability.Remove(LOG_TYPE, fileName); in HWTEST_F()
158 * @tc.desc: Check Func Remove
165 int32_t result = ability.Remove(NON_LOG_TYPE, fileName); in HWTEST_F()
171 * @tc.desc: Check Func Remove

Completed in 10 milliseconds

12345