/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/ |
D | lock_status_observer.cpp | 100 void LockStatusObserver::OnStatusChange(bool isLocked) const in OnStatusChange() 106 lockStatusChangedNotifier_->NotifyEvent(LOCK_STATUS_CHANGE_EVENT, &isLocked); in OnStatusChange()
|
D | lock_status_observer.h | 30 void OnStatusChange(bool isLocked) const;
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
D | runtime_context_process_system_api_adapter_impl_test.cpp | 199 bool isLocked = RuntimeContext::GetInstance()->IsAccessControlled(); variable 200 EXPECT_FALSE(isLocked); 208 isLocked = RuntimeContext::GetInstance()->IsAccessControlled(); 209 EXPECT_TRUE(!isLocked);
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/ |
D | storage_engine_manager.cpp | 164 bool isLocked = *static_cast<bool *>(lockStatus); in RegisterLockStatusListener() local 165 LOGD("[StorageEngineManager] Lock status to %d", isLocked); in RegisterLockStatusListener() 166 if (isLocked) { in RegisterLockStatusListener() 170 std::bind(&StorageEngineManager::LockStatusNotifier, this, isLocked)); in RegisterLockStatusListener()
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
D | screen_manager.h | 187 DMError SetScreenRotationLocked(bool isLocked); 195 DMError IsScreenRotationLocked(bool& isLocked);
|
/foundation/window/window_manager/window_scene/session_manager/src/zidl/ |
D | screen_session_manager_stub.cpp | 294 bool isLocked = static_cast<bool>(data.ReadBool()); in OnRemoteRequest() local 295 DMError ret = SetScreenRotationLocked(isLocked); in OnRemoteRequest() 300 bool isLocked = false; in OnRemoteRequest() local 301 DMError ret = IsScreenRotationLocked(isLocked); in OnRemoteRequest() 303 reply.WriteBool(isLocked); in OnRemoteRequest()
|
/foundation/window/window_manager/test/common/mock/ |
D | mock_display_manager_adapter.h | 77 MOCK_METHOD1(SetScreenRotationLocked, DMError(bool isLocked)); 78 MOCK_METHOD1(IsScreenRotationLocked, DMError(bool& isLocked));
|
/foundation/window/window_manager/dmserver/src/ |
D | display_manager_stub.cpp | 327 bool isLocked = false; in OnRemoteRequest() local 328 DMError ret = IsScreenRotationLocked(isLocked); in OnRemoteRequest() 330 reply.WriteBool(isLocked); in OnRemoteRequest() 334 bool isLocked = static_cast<bool>(data.ReadBool()); in OnRemoteRequest() local 335 DMError ret = SetScreenRotationLocked(isLocked); in OnRemoteRequest()
|
D | screen_rotation_controller.cpp | 56 DMError ScreenRotationController::SetScreenRotationLocked(bool isLocked) in SetScreenRotationLocked() argument 58 isScreenRotationLocked_ = isLocked; in SetScreenRotationLocked() 59 if (isLocked) { in SetScreenRotationLocked()
|
D | display_manager_service.cpp | 739 DMError DisplayManagerService::IsScreenRotationLocked(bool& isLocked) in IsScreenRotationLocked() argument 745 isLocked = ScreenRotationController::IsScreenRotationLocked(); in IsScreenRotationLocked() 749 DMError DisplayManagerService::SetScreenRotationLocked(bool isLocked) in SetScreenRotationLocked() argument 755 return ScreenRotationController::SetScreenRotationLocked(isLocked); in SetScreenRotationLocked()
|
/foundation/window/window_manager/dmserver/include/ |
D | display_manager_proxy.h | 46 DMError IsScreenRotationLocked(bool& isLocked) override; 47 DMError SetScreenRotationLocked(bool isLocked) override;
|
D | display_manager_interface.h | 106 virtual DMError SetScreenRotationLocked(bool isLocked) = 0; 107 virtual DMError IsScreenRotationLocked(bool& isLocked) = 0;
|
D | display_manager_service.h | 53 DMError IsScreenRotationLocked(bool& isLocked) override; 54 DMError SetScreenRotationLocked(bool isLocked) override;
|
D | screen_rotation_controller.h | 52 static DMError SetScreenRotationLocked(bool isLocked);
|
/foundation/window/window_manager/dm/src/ |
D | display_manager_adapter.cpp | 143 DMError ScreenManagerAdapter::SetScreenRotationLocked(bool isLocked) in SetScreenRotationLocked() argument 147 return displayManagerServiceProxy_->SetScreenRotationLocked(isLocked); in SetScreenRotationLocked() 150 DMError ScreenManagerAdapter::IsScreenRotationLocked(bool& isLocked) in IsScreenRotationLocked() argument 154 return displayManagerServiceProxy_->IsScreenRotationLocked(isLocked); in IsScreenRotationLocked()
|
D | screen_manager.cpp | 539 DMError ScreenManager::SetScreenRotationLocked(bool isLocked) in SetScreenRotationLocked() argument 541 return SingletonContainer::Get<ScreenManagerAdapter>().SetScreenRotationLocked(isLocked); in SetScreenRotationLocked() 544 DMError ScreenManager::IsScreenRotationLocked(bool& isLocked) in IsScreenRotationLocked() argument 546 return SingletonContainer::Get<ScreenManagerAdapter>().IsScreenRotationLocked(isLocked); in IsScreenRotationLocked()
|
/foundation/window/window_manager/window_scene/session_manager/include/zidl/ |
D | screen_session_manager_proxy.h | 85 virtual DMError SetScreenRotationLocked(bool isLocked) override; 86 virtual DMError IsScreenRotationLocked(bool& isLocked) override;
|
D | screen_session_manager_interface.h | 44 virtual DMError SetScreenRotationLocked(bool isLocked) override { return DMError::DM_OK; } in SetScreenRotationLocked() argument 45 virtual DMError IsScreenRotationLocked(bool& isLocked) override { return DMError::DM_OK; } in IsScreenRotationLocked() argument
|
/foundation/window/window_manager/dm/include/ |
D | display_manager_adapter.h | 111 virtual DMError SetScreenRotationLocked(bool isLocked); 112 virtual DMError IsScreenRotationLocked(bool& isLocked);
|
/foundation/window/window_manager/window_scene/session_manager/src/ |
D | screen_rotation_property.cpp | 66 DMError ScreenRotationProperty::SetScreenRotationLocked(bool isLocked) in SetScreenRotationLocked() argument 68 isScreenRotationLocked_ = isLocked; in SetScreenRotationLocked() 69 if (isLocked) { in SetScreenRotationLocked()
|
/foundation/window/window_manager/window_scene/session_manager/include/ |
D | screen_rotation_property.h | 52 static DMError SetScreenRotationLocked(bool isLocked);
|
D | screen_session_manager.h | 101 DMError IsScreenRotationLocked(bool& isLocked) override; 102 DMError SetScreenRotationLocked(bool isLocked) override;
|
/foundation/window/window_manager/dmserver/test/unittest/ |
D | display_manager_service_test.cpp | 401 bool isLocked = false; variable 402 dms_->IsScreenRotationLocked(isLocked); 403 ASSERT_EQ(false, isLocked);
|
/foundation/window/window_manager/interfaces/kits/napi/screen_runtime/napi/ |
D | js_screen_manager.cpp | 786 bool isLocked = false; in OnIsScreenRotationLocked() local 788 SingletonContainer::Get<ScreenManager>().IsScreenRotationLocked(isLocked)); in OnIsScreenRotationLocked() 790 task.Resolve(engine, CreateJsValue(engine, isLocked)); in OnIsScreenRotationLocked() 817 bool isLocked = false; in OnSetScreenRotationLocked() local 824 isLocked = static_cast<bool>(*nativeVal); in OnSetScreenRotationLocked() 834 [isLocked](NativeEngine& engine, AsyncTask& task, int32_t status) { in OnSetScreenRotationLocked() 836 SingletonContainer::Get<ScreenManager>().SetScreenRotationLocked(isLocked)); in OnSetScreenRotationLocked()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/ |
D | runtime_context.h | 42 using LockStatusNotifier = std::function<void(void *isLocked)>;
|