/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_signal/src/ |
H A D | common.rs | 55 pub(crate) struct Signal { struct 65 impl Signal { impl 69 Ok(Signal { in new() 98 let signal = Signal::new(sig_num, act)?; in register_action() 137 use crate::common::Signal; 182 Signal::register_action(libc::SIGINT, move |_| { in ut_signal_register() 189 Signal::register_action(libc::SIGTERM, move |_| { in ut_signal_register() 204 let res = Signal::deregister_action(libc::SIGTERM); in ut_signal_register() 207 Signal::deregister_action(libc::SIGINT).unwrap(); in ut_signal_register() 219 let res = Signal::deregister_hook(libc::SIGTERM); in ut_signal_register() [all …]
|
H A D | lib.rs | 76 common::Signal::register_action(sig_num, move |_| handler()) in register_signal_action() 98 common::Signal::deregister_action(sig_num) in deregister_signal_action() 113 common::Signal::deregister_hook(sig_num) in deregister_signal_hook()
|
H A D | sig_map.rs | 20 use crate::common::{SigAction, Signal}; 24 pub(crate) data: SpinningRwLock<HashMap<c_int, Signal>>,
|
H A D | windows.rs | 20 use crate::common::{siginfo_t, SigAction, Signal}; 36 impl Signal { impl
|
H A D | unix.rs | 20 use crate::common::{SigAction, Signal}; 38 impl Signal { impl
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_2/foo/ril/v1_2/ |
H A D | Types.idl | 62 /** Reference Signal Received Power -140~-44, dBm */ 76 /** Reference Signal Received Power -140~-44, dBm */ 79 /** Signal To Interference Plus Noise Ratio. */ 99 /** Reference Signal Received Power -140~-44, dBm */ 102 /** Signal To Interference Plus Noise Ratio. */ 143 * Signal received power, which ranges from -140 to -44 148 * Signal received quality, which ranges from -19 to -3 250 * Signal received power, which ranges from -140 to -44 255 * Signal received quality, which ranges from -19 to -3
|
/ohos5.0/drivers/interface/ril/v1_2/ |
H A D | Types.idl | 62 /** Reference Signal Received Power -140~-44, dBm */ 76 /** Reference Signal Received Power -140~-44, dBm */ 79 /** Signal To Interference Plus Noise Ratio. */ 99 /** Reference Signal Received Power -140~-44, dBm */ 102 /** Signal To Interference Plus Noise Ratio. */ 143 * Signal received power, which ranges from -140 to -44 148 * Signal received quality, which ranges from -19 to -3 250 * Signal received power, which ranges from -140 to -44 255 * Signal received quality, which ranges from -19 to -3
|
/ohos5.0/foundation/ai/ai_engine/services/common/platform/semaphore/source/ |
H A D | semaphore.cpp | 54 inline void Signal() in Signal() function in OHOS::AI::Semaphore 92 void ISemaphore::Signal() in Signal() function in OHOS::AI::ISemaphore 94 SemaphoreCast::Ref(this).Signal(); in Signal()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/signal/windows/ |
H A D | mod.rs | 24 use crate::signal::Signal; 162 pub fn signal(kind: SignalKind) -> io::Result<Signal> { in signal() argument 165 Ok(Signal { in signal()
|
/ohos5.0/foundation/ai/ai_engine/services/common/platform/event/source/ |
H A D | event.cpp | 52 inline bool Signal() in Signal() function in OHOS::AI::Event 107 bool IEvent::Signal() in Signal() function in OHOS::AI::IEvent 109 return EventCast::Ref(this).Signal(); in Signal()
|
/ohos5.0/docs/en/device-dev/kernel/ |
H A D | kernel-small-basic-trans-user-signal.md | 1 # Signal chapter 6 Signal is a common asynchronous communication mechanism between processes. It uses software-simulat… 13 **Table 1** Signal APIs (user-mode APIs) 32 > - Signal 31 is used to register the handling entry of the process callback. Repeated registrati… 47 > **Sending a Signal**
|
/ohos5.0/docs/en/application-dev/dfx/ |
H A D | hiappevent-watcher-crash-events.md | 41 | signal | object | Signal information. For details, see **signal**.| 50 | signo | number | Signal value (**si_signo** in **siginfo_t**)| 52 | address | string | Signal error address (**si_address** attribute in **siginfo_t**)| 54 [Signal Value & Level-2 Classification of Signal Values](cppcrash-guidelines.md)
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/signal/ |
H A D | mod.rs | 71 pub struct Signal { struct 75 impl Signal { impl
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/signal/unix/ |
H A D | mod.rs | 27 use crate::signal::Signal; 401 pub fn signal(kind: SignalKind) -> io::Result<Signal> { in signal() argument 405 Ok(Signal { inner: receiver }) in signal()
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_5.0.0.39/ |
H A D | changelogs-arkcompiler.md | 11 开发者源码中存在超大函数或者超大类,在一些罕见场景下会编译出错误的字节码文件导致运行时crash或者运行出错,crash的错误信息为 Reason:Signal:SIGSEGV 或是 Segment…
|
/ohos5.0/foundation/ai/ai_engine/services/common/platform/semaphore/include/ |
H A D | i_semaphore.h | 49 void Signal();
|
/ohos5.0/foundation/ai/ai_engine/services/common/platform/event/include/ |
H A D | i_event.h | 47 bool Signal();
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/ |
H A D | child.rs | 26 use crate::signal::{signal, Signal, SignalKind}; 30 signal: Signal,
|
/ohos5.0/drivers/interface/wlan/v1_1/ |
H A D | WlanTypes.idl | 154 /** Signal quality. */ 156 /** Signal strength. */ 185 /** Signal quality. */ 187 /** Signal strength. */
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_1/foo/wlan/v1_1/ |
H A D | WlanTypes.idl | 154 /** Signal quality. */ 156 /** Signal strength. */ 185 /** Signal quality. */ 187 /** Signal strength. */
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_2/foo/wlan/v1_1/ |
H A D | WlanTypes.idl | 154 /** Signal quality. */ 156 /** Signal strength. */ 185 /** Signal quality. */ 187 /** Signal strength. */
|
/ohos5.0/foundation/ai/ai_engine/test/common/event/ |
H A D | event_test.cpp | 59 ASSERT_TRUE(g_event->Signal());
|
/ohos5.0/foundation/ai/ai_engine/test/common/semaphore/ |
H A D | semaphore_test.cpp | 63 semaphoreExample->Signal();
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_1/foo/ril/v1_1/ |
H A D | Types.idl | 2110 * Signal received strength, which ranges from 0 to 99 2135 * Signal received strength, which ranges from 0 to 99 2180 * Signal to interference plus noise ratio 2447 * Signal received power, which ranges from -140 to -44 2452 * Signal received quality, which ranges from -19 to -3 2719 * Signal received quality, which ranges from 0 to 7 2754 * Signal received power, which ranges from -140 to -44 2759 * Signal received quality, which ranges from -19 to -3 2799 * Signal received strength, which ranges from -19 to -3 3008 * Signal received power, which ranges from -140 to -44 [all …]
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_2/foo/ril/v1_1/ |
H A D | Types.idl | 2110 * Signal received strength, which ranges from 0 to 99 2135 * Signal received strength, which ranges from 0 to 99 2180 * Signal to interference plus noise ratio 2447 * Signal received power, which ranges from -140 to -44 2452 * Signal received quality, which ranges from -19 to -3 2719 * Signal received quality, which ranges from 0 to 7 2754 * Signal received power, which ranges from -140 to -44 2759 * Signal received quality, which ranges from -19 to -3 2799 * Signal received strength, which ranges from -19 to -3 3008 * Signal received power, which ranges from -140 to -44 [all …]
|