/Zephyr-latest/include/zephyr/devicetree/ |
D | port-endpoint.h | 36 #define _DT_INST_PORT_BY_ID(inst, pid) \ argument 38 (DT_CHILD(DT_INST_CHILD(inst, ports), port_##pid)), (DT_INST_CHILD(inst, port_##pid))) 87 #define DT_INST_PORT_BY_ID(inst, pid) \ argument 88 COND_CODE_1(DT_NODE_EXISTS(_DT_INST_PORT_BY_ID(inst, pid)), \ 89 (_DT_INST_PORT_BY_ID(inst, pid)), (DT_INST_CHILD(inst, port))) 102 #define _DT_INST_ENDPOINT_BY_ID(inst, pid, eid) \ argument 103 DT_CHILD(DT_INST_PORT_BY_ID(inst, pid), endpoint_##eid) 163 #define DT_INST_ENDPOINT_BY_ID(inst, pid, eid) \ argument 164 COND_CODE_1(DT_NODE_EXISTS(_DT_INST_ENDPOINT_BY_ID(inst, pid, eid)), \ 165 (_DT_INST_ENDPOINT_BY_ID(inst, pid, eid)), \ [all …]
|
/Zephyr-latest/lib/posix/options/ |
D | sched.c | 37 int sched_getparam(pid_t pid, struct sched_param *param) in sched_getparam() argument 39 ARG_UNUSED(pid); in sched_getparam() 52 int sched_getscheduler(pid_t pid) in sched_getscheduler() argument 54 ARG_UNUSED(pid); in sched_getscheduler() 66 int sched_setparam(pid_t pid, const struct sched_param *param) in sched_setparam() argument 68 ARG_UNUSED(pid); in sched_setparam() 81 int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param) in sched_setscheduler() argument 83 ARG_UNUSED(pid); in sched_setscheduler() 92 int sched_rr_get_interval(pid_t pid, struct timespec *interval) in sched_rr_get_interval() argument 94 ARG_UNUSED(pid); in sched_rr_get_interval()
|
/Zephyr-latest/include/zephyr/posix/ |
D | sched.h | 52 int sched_getparam(pid_t pid, struct sched_param *param); 53 int sched_getscheduler(pid_t pid); 55 int sched_setparam(pid_t pid, const struct sched_param *param); 56 int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param); 57 int sched_rr_get_interval(pid_t pid, struct timespec *interval);
|
/Zephyr-latest/subsys/bluetooth/host/classic/ |
D | avctp.c | 106 switch (hdr->pid) { in avctp_l2cap_recv() 112 LOG_ERR("unsupported AVCTP PID received: 0x%04x", sys_be16_to_cpu(hdr->pid)); in avctp_l2cap_recv() 116 &tid, hdr->pid); in avctp_l2cap_recv() 161 uint8_t *tid, uint16_t pid) in bt_avctp_create_pdu() argument 179 hdr->pid = pid; in bt_avctp_create_pdu()
|
D | avctp_internal.h | 33 uint16_t pid; /** Profile Identifier */ member 106 uint8_t *tid, uint16_t pid);
|
/Zephyr-latest/drivers/sensor/grow_r502a/ |
D | grow_r502a.c | 32 check_sum = (pkg_len >> 8) + (pkg_len & 0xFF) + tx_packet->pid; in transceive_packet() 89 switch (rx_packet->pid) { in r502a_validate_rx_packet() 91 LOG_DBG("Data Packet Received 0x%X", rx_packet->pid); in r502a_validate_rx_packet() 94 LOG_DBG("End of Data Packet Received 0x%X", rx_packet->pid); in r502a_validate_rx_packet() 97 LOG_DBG("Acknowledgment Packet Received 0x%X", rx_packet->pid); in r502a_validate_rx_packet() 100 LOG_ERR("Error Package ID 0x%X", rx_packet->pid); in r502a_validate_rx_packet() 108 calc_cks += rx_packet->pid + (sys_be16_to_cpu(rx_packet->len) >> 8) + in r502a_validate_rx_packet() 194 .pid = R502A_COMMAND_PACKET, in fps_set_sys_param() 227 .pid = R502A_COMMAND_PACKET, in r502a_read_sys_param() 286 .pid = R502A_COMMAND_PACKET, in fps_led_control() [all …]
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | utils.py | 44 for child in psutil.Process(proc.pid).children(recursive=True): 46 os.kill(child.pid, signal.SIGTERM)
|
/Zephyr-latest/cmake/emu/ |
D | renode.cmake | 11 --pid-file renode.pid
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | handlers.py | 62 for child in psutil.Process(proc.pid).children(recursive=True): 64 os.kill(child.pid, signal.SIGTERM) 203 pid = int(pid_file.read()) 207 os.kill(pid, signal.SIGKILL) 891 def _get_cpu_time(pid): argument 898 proc = psutil.Process(pid) 950 pid = 0 953 pid = int(pid_file.read()) 962 if pid and this_timeout > 0: 966 cpu_time = QEMUHandler._get_cpu_time(pid) [all …]
|
/Zephyr-latest/boards/st/sensortile_box/ |
D | board.cmake | 3 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/arduino/portenta_h7/ |
D | board.cmake | 3 board_runner_args(dfu-util "--pid=2341:035b" "--alt=0" "--dfuse")
|
/Zephyr-latest/include/zephyr/drivers/i3c/ |
D | devicetree.h | 38 .pid = ((uint64_t)DT_PROP_BY_IDX(node_id, reg, 1) << 32)\ 70 .pid = ((uint64_t)DT_PROP_BY_IDX(node_id, reg, 1) << 32)\
|
/Zephyr-latest/scripts/west_commands/tests/ |
D | test_blackmagicprobe.py | 185 fake_comport1.pid = 456 188 fake_comport2.pid = None 191 fake_comport3.pid = blackmagicprobe.BMP_GDB_PID 194 fake_comport4.pid = blackmagicprobe.BMP_GDB_PID
|
/Zephyr-latest/boards/st/sensortile_box_pro/ |
D | board.cmake | 3 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/96boards/carbon/ |
D | board.cmake | 4 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/96boards/aerocore2/ |
D | board.cmake | 4 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/weact/mini_stm32h743/ |
D | board.cmake | 3 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/weact/mini_stm32h7b0/ |
D | board.cmake | 4 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/weact/stm32g431_core/ |
D | board.cmake | 7 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/others/candlelightfd/ |
D | board.cmake | 4 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/scripts/net/ |
D | run-sample-tests.sh | 174 local pid="$(ps -o pid= --ppid "$1")" 176 for p in $pid 181 if [ -n "$pid" ]; then 182 echo -n "$pid "
|
/Zephyr-latest/boards/weact/stm32f405_core/ |
D | board.cmake | 3 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/others/black_f407ve/ |
D | board.cmake | 3 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/others/candlelight/ |
D | board.cmake | 4 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/boards/fysetc/ucan/ |
D | board.cmake | 4 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|