/Zephyr-latest/samples/kernel/metairq_dispatch/ |
D | README.rst | 87 Note: The 'real' values may be significantly higher than corresponding 'proc' values 96 II: M0 T0 mirq 4478 disp 7478 proc 24336 real 24613 97 I: M8 T0 mirq 4273 disp 86983 proc 9824 real 16753 98 I: M10 T0 mirq 4273 disp 495455 proc 21177 real 28273 99 I: M11 T0 mirq 4273 disp 981565 proc 48337 real 48918 100 I: M14 T0 mirq 4273 disp 1403627 proc 7079 real 7690 101 I: M17 T0 mirq 4273 disp 1810028 proc 42143 real 42925 102 I: M19 T0 mirq 4273 disp 2369217 proc 42471 real 42925 103 I: M20 T0 mirq 4273 disp 2940429 proc 30427 real 30775 104 I: M21 T0 mirq 4273 disp 3524151 proc 35871 real 36850 [all …]
|
/Zephyr-latest/scripts/footprint/ |
D | compare_footprint | 44 proc = subprocess.Popen('git rev-parse --is-inside-work-tree', 47 if proc.wait() != 0: 86 proc = subprocess.Popen('git rev-parse %s' % commit, stdout=subprocess.PIPE, 88 if proc.wait() == 0: 89 commit_id = proc.stdout.read().decode("utf-8").strip() 104 proc = subprocess.Popen('git diff --quiet', stdout=subprocess.PIPE, 106 if proc.wait() != 0: 109 proc = subprocess.Popen('git reset %s --hard' % commit, 113 if proc.wait() == 0: 116 logger.error(proc.stdout.read()) [all …]
|
/Zephyr-latest/subsys/bluetooth/services/ots/ |
D | ots_oacp.c | 54 struct bt_gatt_ots_oacp_proc *proc) in oacp_create_proc_validate() argument 60 .size = proc->create_params.size, in oacp_create_proc_validate() 61 .type = proc->create_params.type, in oacp_create_proc_validate() 126 struct bt_gatt_ots_oacp_proc *proc) in oacp_delete_proc_validate() argument 169 struct bt_gatt_ots_oacp_proc *proc, in oacp_checksum_proc_validate() argument 172 struct bt_gatt_ots_oacp_cs_calc_params *params = &proc->cs_calc_params; in oacp_checksum_proc_validate() 217 const struct bt_gatt_ots_oacp_proc *proc) in oacp_read_proc_validate() argument 219 const struct bt_gatt_ots_oacp_read_params *params = &proc->read_params; in oacp_read_proc_validate() 247 memcpy(&ots->cur_obj->state.read_op.oacp_params, &proc->read_params, in oacp_read_proc_validate() 259 struct bt_gatt_ots_oacp_proc *proc) in oacp_write_proc_validate() argument [all …]
|
D | ots_olcp.c | 141 struct bt_ots *ots, struct bt_gatt_ots_olcp_proc *proc) in olcp_proc_execute() argument 143 LOG_DBG("Executing OLCP procedure with 0x%02X Op Code", proc->type); in olcp_proc_execute() 145 switch (proc->type) { in olcp_proc_execute() 155 return olcp_goto_proc_execute(ots, proc->goto_params.id); in olcp_proc_execute() 165 struct bt_gatt_ots_olcp_proc *proc) in olcp_command_decode() argument 171 memset(proc, 0, sizeof(*proc)); in olcp_command_decode() 173 proc->type = *buf++; in olcp_command_decode() 176 switch (proc->type) { in olcp_command_decode() 190 proc->goto_params.id = sys_get_le48(buf); in olcp_command_decode()
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | utils.py | 40 def terminate_process(proc: subprocess.Popen) -> None: 44 for child in psutil.Process(proc.pid).children(recursive=True): 49 proc.terminate() 52 proc.kill()
|
/Zephyr-latest/boards/sipeed/longan_nano/support/ |
D | openocd.cfg | 19 proc gd32vf103-pre-load {} { 23 proc gd32vf103-load {file} { 29 proc gd32vf103-post-verify {} {
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_llcp_remote.c | 84 switch (ctx->proc) { in proc_with_instant() 147 void llcp_rr_set_paused_cmd(struct ll_conn *conn, enum llcp_proc proc) in llcp_rr_set_paused_cmd() argument 150 conn->llcp.remote.paused_cmd = proc; in llcp_rr_set_paused_cmd() 247 switch (ctx->proc) { in llcp_rr_rx() 336 switch (ctx->proc) { in llcp_rr_tx_ack() 370 switch (ctx->proc) { in llcp_rr_tx_ntf() 390 switch (ctx->proc) { in rr_act_run() 486 if (ctx_local->proc == ctx->proc || in rr_tx() 487 (ctx_local->proc == PROC_CONN_UPDATE && in rr_tx() 488 ctx->proc == PROC_CONN_PARAM_REQ)) { in rr_tx() [all …]
|
D | ull_llcp.c | 333 if (ctx->proc == PROC_PHY_UPDATE && ctx->data.pu.ntf_dle_node) { in llcp_nodes_release() 351 static struct proc_ctx *create_procedure(enum llcp_proc proc, struct llcp_mem_pool *ctx_pool) in create_procedure() argument 360 ctx->proc = proc; in create_procedure() 378 struct proc_ctx *llcp_create_local_procedure(enum llcp_proc proc) in llcp_create_local_procedure() argument 380 return create_procedure(proc, &mem_local_ctx); in llcp_create_local_procedure() 383 struct proc_ctx *llcp_create_remote_procedure(enum llcp_proc proc) in llcp_create_remote_procedure() argument 385 return create_procedure(proc, &mem_remote_ctx); in llcp_create_remote_procedure() 516 if (ctx->proc == PROC_TERMINATE) { in ull_cp_prt_elapse() 730 if (ctx && ctx->proc == PROC_ENCRYPTION_PAUSE) { in ull_cp_encryption_paused() 735 if (ctx && ctx->proc == PROC_ENCRYPTION_PAUSE) { in ull_cp_encryption_paused() [all …]
|
D | ull_llcp_local.c | 179 struct proc_ctx *llcp_lr_peek_proc(struct ll_conn *conn, uint8_t proc) in llcp_lr_peek_proc() argument 190 if (ctx->proc == proc) { in llcp_lr_peek_proc() 262 switch (ctx->proc) { in llcp_lr_rx() 343 switch (ctx->proc) { in llcp_lr_tx_ack() 385 switch (ctx->proc) { in llcp_lr_tx_ntf() 405 switch (ctx->proc) { in lr_act_run() 534 const enum llcp_proc curr_proc = ctx->proc; in lr_st_idle()
|
/Zephyr-latest/samples/boards/nordic/coresight_stm/pytest/ |
D | test_stm.py | 98 def _kill(proc): argument 100 for child in psutil.Process(proc.pid).children(recursive=True): 102 proc.kill() 141 proc = subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL) 145 proc.wait(collect_time) 149 _kill(proc)
|
/Zephyr-latest/boards/nuvoton/npcx9m6f_evb/support/ |
D | openocd.cfg | 7 proc npcx_write_image {target_image} { 11 proc npcx_verify_image {target_image} {
|
/Zephyr-latest/boards/nuvoton/npcx7m6fb_evb/support/ |
D | openocd.cfg | 7 proc npcx_write_image {target_image} { 11 proc npcx_verify_image {target_image} {
|
/Zephyr-latest/boards/st/stm32mp157c_dk2/ |
D | stm32mp157c_dk2_defconfig | 14 # console (remote proc console by default) 19 # uart console (overrides remote proc console)
|
/Zephyr-latest/boards/96boards/avenger96/ |
D | 96b_avenger96_defconfig | 14 # console (remote proc console by default) 19 # uart console (overrides remote proc console)
|
/Zephyr-latest/boards/nuvoton/npcx4m8f_evb/support/ |
D | openocd.cfg | 9 proc npcx_write_image {target_image} { 13 proc npcx_verify_image {target_image} {
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | handlers.py | 53 def terminate_process(proc): argument 62 for child in psutil.Process(proc.pid).children(recursive=True): 65 proc.terminate() 68 proc.kill() 103 def terminate(self, proc): argument 104 terminate_process(proc) 209 def _output_reader(self, proc): argument 210 self.line = proc.stdout.readline() 212 def _output_handler(self, proc, harness): argument 222 reader_t = threading.Thread(target=self._output_reader, args=(proc,), daemon=True) [all …]
|
/Zephyr-latest/boards/sifive/hifive1/support/ |
D | openocd.cfg | 18 proc hifive1-load {file} { 23 proc hifive1-reset-halt {} { 27 proc hifive1-post-verify {} {
|
/Zephyr-latest/boards/amd/kv260_r5/support/ |
D | xsdb.cfg | 5 proc load_image args { 11 rst -proc
|
/Zephyr-latest/soc/intel/intel_adsp/tools/ |
D | remote-fw-service.py | 164 start_new_session=True) as proc: 166 t = threading.Thread(target=self.check_connection, args=(proc,)) 171 out = proc.stdout.readline() 173 ret = proc.poll() 199 def check_connection(self, proc): argument 214 proc.terminate() 216 proc.wait(timeout=0.5) 220 log.error("Sending %d SIGKILL", proc.pid) 221 proc.kill()
|
/Zephyr-latest/boards/openisa/rv32m1_vega/support/ |
D | openocd_rv32m1_vega_ri5cy.cfg | 49 proc ri5cy_boot { } { 66 proc cm4_boot { } { 83 proc zero_boot { } { 100 proc cm0_boot { } { 118 proc core0_boot { } { 136 proc core1_boot { } {
|
D | openocd_rv32m1_vega_zero_riscy.cfg | 49 proc ri5cy_boot { } { 66 proc cm4_boot { } { 83 proc zero_boot { } { 100 proc cm0_boot { } {
|
/Zephyr-latest/boards/nxp/imx8mp_evk/ |
D | imx8mp_evk_mimx8ml8_adsp_defconfig | 18 # console (remote proc console by default) 21 # uart console (overrides remote proc console)
|
/Zephyr-latest/tests/boards/nrf/coresight_stm/pytest/ |
D | test_stm.py | 120 def _kill(proc): argument 122 for child in psutil.Process(proc.pid).children(recursive=True): 124 proc.kill() 163 proc = subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL) 167 proc.wait(collect_time) 171 _kill(proc)
|
/Zephyr-latest/scripts/west_commands/ |
D | patch.py | 274 proc = subprocess.run(apply_cmd_list) 275 if proc.returncode: 277 self.err(proc.stderr) 312 proc = subprocess.run(checkout_cmd_list, capture_output=True) 313 if proc.returncode: 321 proc = subprocess.run(clean_cmd_list, capture_output=True) 322 if proc.returncode:
|
/Zephyr-latest/boards/raspberrypi/rpi_pico2/support/ |
D | openocd.cfg | 6 proc set_adapter_speed_if_not_set { speed } {
|