Home
last modified time | relevance | path

Searched refs:signals (Results 1 – 25 of 82) sorted by relevance

1234

/ohos5.0/base/telephony/core_service/services/network_search/src/
H A Dsignal_info.cpp149 std::vector<sptr<SignalInformation>> signals; in ProcessSignalIntensity() local
150 GetSignalInfoList(signals); in ProcessSignalIntensity()
156 if (signals.size() != 0) { in ProcessSignalIntensity()
157 if (signals[0] == nullptr) { in ProcessSignalIntensity()
161 level = signals[0]->GetSignalLevel(); in ProcessSignalIntensity()
179 signals.emplace_back(cur_.lte.NewInstance()); in GetSignalInfoList()
182 signals.emplace_back(cur_.nr.NewInstance()); in GetSignalInfoList()
185 signals.emplace_back(cur_.cdma.NewInstance()); in GetSignalInfoList()
188 signals.emplace_back(cur_.tdScdma.NewInstance()); in GetSignalInfoList()
191 signals.emplace_back(cur_.wcdma.NewInstance()); in GetSignalInfoList()
[all …]
H A Dnetwork_search_handler.cpp952 void NetworkSearchHandler::GetSignalInfo(std::vector<sptr<SignalInformation>> &signals) in GetSignalInfo() argument
955 signalInfo_->GetSignalInfoList(signals); in GetSignalInfo()
1499 std::vector<sptr<SignalInformation>> signals; in ClearSignalAndCellInfoList() local
1500 signalInfo_->GetSignalInfoList(signals); in ClearSignalAndCellInfoList()
1502 TELEPHONY_EXT_WRAPPER.sortSignalInfoListExt_(slotId_, signals); in ClearSignalAndCellInfoList()
1504 … DelayedSingleton<NetworkSearchNotify>::GetInstance()->NotifySignalInfoUpdated(slotId_, signals); in ClearSignalAndCellInfoList()
/ohos5.0/base/telephony/core_service/services/core/src/
H A Dcore_service_dump_helper.cpp83 std::vector<sptr<SignalInformation>> signals; in ShowCoreServiceInfo() local
84 DelayedSingleton<CoreService>::GetInstance()->GetSignalInfoList(i, signals); in ShowCoreServiceInfo()
85 if (signals.size() != 0 && signals[0] != nullptr) { in ShowCoreServiceInfo()
86 result.append(std::to_string(signals[0]->GetSignalLevel())); in ShowCoreServiceInfo()
/ohos5.0/docs/en/application-dev/reference/apis-input-kit/
H A Djs-apis-infraredemitter-sys.md3 The **infraredEmitter** module generates IR signals of the specified frequency and size, and querie…
21 Generates IR signals at the specified frequency and level.
58 Queries the frequency range of IR signals supported by the mobile phone.
92 Defines the frequency range of IR signals.
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/rfcomm/
H A Drfcomm_channel.c924 modemStatus.signals = MSC_RTC | MSC_RTR | MSC_DV; in RfcommSetFlcToPeer()
927 modemStatus.signals = MSC_FC | MSC_RTC | MSC_RTR | MSC_DV; in RfcommSetFlcToPeer()
957 status.fc = (modemSts->signals & MSC_FC) ? 1 : 0; in RfcommSetPeerModemStatus()
958 status.rtc = (modemSts->signals & MSC_RTC) ? 1 : 0; in RfcommSetPeerModemStatus()
959 status.rtr = (modemSts->signals & MSC_RTR) ? 1 : 0; in RfcommSetPeerModemStatus()
960 status.ic = (modemSts->signals & MSC_IC) ? 1 : 0; in RfcommSetPeerModemStatus()
961 status.dv = (modemSts->signals & MSC_DV) ? 1 : 0; in RfcommSetPeerModemStatus()
974 channel->peerChannelFc = (modemSts->signals & MSC_FC) ? true : false; in RfcommSetPeerModemStatus()
H A Drfcomm_channel_fsm.c256 modemStatus.signals = MSC_RTC | MSC_RTR | MSC_DV; in RfcommRecvUa()
781 modemSts.signals = info.msc.signal; in RfcommRecvMscReq()
797 modemSts.signals = MSC_RTC | MSC_RTR | MSC_DV; in RfcommRecvMscReq()
1112 status.signals = modemSts->fc ? MSC_FC : 0; in RfcommSendMscReq()
1113 status.signals |= modemSts->rtc ? MSC_RTC : 0; in RfcommSendMscReq()
1114 status.signals |= modemSts->rtr ? MSC_RTR : 0; in RfcommSendMscReq()
1115 status.signals |= modemSts->ic ? MSC_IC : 0; in RfcommSendMscReq()
1116 status.signals |= modemSts->dv ? MSC_DV : 0; in RfcommSendMscReq()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_signal/src/
H A Dunix.rs59 let signals = sig_map.data.read(); in sig_handler() localVariable
61 if let Some(signal) = signals.get(&sig_num) { in sig_handler()
/ohos5.0/docs/en/device-dev/driver/
H A Ddriver-peripherals-lcd-des.md49 …TTL level signals are generated by TTL devices, which are a major type of digital integrated circu…
51signals. It transmits data signals, clock signals, and control signals (such as line synchronizati…
H A Ddriver-platform-adc-des.md7 An analog-to-digital converter (ADC) converts analog signals into digital signals for storage and c…
/ohos5.0/docs/en/application-dev/tools/
H A Ddevicedebug-tool.md4 …cedebug provides the capability of sending signals to applications for debugging purposes. Current…
/ohos5.0/docs/en/application-dev/reference/apis-arkgraphics2d/
H A Dnative__vsync_8h.md44signals with future timestamps. These frames are stored in a frame buffer queue. This helps DVSync…
H A D_native_vsync.md51signals with future timestamps. These frames are stored in a frame buffer queue. This helps DVSync…
152 DVSync drives the early rendering of upcoming animation frames by sending VSync signals with future…
156 After DVSync is enabled, you must correctly respond to the early VSync signals and request the subs…
160 …attempt to enable it will not take effect, and the application still receives normal VSync signals.
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/
H A Dhfp_ag_system_interface.cpp334 std::vector<sptr<SignalInformation>> signals; in GetSignalStrength() local
335 …if (CoreServiceClient::GetInstance().GetSignalInfoList(slotId_, signals) == 0 && !signals.empty())… in GetSignalStrength()
336 signalStrength_ = signals[0]->GetSignalLevel(); in GetSignalStrength()
397 std::vector<sptr<SignalInformation>> signals; in QueryAgIndicator() local
398 …if (CoreServiceClient::GetInstance().GetSignalInfoList(slotId_, signals) == 0 && !signals.empty())… in QueryAgIndicator()
399 signalStrength_ = signals[0]->GetSignalLevel(); in QueryAgIndicator()
/ohos5.0/docs/en/application-dev/graphics/
H A Dnative-vsync-guidelines.md5 The NativeVSync module is used to obtain virtual synchronization (VSync) signals from the system. I…
67 …// Destroy the OH_NativeVSync instance when the application does not need to receive VSync signals.
/ohos5.0/foundation/multimedia/audio_framework/
H A DREADME.md16 …Sampling is a process to obtain discrete-time signals by extracting samples from analog signals in…
24 …Channels refer to different spatial positions where independent audio signals are recorded or play…
32 … method used to digitally represent sampled analog signals. It converts continuous-time analog sig…
57 …current repository to convert audio data into audible analog signals, play the audio signals using…
/ohos5.0/docs/en/device-dev/kernel/
H A Dkernel-small-basic-trans-user-signal.md6 …cation mechanism between processes. It uses software-simulated interrupt signals. When a process n…
52 > - The **SIGSTOP**, **SIGKILL**, and **SIGCONT** signals cannot be shielded.
H A Dkernel-small-apx-library.md138 /* Broadcast signals on the cond variable. */
274 - The default behavior for signals does not include **STOP**, **CONTINUE**, or **COREDUMP**.
280 - Only signals 1 to 30 are supported. The callback is invoked only once even if the same signal is …
/ohos5.0/foundation/arkui/ui_lite/tools/qt/simulator/drivers/display/
H A Dmonitor.h41 signals:
/ohos5.0/base/telephony/core_service/services/telephony_ext_wrapper/include/
H A Dtelephony_ext_wrapper.h67 std::vector<sptr<OHOS::Telephony::SignalInformation>> &signals);
98 int32_t slotId, std::vector<sptr<OHOS::Telephony::SignalInformation>> &signals);
/ohos5.0/docs/en/device-dev/subsystems/
H A Dsubsys-multimedia-video-overview.md30 …e is the number of samples per second taken from continuous signals to form discrete signals. The …
/ohos5.0/base/sensors/miscdevice_lite/
H A DREADME.md8 Misc devices, including vibrators and LED lights, are used to send signals externally. You can call…
/ohos5.0/base/telephony/core_service/services/network_search/include/
H A Dsignal_info.h31 void GetSignalInfoList(std::vector<sptr<SignalInformation>> &signals);
/ohos5.0/foundation/arkui/ui_lite/test/autotest/include/
H A Dtcp_socket_manager.h52 signals:
/ohos5.0/docs/en/application-dev/media/media/
H A Dmedia-kit-intro.md47 … MP3, MKV, and MPEG-TS) into renderable images and hearable audio analog signals, and plays the au…
143 …es audio assets (such as MP3, M4A, and WAV) into audio analog signals and plays the signals throug…
181 The AVRecorder captures audio signals, receives video signals, encodes the audio and video signals,…
241 The AVScreenCapture captures audio and video signals and saves screen data to files by means of enc…
/ohos5.0/base/telephony/core_service/services/network_search/test/
H A Dtest.cpp244 std::vector<sptr<SignalInformation>> signals; in TestGetSignalInfoList() local
245 g_telephonyService->GetSignalInfoList(InputSlotId(), signals); in TestGetSignalInfoList()
247 for (const auto &v : signals) { in TestGetSignalInfoList()
271 …TELEPHONY_LOGI("TelephonyTestService Remote TestGetSignalInfoList size:%{public}zu", signals.size(… in TestGetSignalInfoList()

1234