Home
last modified time | relevance | path

Searched refs:pid (Results 51 – 75 of 87) sorted by relevance

1234

/Zephyr-latest/subsys/usb/device_next/
Dusbd_shell.c308 uint16_t pid; in cmd_device_pid() local
311 pid = strtol(argv[1], NULL, 16); in cmd_device_pid()
312 ret = usbd_device_set_pid(my_uds_ctx, pid); in cmd_device_pid()
314 shell_error(sh, "dev: failed to set device idProduct to %x", pid); in cmd_device_pid()
565 SHELL_CMD_ARG(pid, NULL,
/Zephyr-latest/include/zephyr/drivers/i3c/
Dtarget_device.h60 uint64_t pid; member
Dccc.h517 uint8_t pid[6]; member
1416 struct i3c_ccc_getpid *pid);
/Zephyr-latest/subsys/bluetooth/audio/
Dmcc.c143 uint8_t *pid = (uint8_t *)data; in mcc_read_icon_obj_id_cb() local
150 } else if ((!pid) || (length != BT_OTS_OBJ_ID_SIZE)) { in mcc_read_icon_obj_id_cb()
153 LOG_HEXDUMP_DBG(pid, length, "Icon Object ID"); in mcc_read_icon_obj_id_cb()
154 id = sys_get_le48(pid); in mcc_read_icon_obj_id_cb()
443 uint8_t *pid = (uint8_t *)data; in mcc_read_segments_obj_id_cb() local
449 } else if ((!pid) || (length != BT_OTS_OBJ_ID_SIZE)) { in mcc_read_segments_obj_id_cb()
453 LOG_HEXDUMP_DBG(pid, length, "Segments Object ID"); in mcc_read_segments_obj_id_cb()
454 id = sys_get_le48(pid); in mcc_read_segments_obj_id_cb()
473 uint8_t *pid = (uint8_t *)data; in mcc_current_track_obj_id_cb() local
478 } else if ((!pid) || (length != BT_OTS_OBJ_ID_SIZE)) { in mcc_current_track_obj_id_cb()
[all …]
Dbap_iso.c192 path->pid = codec_cfg->path_id; in bt_bap_iso_configure_data_path()
/Zephyr-latest/drivers/sensor/grow_r502a/
Dgrow_r502a.h184 uint8_t pid; member
/Zephyr-latest/include/zephyr/posix/
Dsignal.h122 int kill(pid_t pid, int sig);
/Zephyr-latest/drivers/i3c/
Di3c_ccc.c65 struct i3c_ccc_getpid *pid) in i3c_ccc_do_getpid() argument
72 __ASSERT_NO_MSG(pid != NULL); in i3c_ccc_do_getpid()
76 ccc_tgt_payload.data = &pid->pid[0]; in i3c_ccc_do_getpid()
77 ccc_tgt_payload.data_len = sizeof(pid->pid); in i3c_ccc_do_getpid()
Di3c_cdns.c380 #define DEV_ID_RR1_PID_MSB(pid) (pid) argument
383 #define DEV_ID_RR2_PID_LSB(pid) ((pid) << 16) argument
1559 uint64_t pid = ((uint64_t)dev_id_rr1 << 16) + (dev_id_rr2 >> 16); in cdns_i3c_do_daa() local
1564 const struct i3c_device_id i3c_id = I3C_DEVICE_ID(pid); in cdns_i3c_do_daa()
1570 dev->name, pid, dyn_addr); in cdns_i3c_do_daa()
1579 dev->name, pid, dyn_addr); in cdns_i3c_do_daa()
2003 uint32_t dev_id_rr1 = DEV_ID_RR1_PID_MSB((desc->pid & 0xFFFFFFFF0000) >> 16); in cdns_i3c_attach_device()
2004 uint32_t dev_id_rr2 = DEV_ID_RR2_PID_LSB(desc->pid & 0xFFFF); in cdns_i3c_attach_device()
2031 uint32_t dev_id_rr1 = DEV_ID_RR1_PID_MSB((desc->pid & 0xFFFFFFFF0000) >> 16); in cdns_i3c_reattach_device()
2032 uint32_t dev_id_rr2 = DEV_ID_RR2_PID_LSB(desc->pid & 0xFFFF) | DEV_ID_RR2_BCR(desc->bcr) | in cdns_i3c_reattach_device()
Di3c_stm32.c148 uint64_t pid; /* Current DAA target PID */ member
1597 bcr = (data->pid >> 8) & 0xFF; in i3c_stm32_event_isr_tx()
1598 dcr = data->pid & 0xFF; in i3c_stm32_event_isr_tx()
1599 data->pid >>= 16; in i3c_stm32_event_isr_tx()
1603 &config->drv_cfg.dev_list, data->pid, false, in i3c_stm32_event_isr_tx()
1681 data->pid <<= 8; in i3c_stm32_event_isr_rx()
1682 data->pid |= LL_I3C_ReceiveData8(i3c); in i3c_stm32_event_isr_rx()
Di3c_shell.c213 desc->dev->name, (uint64_t)desc->pid, in cmd_i3c_info()
259 desc->dev->name, (uint64_t)desc->pid, desc->static_addr, in cmd_i3c_info()
782 struct i3c_ccc_getpid pid; in cmd_i3c_ccc_getpid() local
790 ret = i3c_ccc_do_getpid(desc, &pid); in cmd_i3c_ccc_getpid()
796 shell_print(sh, "PID: 0x%012llx", sys_get_be48(pid.pid)); in cmd_i3c_ccc_getpid()
/Zephyr-latest/cmake/emu/
Dqemu.cmake52 list(APPEND QEMU_FLAGS qemu\${QEMU_INSTANCE}.pid)
54 list(APPEND QEMU_FLAGS qemu${QEMU_INSTANCE}.pid)
142 -pidfile qemu-node${QEMU_PIPE_ID}.pid
178 -pidfile qemu-${target}.pid
182 # appending the instance name to the pid file we can easily run more
/Zephyr-latest/drivers/video/
Dov7725.c563 uint8_t pid, ver; in ov7725_init() local
579 ret = ov7725_read_reg(&cfg->i2c, OV7725_PID, &pid); in ov7725_init()
591 if (OV7725_REVISION != (((uint32_t)pid << 8U) | (uint32_t)ver)) { in ov7725_init()
/Zephyr-latest/tests/net/lib/lwm2m/interop/
DREADME.md85 start-stop-daemon --make-pidfile --pidfile log/leshan.pid --chdir $(pwd) --background --start \
88 start-stop-daemon --make-pidfile --pidfile log/leshan_bs.pid --chdir $(pwd) --background --start \
96 start-stop-daemon --remove-pidfile --pidfile log/leshan.pid --stop
97 start-stop-daemon --remove-pidfile --pidfile log/leshan_bs.pid --stop
/Zephyr-latest/subsys/net/lib/ptp/
Dport.c48 uint8_t *pid = port_id->clk_id.id; in port_id_str() local
51 pid[0], in port_id_str()
52 pid[1], in port_id_str()
53 pid[2], in port_id_str()
54 pid[3], in port_id_str()
55 pid[4], in port_id_str()
56 pid[5], in port_id_str()
57 pid[6], in port_id_str()
58 pid[7], in port_id_str()
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_suspend.c124 .pid = 0xaaaa,
143 .pid = 0xb000,
Dtest_proxy_sol.c60 .pid = 0xbbbb,
/Zephyr-latest/samples/boards/nordic/coresight_stm/pytest/
Dtest_stm.py100 for child in psutil.Process(proc.pid).children(recursive=True):
/Zephyr-latest/snippets/xen_dom0/
DREADME.rst47 -serial chardev:con -mon chardev=con,mode=readline -pidfile qemu.pid \
/Zephyr-latest/scripts/west_commands/runners/
Dblackmagicprobe.py76 if port.vid == BMP_GDB_VID and port.pid == BMP_GDB_PID:
/Zephyr-latest/tests/boards/nrf/coresight_stm/pytest/
Dtest_stm.py122 for child in psutil.Process(proc.pid).children(recursive=True):
/Zephyr-latest/tests/bsim/bluetooth/ll/bis/src/
Dtest_bis.c75 .pid = BT_HCI_DATAPATH_ID_HCI
911 iso_path_rx.pid = BT_HCI_DATAPATH_ID_HCI; in test_iso_recv_main()
1131 iso_path_rx.pid = BT_HCI_DATAPATH_ID_VS; in test_iso_recv_vs_dp_main()
/Zephyr-latest/include/zephyr/bluetooth/
Diso.h297 uint8_t pid; member
/Zephyr-latest/soc/intel/intel_adsp/tools/
Dremote-fw-service.py220 log.error("Sending %d SIGKILL", proc.pid)
/Zephyr-latest/scripts/tests/twister/
Dtest_environment.py522 pid=0,

1234