Home
last modified time | relevance | path

Searched refs:Commit (Results 1 - 25 of 36) sorted by relevance

12

/drivers/external_device_manager/services/native/driver_extension_manager/src/drivers_pkg_manager/
H A Dpkg_db_helper.cpp60 ret = rightDatabase_->Commit(); in DeleteAndNoOtherOperation()
62 EDM_LOGE(MODULE_PKG_MGR, "Commit error: %{public}d", ret); in DeleteAndNoOtherOperation()
120 ret = rightDatabase_->Commit(); in AddOrUpdatePkgInfo()
122 EDM_LOGE(MODULE_PKG_MGR, "Commit error: %{public}d", ret); in AddOrUpdatePkgInfo()
148 ret = rightDatabase_->Commit(); in AddOrUpdateRightRecord()
150 EDM_LOGE(MODULE_PKG_MGR, "Commit error: %{public}d", ret); in AddOrUpdateRightRecord()
284 ret = rightDatabase_->Commit(); in QueryPkgInfos()
286 EDM_LOGE(MODULE_PKG_MGR, "Commit error: %{public}d", ret); in QueryPkgInfos()
320 ret = rightDatabase_->Commit(); in QueryAndGetResultColumnValues()
322 EDM_LOGE(MODULE_PKG_MGR, "Commit erro in QueryAndGetResultColumnValues()
[all...]
H A Dpkg_database.cpp68 int32_t PkgDataBase::Commit() in Commit() function in OHOS::ExternalDeviceManager::PkgDataBase
71 EDM_LOGE(MODULE_PKG_MGR, "Commit store_ is nullptr"); in Commit()
74 int32_t ret = store_->Commit(); in Commit()
76 EDM_LOGE(MODULE_PKG_MGR, "Commit fail :%{public}d", ret); in Commit()
/drivers/peripheral/display/composer/vdi_base/include/
H A Dhdi_composer.h51 int32_t Commit(bool modeSet);
H A Dhdi_display.h94 virtual int32_t Commit(int32_t *fence);
H A Ddisplay_composer_vdi_impl.h57 virtual int32_t Commit(uint32_t devId, int32_t& fence) override;
/drivers/peripheral/display/composer/vdi_base/src/
H A Dhdi_composer.cpp36 int32_t HdiComposer::Commit(bool modeSet) in Commit() function in OHOS::HDI::DISPLAY::HdiComposer
H A Dhdi_display.cpp196 int32_t HdiDisplay::Commit(int32_t *fence) in Commit() function in OHOS::HDI::DISPLAY::HdiDisplay
199 mComposer->Commit(false); in Commit()
H A Ddisplay_composer_vdi_impl.cpp206 int32_t DisplayComposerVdiImpl::Commit(uint32_t devId, int32_t& fence) in Commit() function in OHOS::HDI::DISPLAY::DisplayComposerVdiImpl
208 int32_t ec = HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::Commit, &fence); in Commit()
H A Dhdi_session.cpp231 static int32_t Commit(uint32_t devId, int32_t *fence) in Commit() function
235 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::Commit, fence); in Commit()
/drivers/peripheral/display/hal/default_standard/src/display_device/composer/
H A Dhdi_composer.cpp51 int32_t HdiComposer::Commit(bool modeSet) in Commit() function in OHOS::HDI::DISPLAY::HdiComposer
H A Dhdi_composer.h51 int32_t Commit(bool modeSet);
/drivers/external_device_manager/services/native/driver_extension_manager/include/drivers_pkg_manager/
H A Dpkg_database.h61 int32_t Commit();
/drivers/peripheral/display/composer/test/common/
H A Dhdi_test_display.h39 int32_t Commit();
H A Dhdi_test_display.cpp165 int32_t HdiTestDisplay::Commit() in Commit() function in OHOS::HDI::Display::TEST::HdiTestDisplay
192 ret = device_->Commit(id_, fenceFd); in Commit()
/drivers/peripheral/display/hal/default_standard/src/display_device/core/
H A Dhdi_display.cpp200 int32_t HdiDisplay::Commit(int32_t *fence) in Commit() function in OHOS::HDI::DISPLAY::HdiDisplay
203 mComposer->Commit(false); in Commit()
H A Dhdi_session.cpp207 static int32_t Commit(uint32_t devId, int32_t *fence) in Commit() function
211 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::Commit, fence); in Commit()
352 dFuncs->Commit = Commit; in DeviceInitialize()
H A Dhdi_display.h89 virtual int32_t Commit(int32_t *fence);
/drivers/peripheral/display/interfaces/include/
H A Ddisplay_device.h541 int32_t (*Commit)(uint32_t devId, int32_t *fence); member
/drivers/peripheral/display/composer/hdi_service/include/
H A Didisplay_composer_vdi.h63 virtual int32_t Commit(uint32_t devId, int32_t& fence) = 0;
/drivers/peripheral/display/hal/default_standard/src/display_device/
H A Ddisplay_composer_vdi_impl.h57 virtual int32_t Commit(uint32_t devId, int32_t& fence) override;
H A Ddisplay_composer_vdi_impl.cpp219 int32_t DisplayComposerVdiImpl::Commit(uint32_t devId, int32_t& fence) in Commit() function in OHOS::HDI::DISPLAY::DisplayComposerVdiImpl
222 int32_t ec = composerModel_->CallDisplayFunction(devId, &HdiDisplay::Commit, &fence); in Commit()
/drivers/peripheral/display/hdi_service/device/include/server/
H A Ddisplay_device_stub.h60 int32_t Commit(MessageParcel *data, MessageParcel *reply);
/drivers/peripheral/display/hdi_service/device/src/server/
H A Ddisplay_device_service.cpp144 int32_t DisplayDeviceService::Commit(uint32_t devId, int32_t &fence) in Commit() function in OHOS::Display::Device::Server::DisplayDeviceService
146 return displayDevice_->Commit(devId, &fence); in Commit()
/drivers/interface/display/composer/v1_0/hdi_impl/
H A Ddisplay_composer_hdi_impl.h298 virtual int32_t Commit(uint32_t devId, int32_t& fence) override
301 return ToDispErrCode(req_->Commit(devId, fence));
/drivers/peripheral/display/composer/test/moduletest/
H A Dhdi_device_test.cpp275 ret = display->Commit(); in PrepareAndPrensent()
276 DISPLAY_TEST_CHK_RETURN((ret != DISPLAY_SUCCESS), DISPLAY_FAILURE, DISPLAY_TEST_LOGE("Commit failed")); in PrepareAndPrensent()
359 ret = display->Commit(); // 送显 in PrepareAndCommit()
360 DISPLAY_TEST_CHK_RETURN((ret != DISPLAY_SUCCESS), DISPLAY_FAILURE, DISPLAY_TEST_LOGE("Commit failed")); in PrepareAndCommit()

Completed in 16 milliseconds

12