/base/useriam/user_auth_framework/test/unittest/services/src/ |
H A D | context_pool_test.cpp | 80 EXPECT_EQ(pool.Delete(CONTEXT_ID), true); in HWTEST_F() 87 EXPECT_EQ(pool.Delete(CONTEXT_ID), false); in HWTEST_F() 90 EXPECT_EQ(pool.Delete(CONTEXT_ID), true); in HWTEST_F() 111 EXPECT_EQ(pool.Delete(CONTEXT_ID1), true); in HWTEST_F() 112 EXPECT_EQ(pool.Delete(CONTEXT_ID2), true); in HWTEST_F() 113 EXPECT_EQ(pool.Delete(CONTEXT_ID3), true); in HWTEST_F() 115 EXPECT_FALSE(pool.Delete(CONTEXT_ID1)); in HWTEST_F() 116 EXPECT_FALSE(pool.Delete(CONTEXT_ID2)); in HWTEST_F() 117 EXPECT_FALSE(pool.Delete(CONTEXT_ID3)); in HWTEST_F() 136 EXPECT_EQ(pool.Delete(CONTEXT_ID in HWTEST_F() [all...] |
H A D | resource_node_pool_test.cpp | 78 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX), true); in HWTEST_F() 79 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX), true); in HWTEST_F() 86 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX), false); in HWTEST_F() 89 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX), true); in HWTEST_F() 161 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX1), true); in HWTEST_F() 164 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX2), true); in HWTEST_F() 167 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX3), true); in HWTEST_F() 194 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX1), true); in HWTEST_F() 195 EXPECT_EQ(pool.Delete(EXECUTOR_INDEX2), true); in HWTEST_F()
|
/base/update/updateservice/services/core/ability/sqlite/core/include/ |
H A D | table_base_operator.h | 41 bool Delete(const NativeRdb::RdbPredicates &predicates); 42 bool Delete(int32_t &deletedRows, const NativeRdb::RdbPredicates &predicates) final; 93 return Delete(deletedRows, predicates); in DeleteAll() 97 bool TableBaseOperator<Table, T>::Delete(const NativeRdb::RdbPredicates &predicates) in Delete() function in OHOS::UpdateEngine::TableBaseOperator 100 return Delete(deletedRows, predicates); in Delete() 104 bool TableBaseOperator<Table, T>::Delete(int32_t &deletedRows, const NativeRdb::RdbPredicates &predicates) in Delete() function in OHOS::UpdateEngine::TableBaseOperator 106 ENGINE_CHECK(dataBase_ != nullptr, return false, "TableBaseOperator Delete db is null"); in Delete() 107 return dataBase_->Delete(deletedRows, predicates); in Delete() 117 return dataBase_->Delete(deletedRows, predicates); in DeleteById()
|
H A D | idatabase.h | 32 virtual bool Delete(int32_t &deletedRows, const NativeRdb::RdbPredicates &predicates) = 0;
|
H A D | itable_operator.h | 32 virtual bool Delete(int32_t &deletedRows, const NativeRdb::RdbPredicates &predicates) = 0;
|
/base/hiviewdfx/hiview/plugins/event_store/event_export/task/expire/ |
H A D | event_delete_handler.cpp | 34 return Delete(delReq->files, delReq->moduleName); in HandleRequest() 37 bool EventDeleteHandler::Delete(std::vector<std::string>& files, const std::string& moduleName) in Delete() function in OHOS::HiviewDFX::EventDeleteHandler
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/include/ |
H A D | app_event_observer_dao.h | 33 int Delete(const std::string& observer);
34 int Delete(int64_t observerSeq);
|
H A D | app_event_dao.h | 33 int Delete(int64_t eventSeq);
34 int Delete(const std::vector<int64_t>& eventSeqs);
|
H A D | user_property_dao.h | 34 int Delete(const std::string& name);
|
H A D | app_event_mapping_dao.h | 31 int Delete(int64_t observerSeq, const std::vector<int64_t>& eventSeqs);
|
H A D | user_id_dao.h | 34 int Delete(const std::string& name);
|
/base/notification/distributed_notification_service/test/fuzztest/reminderstore_fuzzer/ |
H A D | reminderstore_fuzzer.cpp | 31 reminderStore.Delete(oldVersion);
in DoSomethingInterestingWithMyAPI() 33 reminderStore.Delete(stringData, oldVersion, oldVersion);
in DoSomethingInterestingWithMyAPI()
|
/base/inputmethod/imf/test/unittest/cpp_test/mock/ |
H A D | full_ime_info_manager.h | 34 int32_t Delete(int32_t userId); // user removed 36 int32_t Delete(int32_t userId, const std::string &bundleName); // package removed
|
/base/inputmethod/imf/services/include/ |
H A D | full_ime_info_manager.h | 33 int32_t Delete(int32_t userId); // user removed 35 int32_t Delete(int32_t userId, const std::string &bundleName); // package removed
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/ |
H A D | app_event_dao.cpp | 102 int AppEventDao::Delete(int64_t eventSeq)
in Delete() function in OHOS::HiviewDFX::AppEventDao 109 if (dbStore_->Delete(deleteRows, predicates) != NativeRdb::E_OK) {
in Delete() 116 int AppEventDao::Delete(const std::vector<int64_t>& eventSeqs)
in Delete() function in OHOS::HiviewDFX::AppEventDao 129 if (dbStore_->Delete(deleteRows, predicates) != NativeRdb::E_OK) {
in Delete()
|
H A D | app_event_observer_dao.cpp | 119 int AppEventObserverDao::Delete(const std::string& observer)
in Delete() function in OHOS::HiviewDFX::AppEventObserverDao 124 if (dbStore_->Delete(deleteRows, predicates) != NativeRdb::E_OK) {
in Delete() 132 int AppEventObserverDao::Delete(int64_t observerSeq)
in Delete() function in OHOS::HiviewDFX::AppEventObserverDao 137 if (dbStore_->Delete(deleteRows, predicates) != NativeRdb::E_OK) {
in Delete()
|
H A D | app_event_store.cpp | 325 return userIdDao_->Delete(name);
in DeleteUserId() 334 return userPropertyDao_->Delete(name);
in DeleteUserProperty() 388 if (appEventMappingDao_->Delete(observerSeq, eventSeqs) < 0) {
in TakeEvents() 465 if (int ret = appEventMappingDao_->Delete(observerSeq, {}); ret < 0) {
in DeleteObserver() 468 return appEventObserverDao_->Delete(observerSeq);
in DeleteObserver() 477 return appEventMappingDao_->Delete(observerSeq, eventSeqs);
in DeleteEventMapping() 486 return appEventDao_->Delete(eventSeq);
in DeleteEvent() 495 return customEventParamDao_->Delete();
in DeleteCustomEventParams() 514 return appEventDao_->Delete(eventSeqs);
in DeleteEvent() 522 return appEventDao_->Delete(delEventSeq in DeleteEvent() [all...] |
H A D | app_event_mapping_dao.cpp | 77 int AppEventMappingDao::Delete(int64_t observerSeq, const std::vector<int64_t>& eventSeqs)
in Delete() function in OHOS::HiviewDFX::AppEventMappingDao 92 if (dbStore_->Delete(deleteRows, predicates) != NativeRdb::E_OK) {
in Delete()
|
/base/telephony/telephony_data/common/src/ |
H A D | rdb_base_helper.cpp | 66 int RdbBaseHelper::Delete(int &changedRows, const std::string &table, const std::string &whereClause, in Delete() function in OHOS::Telephony::RdbBaseHelper 71 ret = store_->Delete(changedRows, table, whereClause, whereArgs); in Delete() 76 int RdbBaseHelper::Delete(int &deletedRows, const NativeRdb::AbsRdbPredicates &predicates) in Delete() function in OHOS::Telephony::RdbBaseHelper 80 ret = store_->Delete(deletedRows, predicates); in Delete()
|
/base/notification/distributed_notification_service/frameworks/ans/test/unittest/ |
H A D | reminder_store_test.cpp | 105 * @tc.desc: Test Delete parameters. 113 int32_t ret = reminderStore.Delete(reminderId); in HWTEST_F() 119 * @tc.desc: Test Delete parameters. 128 int32_t ret = reminderStore.Delete(pkg, userId, -1); in HWTEST_F() 134 * @tc.desc: Test Delete parameters. 248 * @tc.desc: Test Delete parameters. 257 int32_t ret = reminderStore.Delete(conditiont1, conditiont2); in HWTEST_F() 319 int32_t ret = reminderStore.Delete("com.example.simple", 100, 20020152); in HWTEST_F() 322 ret = reminderStore.Delete("com.example.simple", 100, -1); in HWTEST_F() 381 reminderStore.Delete(reminde in HWTEST_F() [all...] |
/base/hiviewdfx/hiview/plugins/event_store/event_export/task/include/ |
H A D | event_delete_handler.h | 42 bool Delete(std::vector<std::string>& files, const std::string& moduleName);
|
/base/useriam/user_auth_framework/services/context/src/ |
H A D | context_helper.cpp | 37 auto result = ContextPool::Instance().Delete(contextId_); in operator ()()
|
/base/notification/distributed_notification_service/services/ans/include/ |
H A D | reminder_store.h | 37 int32_t Delete(const int32_t reminderId); 38 int32_t Delete(const std::string& pkg, const int32_t userId, const int32_t uid); 76 int32_t Delete(const std::string& baseCondition, const std::string& assoConditon);
|
/base/customization/enterprise_device_management/services/edm/src/database/ |
H A D | edm_rdb_data_manager.cpp | 90 bool EdmRdbDataManager::Delete(const NativeRdb::AbsRdbPredicates &predicates)
in Delete() function in OHOS::EDM::EdmRdbDataManager 92 EDMLOGD("EdmRdbDataManager Delete data start.");
in Delete() 99 auto ret = rdbStore->Delete(rowId, predicates);
in Delete()
|
/base/security/security_guard/test/unittest/mock/rdb/ |
H A D | rdb_store.h | 41 virtual int Delete(int &deletedRows, const NativeRdb::AbsRdbPredicates &predicates) = 0; 74 MOCK_METHOD2(Delete, int(int &deletedRows, const AbsRdbPredicates &predicates));
|