/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()
|
D | multi_process.c | 13 * a PID of zero is used to indicate that the process exists in another namespace. in getpid() 14 * PID zero is also used by the scheduler in some cases. in getpid() 15 * PID one is usually reserved for the init process. in getpid()
|
/Zephyr-latest/include/zephyr/devicetree/ |
D | port-endpoint.h | 33 * @param pid port ID 34 * @return port node associated with @p pid 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))) 84 * @param pid port ID 85 * @return port node associated with @p 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))) 98 * @param pid port ID [all …]
|
/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/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) 404 self.pid_fn = os.path.join(instance.build_dir, "renode.pid") 877 self.pid_fn = os.path.join(instance.build_dir, "qemu.pid") 891 def _get_cpu_time(pid): argument 898 proc = psutil.Process(pid) 950 pid = 0 953 pid = int(pid_file.read()) [all …]
|
/Zephyr-latest/dts/bindings/i3c/ |
D | nuvoton,npcx-i3c.yaml | 73 tgt-pid: 77 array[0]: PID[47:33] MIPI manufacturer ID. 78 PID[32] ID type selector (i'b1 ramdom value, 1'b0 vendor fixed). 79 array[1]: PID[31:0] Random value or vendor fixed value.
|
/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()
|
/Zephyr-latest/cmake/emu/ |
D | renode.cmake | 11 --pid-file renode.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/net/ |
D | run-sample-tests.sh | 170 echo "Zephyr PID $zephyr_pid" 174 local pid="$(ps -o pid= --ppid "$1")" 176 for p in $pid 181 if [ -n "$pid" ]; then 182 echo -n "$pid " 229 echo "Docker PID $docker_pid" 248 echo "Waiting for Docker PID $docker_pid..."
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_handlers.py | 217 def mock_kill_function(pid, sig): argument 218 if pid < 0: 226 mock_child1 = mock.Mock(pid=1) 227 mock_child2 = mock.Mock(pid=2) 230 mock_proc = mock.Mock(pid=0) 248 mock_child_neg1 = mock.Mock(pid=-1) 263 def mock_kill_function(pid, sig): argument 264 if pid < 0: 270 handler.pid_fn = os.path.join('dummy', 'path', 'to', 'pid.pid') 281 os.path.join('dummy', 'path', 'to', 'pid.pid') [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/scripts/west_commands/runners/ |
D | dfu.py | 49 return 'USB VID:PID of the connected device.' 57 parser.add_argument("--pid", dest='dev_id', 112 raise RuntimeError('Please specify a USB VID:PID with the ' 113 '-i/--dev-id or --pid command-line switch.')
|
/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/boards/st/sensortile_box_pro/ |
D | board.cmake | 3 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/96boards/carbon/ |
D | board.cmake | 4 board_runner_args(dfu-util "--pid=0483:df11" "--alt=0" "--dfuse")
|
/Zephyr-latest/subsys/usb/device/class/dfu/ |
D | CMakeLists.txt | 7 "Run-Time and DFU Mode VID and PID are equal, which can lead to incorrect \
|
/Zephyr-latest/dts/bindings/sensor/ |
D | istentek,ist8310.yaml | 6 https://isentek.com/products_view.php?PID=10&sn=13
|
/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/fysetc/ucan/ |
D | board.cmake | 4 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")
|