/base/msdp/device_status/intention/common/epoll/src/ |
H A D | epoll_manager.cpp | 63 auto [iter, isNew] = sources_.emplace(source->GetFd(), source); in Add() 65 FI_HILOGW("Epoll source(%d) has been added", source->GetFd()); in Add() 72 int32_t ret = ::epoll_ctl(epollFd_, EPOLL_CTL_ADD, source->GetFd(), &ev); in Add() 78 FI_HILOGI("Add epoll source(%d)", source->GetFd()); in Add() 85 auto iter = sources_.find(source->GetFd()); in Remove() 87 FI_HILOGE("No epoll source(%d)", source->GetFd()); in Remove() 90 FI_HILOGI("Remove epoll source(%d)", source->GetFd()); in Remove() 91 int32_t ret = ::epoll_ctl(epollFd_, EPOLL_CTL_DEL, source->GetFd(), nullptr); in Remove() 101 auto iter = sources_.find(source->GetFd()); in Update() 103 FI_HILOGE("No epoll source(%d)", source->GetFd()); in Update() [all...] |
/base/msdp/device_status/test/unittest/intention/common/include/ |
H A D | epoll_manager_test.h | 37 int32_t GetFd() const override; 44 inline int32_t MonitorEvent::GetFd() const in GetFd() function in OHOS::Msdp::DeviceStatus::MonitorEvent
|
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/ |
H A D | ark_ohos_file_mapper_wrapper.cpp | 22 int32_t ArkOhosFileMapperWrapper::GetFd() in GetFd() function in OHOS::ArkWeb::ArkOhosFileMapperWrapper 24 return ctocpp_->GetFd(); in GetFd()
|
H A D | ark_ohos_image_decoder_adapter_wrapper.cpp | 61 int32_t ArkOhosImageDecoderAdapterWrapper::GetFd() in GetFd() function in OHOS::ArkWeb::ArkOhosImageDecoderAdapterWrapper 63 return ctocpp_->GetFd(); in GetFd()
|
H A D | ark_ohos_file_mapper_wrapper.h | 29 int32_t GetFd() override;
|
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/ |
H A D | ark_ohos_file_mapper_impl.cpp | 24 int32_t ArkOhosFileMapperImpl::GetFd() in GetFd() function in OHOS::ArkWeb::ArkOhosFileMapperImpl 26 return real_->GetFd(); in GetFd()
|
H A D | ark_ohos_image_decoder_adapter_impl.cpp | 59 int32_t ArkOhosImageDecoderAdapterImpl::GetFd() in GetFd() function in OHOS::ArkWeb::ArkOhosImageDecoderAdapterImpl 61 return real_->GetFd(); in GetFd()
|
H A D | ark_ohos_file_mapper_impl.h | 29 int32_t GetFd() override;
|
/base/msdp/device_status/intention/ipc/socket/include/ |
H A D | socket_session_manager.h | 50 int32_t GetFd() const override; 85 inline int32_t SocketSessionManager::GetFd() const in GetFd() function in OHOS::Msdp::DeviceStatus::SocketSessionManager 87 return epollMgr_.GetFd(); in GetFd()
|
H A D | socket_connection.h | 40 int32_t GetFd() const; 56 inline int32_t SocketConnection::GetFd() const in GetFd() function in OHOS::Msdp::DeviceStatus::SocketConnection
|
H A D | socket_session.h | 42 int32_t GetFd() const override; 66 inline int32_t SocketSession::GetFd() const in GetFd() function in OHOS::Msdp::DeviceStatus::SocketSession
|
/base/msdp/device_status/intention/common/epoll/include/ |
H A D | epoll_manager.h | 46 int32_t GetFd() const override; 57 inline int32_t EpollManager::GetFd() const in GetFd() function in OHOS::Msdp::DeviceStatus::EpollManager
|
/base/msdp/device_status/intention/services/device_manager/include/ |
H A D | monitor.h | 39 int32_t GetFd() const override; 59 inline int32_t Monitor::GetFd() const in GetFd() function in OHOS::Msdp::DeviceStatus::Monitor
|
H A D | device_manager.h | 46 int32_t GetFd() const override; 98 inline int32_t DeviceManager::GetFd() const in GetFd() function in OHOS::Msdp::DeviceStatus::DeviceManager 100 return epollMgr_.GetFd(); in GetFd()
|
/base/msdp/device_status/intention/ipc/socket/src/ |
H A D | socket_client.cpp | 70 auto errCode = eventHandler_->AddFileDescriptorListener(socket->GetFd(), in Connect() 73 FI_HILOGE("AddFileDescriptorListener(%{public}d) failed (%{public}u)", socket->GetFd(), errCode); in Connect() 114 eventHandler_->RemoveFileDescriptorListener(socket_->GetFd()); in OnDisconnected()
|
H A D | socket_session_manager.cpp | 170 ReleaseSession(source->GetFd());
in DispatchOne() 182 numRead = ::recv(source.GetFd(), buf, sizeof(buf), MSG_DONTWAIT);
in OnEpollIn() 198 ReleaseSession(source.GetFd());
in OnEpollIn() 297 auto [iter, inserted] = sessions_.emplace(session->GetFd(), session);
in AddSession() 299 FI_HILOGE("Session(%{public}d) has been recorded", session->GetFd());
in AddSession() 303 FI_HILOGE("Failed to listening on session(%{public}d)", session->GetFd());
in AddSession()
|
/base/web/webview/ohos_adapter/ohos_image_adapter/src/ |
H A D | ohos_image_decoder_adapter_impl.cpp | 52 if (pixelMap && pixelMap->GetFd()) { in SurfaceBufferFromPixelMap() 53 return reinterpret_cast<SurfaceBuffer*>(pixelMap->GetFd()); in SurfaceBufferFromPixelMap() 120 int32_t OhosImageDecoderAdapterImpl::GetFd() in GetFd() function in OHOS::NWeb::OhosImageDecoderAdapterImpl 123 WVLOG_E("[HeifSupport] OhosImageDecoderAdapterImpl::GetFd. PixelMap is null."); in GetFd() 130 "[HeifSupport] OhosImageDecoderAdapterImpl::GetFd. Fail to get surface buffer."); in GetFd()
|
/base/msdp/device_status/intention/prototype/include/ |
H A D | i_epoll_event_source.h | 30 virtual int32_t GetFd() const = 0;
|
H A D | i_socket_session.h | 44 virtual int32_t GetFd() const = 0;
|
/base/sensors/sensor/utils/ipc/include/ |
H A D | stream_socket.h | 40 int32_t GetFd() const;
|
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/include/ |
H A D | ark_ohos_image_decoder_adapter.h | 44 virtual int32_t GetFd() = 0;
|
/base/msdp/device_status/utils/ipc/include/ |
H A D | stream_session.h | 56 int32_t GetFd() const
in GetFd() function in OHOS::Msdp::DeviceStatus::StreamSession
|
H A D | stream_socket.h | 52 int32_t GetFd() const
in GetFd() function in OHOS::Msdp::DeviceStatus::StreamSocket
|
/base/security/security_guard/interfaces/inner_api/common/include/ |
H A D | security_config_update_info.h | 58 int32_t GetFd() const { return fd_; }; in GetFd() function in OHOS::Security::SecurityGuard::SecurityConfigUpdateInfo
|
/base/web/webview/ohos_interface/include/ohos_adapter/ |
H A D | ohos_image_decoder_adapter.h | 47 virtual int32_t GetFd() = 0;
|