/Zephyr-latest/scripts/native_simulator/common/src/ |
D | nsi_hw_scheduler.c | 63 struct sigaction act; in nsi_hws_set_sig_handler() local 65 act.sa_handler = nsi_hws_signal_end_handler; in nsi_hws_set_sig_handler() 66 NSI_SAFE_CALL(sigemptyset(&act.sa_mask)); in nsi_hws_set_sig_handler() 68 act.sa_flags = SA_RESETHAND; in nsi_hws_set_sig_handler() 70 NSI_SAFE_CALL(sigaction(SIGTERM, &act, NULL)); in nsi_hws_set_sig_handler() 71 NSI_SAFE_CALL(sigaction(SIGINT, &act, NULL)); in nsi_hws_set_sig_handler()
|
/Zephyr-latest/boards/native/native_posix/ |
D | hw_models_top.c | 79 struct sigaction act; in hwm_set_sig_handler() local 81 act.sa_handler = hwm_signal_end_handler; in hwm_set_sig_handler() 82 PC_SAFE_CALL(sigemptyset(&act.sa_mask)); in hwm_set_sig_handler() 84 act.sa_flags = SA_RESETHAND; in hwm_set_sig_handler() 86 PC_SAFE_CALL(sigaction(SIGTERM, &act, NULL)); in hwm_set_sig_handler() 87 PC_SAFE_CALL(sigaction(SIGINT, &act, NULL)); in hwm_set_sig_handler()
|
/Zephyr-latest/include/zephyr/arch/arc/v2/ |
D | arcv2_irq_unit.h | 189 uint32_t act = z_arc_v2_aux_reg_read(_ARC_V2_AUX_IRQ_ACT); in z_arc_v2_irq_unit_is_in_isr() local 196 return ((act & 0xffff) != 0U); in z_arc_v2_irq_unit_is_in_isr()
|
/Zephyr-latest/drivers/sensor/adi/adxl372/ |
D | adxl372.c | 32 const struct adxl372_activity_threshold *act) in adxl372_set_activity_threshold() argument 38 ret = data->hw_tf->write_reg(dev, axis_reg_h++, act->thresh >> 3); in adxl372_set_activity_threshold() 47 val = (act->thresh << 5) | (act->referenced << 1) | act->enable; in adxl372_set_activity_threshold() 50 val = (act->thresh << 5) | act->enable; in adxl372_set_activity_threshold() 65 const struct adxl372_activity_threshold *act) in adxl372_set_activity_threshold_xyz() argument 70 ret = adxl372_set_activity_threshold(dev, axis_reg_h, act); in adxl372_set_activity_threshold_xyz()
|
/Zephyr-latest/lib/posix/options/ |
D | signal.c | 150 int sigaction(int sig, const struct sigaction *ZRESTRICT act, struct sigaction *ZRESTRICT oact) in sigaction() argument 153 ARG_UNUSED(act); in sigaction()
|
/Zephyr-latest/drivers/dma/ |
D | dma_sam0.c | 363 uint32_t act; in dma_sam0_get_status() local 369 act = DMA_REGS->ACTIVE.reg; in dma_sam0_get_status() 370 if ((act & DMAC_ACTIVE_ABUSY) && in dma_sam0_get_status() 371 ((act & DMAC_ACTIVE_ID_Msk) >> DMAC_ACTIVE_ID_Pos) == channel) { in dma_sam0_get_status() 373 stat->pending_length = (act & DMAC_ACTIVE_BTCNT_Msk) >> in dma_sam0_get_status()
|
D | Kconfig.nxp_sof_host_dma | 32 needs to act as if it controls a DMA engine.
|
/Zephyr-latest/boards/raspberrypi/rpi_4b/ |
D | rpi_4b.dts | 31 led_act: led-act {
|
/Zephyr-latest/boards/raspberrypi/rpi_5/ |
D | rpi_5.dts | 31 led_act: led-act {
|
/Zephyr-latest/drivers/usb/udc/ |
D | udc_virtual.c | 483 enum uvb_device_act act; in udc_vrt_enable() local 487 act = UVB_DEVICE_ACT_FS; in udc_vrt_enable() 490 act = UVB_DEVICE_ACT_HS; in udc_vrt_enable() 493 act = UVB_DEVICE_ACT_SS; in udc_vrt_enable() 497 act = UVB_DEVICE_ACT_LS; in udc_vrt_enable() 502 INT_TO_POINTER(act)); in udc_vrt_enable()
|
/Zephyr-latest/subsys/net/l2/dummy/any/ |
D | Kconfig | 11 on top of it that can act as a network packet capture handlers.
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | ethernet_mgmt.rst | 27 The user application can monitor these events if it needs to act
|
D | gptp.rst | 26 interfaces (also defined as "ports" in the standard) and thus act as
|
/Zephyr-latest/include/zephyr/bluetooth/mesh/ |
D | main.h | 186 int (*output_number)(bt_mesh_output_action_t act, uint32_t num); 213 int (*input)(bt_mesh_input_action_t act, uint8_t size);
|
/Zephyr-latest/drivers/sensor/grow_r502a/ |
D | Kconfig | 68 Enable control of vin-gpios and act-gpios.
|
/Zephyr-latest/include/zephyr/posix/ |
D | signal.h | 126 int sigaction(int sig, const struct sigaction *ZRESTRICT act, struct sigaction *ZRESTRICT oact);
|
/Zephyr-latest/samples/drivers/i2c/rtio_loopback/ |
D | README.rst | 33 I2C controller will act as the controller, and which as the peripheral, note
|
/Zephyr-latest/samples/subsys/usb/hid-mouse/ |
D | README.rst | 97 When you press the button on your board, it will act as if the left 110 If your board has more than one button, they will act as right mouse button,
|
/Zephyr-latest/samples/bluetooth/bap_broadcast_assistant/ |
D | README.rst | 36 The application will act as a broadcast assistant with optionally preconfigured
|
/Zephyr-latest/tests/subsys/zbus/integration/src/ |
D | main.c | 164 struct action_msg *act = (struct action_msg *)zbus_chan_msg(&start_measurement_chan); in context_reset() local 166 act->status = false; in context_reset()
|
/Zephyr-latest/samples/net/openthread/coprocessor/ |
D | README.rst | 12 The Co-Processor can act in two variants: Network Co-Processor (NCP) and Radio
|
/Zephyr-latest/drivers/usb/uhc/ |
D | uhc_virtual.c | 368 const enum uvb_device_act act) in vrt_device_act() argument 372 switch (act) { in vrt_device_act()
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | brg_cfg.rst | 11 The Bluetooth Mesh Subnet Bridge feature makes it possible for selected nodes in the network to act 28 A node implementing the Bridge Configuration Client model can act as a *Configuration Manager* for
|
/Zephyr-latest/boards/up-bridge-the-gap/up_squared/doc/ |
D | index.rst | 43 ``HAT Configurations``. When a corresponding pin is set to act as
|
/Zephyr-latest/drivers/regulator/ |
D | regulator_npm2100.c | 480 static int set_ldosw_gpio_mode(const struct device *dev, uint8_t inact, uint8_t act, uint8_t ldsw) in set_ldosw_gpio_mode() argument 485 ret = i2c_reg_update_byte_dt(&config->i2c, LDOSW_GPIO, LDOSW_GPIO_PINACT_MASK, inact | act); in set_ldosw_gpio_mode()
|