Home
last modified time | relevance | path

Searched refs:Delete (Results 1 - 25 of 190) sorted by relevance

12345678

/base/useriam/user_auth_framework/test/unittest/services/src/
H A Dcontext_pool_test.cpp80 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 Dresource_node_pool_test.cpp78 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 Dtable_base_operator.h41 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 Didatabase.h32 virtual bool Delete(int32_t &deletedRows, const NativeRdb::RdbPredicates &predicates) = 0;
H A Ditable_operator.h32 virtual bool Delete(int32_t &deletedRows, const NativeRdb::RdbPredicates &predicates) = 0;
/base/hiviewdfx/hiview/plugins/event_store/event_export/task/expire/
H A Devent_delete_handler.cpp34 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 Dapp_event_observer_dao.h33 int Delete(const std::string& observer);
34 int Delete(int64_t observerSeq);
H A Dapp_event_dao.h33 int Delete(int64_t eventSeq);
34 int Delete(const std::vector<int64_t>& eventSeqs);
H A Duser_property_dao.h34 int Delete(const std::string& name);
H A Dapp_event_mapping_dao.h31 int Delete(int64_t observerSeq, const std::vector<int64_t>& eventSeqs);
H A Duser_id_dao.h34 int Delete(const std::string& name);
/base/notification/distributed_notification_service/test/fuzztest/reminderstore_fuzzer/
H A Dreminderstore_fuzzer.cpp31 reminderStore.Delete(oldVersion); in DoSomethingInterestingWithMyAPI()
33 reminderStore.Delete(stringData, oldVersion, oldVersion); in DoSomethingInterestingWithMyAPI()
/base/inputmethod/imf/test/unittest/cpp_test/mock/
H A Dfull_ime_info_manager.h34 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 Dfull_ime_info_manager.h33 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 Dapp_event_dao.cpp102 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 Dapp_event_observer_dao.cpp119 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 Dapp_event_store.cpp325 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 Dapp_event_mapping_dao.cpp77 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 Drdb_base_helper.cpp66 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 Dreminder_store_test.cpp105 * @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 Devent_delete_handler.h42 bool Delete(std::vector<std::string>& files, const std::string& moduleName);
/base/useriam/user_auth_framework/services/context/src/
H A Dcontext_helper.cpp37 auto result = ContextPool::Instance().Delete(contextId_); in operator ()()
/base/notification/distributed_notification_service/services/ans/include/
H A Dreminder_store.h37 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 Dedm_rdb_data_manager.cpp90 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 Drdb_store.h41 virtual int Delete(int &deletedRows, const NativeRdb::AbsRdbPredicates &predicates) = 0;
74 MOCK_METHOD2(Delete, int(int &deletedRows, const AbsRdbPredicates &predicates));

Completed in 10 milliseconds

12345678