Home
last modified time | relevance | path

Searched refs:act (Results 1 – 25 of 46) sorted by relevance

12

/Zephyr-latest/scripts/native_simulator/common/src/
Dnsi_hw_scheduler.c63 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/
Dhw_models_top.c79 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/
Darcv2_irq_unit.h189 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/
Dadxl372.c32 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/
Dsignal.c150 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/
Ddma_sam0.c363 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()
DKconfig.nxp_sof_host_dma32 needs to act as if it controls a DMA engine.
/Zephyr-latest/boards/raspberrypi/rpi_4b/
Drpi_4b.dts31 led_act: led-act {
/Zephyr-latest/boards/raspberrypi/rpi_5/
Drpi_5.dts31 led_act: led-act {
/Zephyr-latest/drivers/usb/udc/
Dudc_virtual.c483 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/
DKconfig11 on top of it that can act as a network packet capture handlers.
/Zephyr-latest/doc/connectivity/networking/api/
Dethernet_mgmt.rst27 The user application can monitor these events if it needs to act
Dgptp.rst26 interfaces (also defined as "ports" in the standard) and thus act as
/Zephyr-latest/include/zephyr/bluetooth/mesh/
Dmain.h186 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/
DKconfig68 Enable control of vin-gpios and act-gpios.
/Zephyr-latest/include/zephyr/posix/
Dsignal.h126 int sigaction(int sig, const struct sigaction *ZRESTRICT act, struct sigaction *ZRESTRICT oact);
/Zephyr-latest/samples/drivers/i2c/rtio_loopback/
DREADME.rst33 I2C controller will act as the controller, and which as the peripheral, note
/Zephyr-latest/samples/subsys/usb/hid-mouse/
DREADME.rst97 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/
DREADME.rst36 The application will act as a broadcast assistant with optionally preconfigured
/Zephyr-latest/tests/subsys/zbus/integration/src/
Dmain.c164 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/
DREADME.rst12 The Co-Processor can act in two variants: Network Co-Processor (NCP) and Radio
/Zephyr-latest/drivers/usb/uhc/
Duhc_virtual.c368 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/
Dbrg_cfg.rst11 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/
Dindex.rst43 ``HAT Configurations``. When a corresponding pin is set to act as
/Zephyr-latest/drivers/regulator/
Dregulator_npm2100.c480 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()

12