/Zephyr-latest/arch/x86/core/ |
D | userspace.c | 40 void z_x86_swap_update_page_tables(struct k_thread *incoming) in z_x86_swap_update_page_tables() argument 46 _main_tss.esp0 = (uintptr_t)incoming->arch.psp; in z_x86_swap_update_page_tables() 50 z_x86_swap_update_common_page_table(incoming); in z_x86_swap_update_page_tables() 55 uintptr_t ptables_phys = incoming->arch.ptables; in z_x86_swap_update_page_tables() 58 incoming); in z_x86_swap_update_page_tables()
|
D | x86_mmu.c | 1513 void z_x86_swap_update_common_page_table(struct k_thread *incoming) in z_x86_swap_update_common_page_table() argument 1517 if ((incoming->base.user_options & K_USER) == 0) { in z_x86_swap_update_common_page_table() 1528 if (incoming->stack_info.start != current_stack_start || in z_x86_swap_update_common_page_table() 1529 incoming->stack_info.size != current_stack_size) { in z_x86_swap_update_common_page_table() 1535 apply_region(incoming->stack_info.start, in z_x86_swap_update_common_page_table() 1536 incoming->stack_info.size, in z_x86_swap_update_common_page_table() 1540 current_stack_start = incoming->stack_info.start; in z_x86_swap_update_common_page_table() 1541 current_stack_size = incoming->stack_info.size; in z_x86_swap_update_common_page_table() 1549 if (incoming->mem_domain_info.mem_domain == current_domain) { in z_x86_swap_update_common_page_table() 1570 &incoming->mem_domain_info.mem_domain->partitions[i]; in z_x86_swap_update_common_page_table() [all …]
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.enc424j600 | 18 int "Stack size for internal incoming packet handler" 22 incoming packet processing. 25 int "Priority for internal incoming packet handler" 28 Priority level for internal thread which is ran for incoming
|
D | Kconfig.lan9250 | 19 int "Stack size for internal incoming packet handler" 23 incoming packet processing. 26 int "Priority for internal incoming packet handler" 29 Priority level for internal thread which is ran for incoming
|
D | Kconfig.w5500 | 17 int "Stack size for internal incoming packet handler" 22 incoming packet processing. 25 int "Priority for internal incoming packet handler" 29 Priority level for internal thread which is ran for incoming
|
D | Kconfig.enc28j60 | 18 int "Stack size for internal incoming packet handler" 23 incoming packet processing. 26 int "Priority for internal incoming packet handler" 30 Priority level for internal thread which is ran for incoming
|
D | Kconfig.renesas_ra | 16 int "Stack size for internal incoming packet handler" 20 incoming packet processing.
|
D | Kconfig.lan865x | 37 int "Priority for internal incoming packet handler"
|
/Zephyr-latest/samples/subsys/ipc/openamp_rsc_table/ |
D | README.rst | 47 Right after, logs should be displayed to notify channel creation/destruction and incoming message. 53 …[ 44.631401] rpmsg_client_sample virtio0.rpmsg-client-sample.-1.1024: incoming msg 1 (src: 0x400) 54 …[ 44.640614] rpmsg_client_sample virtio0.rpmsg-client-sample.-1.1024: incoming msg 2 (src: 0x400) 56 …[ 45.152269] rpmsg_client_sample virtio0.rpmsg-client-sample.-1.1024: incoming msg 99 (src: 0x40… 57 …[ 45.157678] rpmsg_client_sample virtio0.rpmsg-client-sample.-1.1024: incoming msg 100 (src: 0x4… 78 [Linux sample client] incoming msg 1: hello world! 79 [Linux sample client] incoming msg 2: hello world! 81 [Linux sample client] incoming msg 99: hello world! 82 [Linux sample client] incoming msg 100: hello world! 127 [Linux TTY] incoming msg: Hello Zephyr
|
/Zephyr-latest/samples/bluetooth/iso_receive/ |
D | Kconfig | 16 bool "Align report interval with incoming packets" 18 Align interval-counter with packet number from incoming ISO packets.
|
/Zephyr-latest/samples/net/promiscuous_mode/ |
D | README.rst | 5 Enable promiscuous mode on all interfaces and print information about incoming packets. 11 interface in the system. It will then start to listen for incoming
|
/Zephyr-latest/drivers/can/ |
D | Kconfig.mcp2515 | 21 interrupt handling and incoming packets. 28 interrupt handling and incoming packets.
|
D | Kconfig.native_linux | 21 handling of incoming packets.
|
D | Kconfig.mcp251xfd | 38 interrupt handling and incoming packets.
|
D | Kconfig | 82 Accept incoming Remote Transmission Request (RTR) frames matching CAN RX filters. Unless 83 enabled, all incoming Remote Transmission Request (RTR) frames are rejected at the driver
|
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/ |
D | ccp.rst | 72 read_uri :Read the incoming call target URI 75 read_remote_uri :Read the incoming remote URI 77 read_friendly_name :Read the friendly name of an incoming call 135 Accepting incoming call from peer device: 142 …<dbg> bt_tbs_client.current_calls_notify_handler: Call 0x05 is in the incoming state with URI tel:… 188 incoming :Simulate incoming remote call [<{instance_index, 235 uart:~$ tbs incoming 0 tel:123 tel:456 Peter
|
/Zephyr-latest/samples/bluetooth/handsfree_ag/ |
D | Kconfig | 14 bool "The simulate call: outgoing (y), incoming (n)"
|
/Zephyr-latest/doc/connectivity/bluetooth/api/ |
D | l2cap.rst | 16 whenever an incoming data has been received. Data received this way can be 31 ``accept`` which is called to authorize incoming connection requests and
|
/Zephyr-latest/drivers/ethernet/phy/ |
D | Kconfig.tja1103 | 24 int "Priority for internal incoming packet handler"
|
/Zephyr-latest/subsys/net/l2/ieee802154/ |
D | Kconfig | 84 and reassemble incoming packets according to RFC4944/6282. 112 (only implicit key mode, no key/device specific state, incoming 124 decryption operations on incoming/outgoing frames.
|
/Zephyr-latest/include/zephyr/bluetooth/classic/ |
D | hfp_ag.h | 116 void (*incoming)(struct bt_hfp_ag *ag, const char *number); member
|
/Zephyr-latest/arch/arm64/core/ |
D | mmu.c | 1197 static void z_arm64_swap_ptables(struct k_thread *incoming); 1349 static void z_arm64_swap_ptables(struct k_thread *incoming) in z_arm64_swap_ptables() argument 1351 struct arm_mmu_ptables *ptables = incoming->arch.ptables; in z_arm64_swap_ptables() 1367 void z_arm64_thread_mem_domains_init(struct k_thread *incoming) in z_arm64_thread_mem_domains_init() argument 1371 if ((incoming->base.user_options & K_USER) == 0) { in z_arm64_thread_mem_domains_init() 1375 ptables = incoming->arch.ptables; in z_arm64_thread_mem_domains_init() 1378 map_thread_stack(incoming, ptables); in z_arm64_thread_mem_domains_init() 1380 z_arm64_swap_ptables(incoming); in z_arm64_thread_mem_domains_init() 1383 void z_arm64_swap_mem_domains(struct k_thread *incoming) in z_arm64_swap_mem_domains() argument 1385 z_arm64_swap_ptables(incoming); in z_arm64_swap_mem_domains()
|
/Zephyr-latest/arch/x86/include/ |
D | x86_mmu.h | 232 void z_x86_swap_update_common_page_table(struct k_thread *incoming);
|
/Zephyr-latest/subsys/bluetooth/common/ |
D | Kconfig | 52 int "Maximum supported ACL size for incoming data" 81 int "Number of extra incoming ACL data buffers" 85 Number of incoming extra ACL data buffers sent from the Controller to 88 By default, the number of incoming ACL data buffers is equal to 92 int "[DEPRECATED] Number of incoming ACL data buffers" 96 Number or incoming ACL data buffers sent from the Controller to the 134 Number of buffers available for incoming HCI events from the
|
/Zephyr-latest/samples/drivers/uart/echo_bot/ |
D | README.rst | 16 while waiting for incoming data.
|