/base/location/test/location_locator/source/ |
D | work_record_test.cpp | 60 EXPECT_EQ(false, emptyWorkrecord->Remove("emptyRecord")); 61 EXPECT_EQ(false, emptyWorkrecord->Remove(SYSTEM_UID, 0, "emptyRecord", "10000")); 74 EXPECT_EQ(false, workrecord->Remove("WrongName")); 76 EXPECT_EQ(true, workrecord->Remove("name")); 81 EXPECT_EQ(false, workrecord->Remove(SYSTEM_UID, 0, "WrongName", "0")); 83 EXPECT_EQ(false, workrecord->Remove(999, 0, "name", "0")); 85 EXPECT_EQ(false, workrecord->Remove(999, 0, "WrongName", "0")); 87 EXPECT_EQ(false, workrecord->Remove(999, 1, "name", "0")); 89 EXPECT_EQ(false, workrecord->Remove(999, 1, "WrongName", "0")); 91 EXPECT_EQ(false, workrecord->Remove(SYSTEM_UID, 1, "WrongName", "0")); [all …]
|
/base/notification/eventhandler/test/fuzztest/eventqueueannex_fuzzer/ |
D | eventqueueannex_fuzzer.cpp | 59 eventQueue.Remove(myHandler); in DoSomethingInterestingWithMyAPI() 60 eventQueue.Remove(myHandler, innerEventId); in DoSomethingInterestingWithMyAPI() 61 eventQueue.Remove(myHandler, innerEventId, param); in DoSomethingInterestingWithMyAPI() 62 eventQueue.Remove(myHandler, stringData); in DoSomethingInterestingWithMyAPI()
|
/base/notification/eventhandler/interfaces/inner_api/ |
D | event_queue.h | 94 void Remove(const std::shared_ptr<EventHandler> &owner); 102 void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId); 111 void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId, int64_t param); 119 void Remove(const std::shared_ptr<EventHandler> &owner, const std::string &name); 245 void Remove(const RemoveFilter &filter);
|
/base/time/time_service/services/timer/include/ |
D | batch.h | 40 bool Remove(const TimerInfo &alarm); 41 bool Remove(std::function<bool(const TimerInfo &)> predicate);
|
/base/hiviewdfx/hiview/base/event_store/store/ |
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/location/services/location_locator/locator/include/ |
D | work_record.h | 31 bool Remove(int uid, int pid, std::string name, std::string uuid); 35 bool Remove(std::string name);
|
/base/request/request/services/service/rust/src/ |
D | download_server_ipc_interface_code.rs | 28 Remove, enumerator
|
D | lib.rs | 64 _ if code == RequestInterfaceCode::Remove as u32 => Ok(RequestInterfaceCode::Remove), in try_from() 134 RequestInterfaceCode::Remove => stub.remove(data, reply), in on_remote_request()
|
/base/time/time_service/services/timer/src/ |
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::MiscServices::Batch
|
/base/request/request/frameworks/js/napi/src/upload/ |
D | upload_task.cpp | 42 Remove(); in ~UploadTask() 46 bool UploadTask::Remove() in Remove() function in OHOS::Request::Upload::UploadTask 52 curlAdp_->Remove(); in Remove()
|
/base/notification/eventhandler/frameworks/eventhandler/src/ |
D | event_queue.cpp | 142 Remove(filter); in RemoveOrphan() 172 void EventQueue::Remove(const std::shared_ptr<EventHandler> &owner) in Remove() function in OHOS::AppExecFwk::EventQueue 181 Remove(filter); in Remove() 184 void EventQueue::Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId) in Remove() function in OHOS::AppExecFwk::EventQueue 195 Remove(filter); in Remove() 198 void EventQueue::Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId, int64_t … in Remove() function in OHOS::AppExecFwk::EventQueue 210 Remove(filter); in Remove() 213 void EventQueue::Remove(const std::shared_ptr<EventHandler> &owner, const std::string &name) in Remove() function in OHOS::AppExecFwk::EventQueue 224 Remove(filter); in Remove() 227 void EventQueue::Remove(const RemoveFilter &filter) in Remove() function in OHOS::AppExecFwk::EventQueue
|
D | event_handler.cpp | 146 eventRunner_->GetEventQueue()->Remove(shared_from_this()); in RemoveAllEvents() 156 eventRunner_->GetEventQueue()->Remove(shared_from_this(), innerEventId); in RemoveEvent() 166 eventRunner_->GetEventQueue()->Remove(shared_from_this(), innerEventId, param); in RemoveEvent() 176 eventRunner_->GetEventQueue()->Remove(shared_from_this(), name); in RemoveTask()
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/include/ |
D | app_event_block.h | 36 int Remove(int num);
|
/base/security/access_token/services/accesstokenmanager/main/cpp/include/database/ |
D | data_storage.h | 42 virtual int Remove(const DataType type, const GenericValues& conditions) = 0;
|
/base/hiviewdfx/hiview/adapter/service/idl/include/ |
D | ihiview_service_ability.h | 35 virtual int32_t Remove(const std::string& logType, const std::string& logName) = 0;
|
D | hiview_service_ability_proxy.h | 35 int32_t Remove(const std::string& logType, const std::string& logName) override;
|
D | hiview_service_agent.h | 32 static int32_t Remove(const std::string& logType, const std::string& logName);
|
/base/hiviewdfx/hiview/interfaces/js/napi/src/ |
D | napi_hiview_js.cpp | 127 static napi_value Remove(napi_env env, napi_callback_info info) in Remove() function 150 int32_t retCode = HiviewServiceAgent::Remove(logType, logName); in Remove() 165 DECLARE_NAPI_FUNCTION("remove", Remove) in Init()
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/ |
D | app_event_block.cpp | 37 int AppEventBlock::Remove(int num) in Remove() function in OHOS::HiviewDFX::AppEventBlock
|
/base/security/access_token/services/common/database/include/ |
D | generic_values.h | 51 void Remove(const std::string& key);
|
/base/hiviewdfx/hiview/adapter/service/idl/src/ |
D | hiview_service_agent.cpp | 71 int32_t HiviewServiceAgent::Remove(const std::string& logType, const std::string& logName) in Remove() function in OHOS::HiviewDFX::HiviewServiceAgent 79 return proxy.Remove(logType, logName); in Remove()
|
/base/hiviewdfx/hiview/service/ |
D | hiview_service.h | 37 int32_t Remove(const std::string& filePath);
|
/base/hiviewdfx/hiview/base/event_store/store/include/ |
D | sys_event_doc_lru_cache.h | 41 bool Remove(const LruCacheKey& key);
|
/base/telephony/core_service/services/tel_ril/include/ |
D | observer_handler.h | 36 void Remove(int32_t what, const std::shared_ptr<AppExecFwk::EventHandler> handler);
|
/base/update/updateservice/services/core/ability/preference/src/ |
D | preference_utils_empty.cpp | 95 bool PreferencesUtil::Remove(const std::string &key) in Remove() function in OHOS::UpdateEngine::PreferencesUtil
|