/base/notification/eventhandler/test/fuzztest/eventqueueannex_fuzzer/ |
H A D | eventqueueannex_fuzzer.cpp | 60 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 D | work_record_test.cpp | 62 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 D | wms_connection_observer.cpp | 35 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 D | sys_event_doc_lru_cache.cpp | 53 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 D | batch.h | 40 bool Remove(const TimerInfo &alarm); 41 bool Remove(std::function<bool(const TimerInfo &)> predicate);
|
/base/notification/eventhandler/frameworks/eventhandler/include/ |
H A D | event_queue_ffrt.h | 50 * 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 D | event_queue_base.h | 71 * 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 D | batch.cpp | 77 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 D | work_record.h | 34 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 D | event_queue.h | 141 * 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 D | upload_task.cpp | 43 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 D | iexecuter_test.cpp | 128 * @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 D | wms_connection_observer.h | 42 static void Remove(int32_t userId);
|
/base/security/access_token/services/privacymanager/test/unittest/ |
H A D | permission_record_db_test.cpp | 365 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 D | generic_values.h | 50 void Remove(const std::string &key);
|
/base/customization/enterprise_device_management/services/edm_plugin/include/network/executer/ |
H A D | iexecuter.h | 38 virtual ErrCode Remove(const std::shared_ptr<ChainRule> &rule);
|
/base/msdp/device_status/intention/common/epoll/include/ |
H A D | epoll_manager.h | 41 void Remove(std::shared_ptr<IEpollEventSource> source);
|
/base/security/access_token/services/common/database/include/ |
H A D | generic_values.h | 51 void Remove(const std::string& key);
|
/base/hiviewdfx/hiview/interfaces/js/napi/src/ |
H A D | napi_hiview_js.cpp | 135 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 D | iptables_manager.cpp | 130 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 D | sandbox_manager_rdb_test.cpp | 107 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 D | sandbox_manager_rdb.h | 46 int32_t Remove(const DataType type, const GenericValues &conditions);
|
/base/hiviewdfx/hiview/base/event_store/store/include/ |
H A D | sys_event_doc_lru_cache.h | 41 bool Remove(const LruCacheKey& key);
|
/base/update/updateservice/services/core/ability/preference/src/ |
H A D | preference_utils_empty.cpp | 94 bool PreferencesUtil::Remove(const std::string &key) in Remove() function in OHOS::UpdateEngine::PreferencesUtil
|
/base/hiviewdfx/hiview/adapter/service/test/unittest/common/ |
H A D | adapter_loglibrary_ability_test.cpp | 144 * @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
|