/Zephyr-latest/scripts/coredump/gdbstubs/ |
D | __init__.py | 26 stub = None 31 stub = GdbStub_x86(logfile=logfile, elffile=elffile) 33 stub = GdbStub_x86_64(logfile=logfile, elffile=elffile) 35 stub = GdbStub_ARM_CortexM(logfile=logfile, elffile=elffile) 37 stub = GdbStub_RISC_V(logfile=logfile, elffile=elffile) 39 stub = GdbStub_Xtensa(logfile=logfile, elffile=elffile) 41 stub = GdbStub_ARM64(logfile=logfile, elffile=elffile) 43 return stub
|
/Zephyr-latest/include/zephyr/sys/ |
D | mpsc_lockfree.h | 89 struct mpsc_node stub; member 101 .head = (struct mpsc_node *)&symbol.stub, \ 102 .tail = (struct mpsc_node *)&symbol.stub, \ 103 .stub = { \ 115 mpsc_ptr_set(q->head, &q->stub); in mpsc_init() 116 q->tail = &q->stub; in mpsc_init() 117 mpsc_ptr_set(q->stub.next, NULL); in mpsc_init() 152 if (tail == &q->stub) { in mpsc_pop() 177 mpsc_push(q, &q->stub); in mpsc_pop()
|
/Zephyr-latest/tests/lib/lockfree/src/ |
D | test_mpsc.c | 29 struct mpsc_node *stub, *next, *tail; in ZTEST() local 35 stub = &push_pop_q.stub; in ZTEST() 36 next = stub->next; in ZTEST() 38 zassert_equal(head, stub, "Head should point at stub"); in ZTEST() 39 zassert_equal(tail, stub, "Tail should point at stub"); in ZTEST() 52 next = mpsc_ptr_get(push_pop_q.stub.next); in ZTEST() 55 stub = &push_pop_q.stub; in ZTEST() 56 zassert_equal(tail, stub, "Tail should point at stub"); in ZTEST() 59 stub = &push_pop_q.stub; in ZTEST() 61 zassert_not_equal(node, stub, "Pop should not return stub"); in ZTEST() [all …]
|
/Zephyr-latest/boards/common/ |
D | stub.dts | 6 /* empty stub file provided for systems not using devicetree */
|
/Zephyr-latest/tests/bluetooth/host/conn/mocks/ |
D | mock-sections.ld | 1 /* This is a stub file for the linker. None of the sections are used by the test. */
|
/Zephyr-latest/doc/services/debugging/ |
D | gdbstub.rst | 3 GDB stub 41 GDB stub can be enabled with the :kconfig:option:`CONFIG_GDBSTUB` option. 46 The serial backend for GDB stub can be enabled with 67 #. Build with GDB stub and serial backend enabled. 73 #. Execute GDB on development machine and connect to the GDB stub. 91 test cases ``debug.gdbstub.breakpoints`` demonstrating how the Zephyr GDB stub can be used. 92 The test also has a case to connect to the QEMU's GDB stub implementation (at a custom 102 to demonstrate how the Zephyr GDB stub works from the GDB user's perspective.
|
D | coredump.rst | 402 #. Add a parser to the core dump GDB stub scripts under 420 the newly implemented GDB stub.
|
/Zephyr-latest/boards/snps/nsim/arc_v/ |
D | rmx1xx.dtsi | 53 * so connect UART interrupt to 17th line as a stub to
|
/Zephyr-latest/soc/espressif/esp32/ |
D | Kconfig | 35 int "Extra delay in deep sleep wake stub (in us)" 40 at the same time. CPU will run deep sleep stub first, and then
|
D | mcuboot.ld | 44 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
/Zephyr-latest/soc/espressif/esp32c2/ |
D | mcuboot.ld | 45 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) 107 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
/Zephyr-latest/soc/espressif/esp32c3/ |
D | mcuboot.ld | 45 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) 107 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
/Zephyr-latest/soc/espressif/esp32c6/ |
D | mcuboot.ld | 45 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) 107 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
/Zephyr-latest/arch/nios2/ |
D | Kconfig | 48 Include the reset vector stub, which enables instruction/data caches
|
/Zephyr-latest/arch/x86/core/ |
D | Kconfig.ia32 | 161 some stub code to be generated at build time, one stub per dynamic
|
/Zephyr-latest/doc/hardware/porting/ |
D | arch.rst | 58 * **GDB Stub**: for supporting GDB stub to enable remote debugging. 130 interrupt/exception stub. 143 the stub. This is commonly found in X86-based architectures. 249 an ISR, in the kernel interrupt exit stub: 854 To enable GDB stub for remote debugging on a new architecture: 865 * Architecture can define as many members as needed for GDB stub to 869 where this pointer will be passed to other GDB stub functions. 871 #. Functions for entering and exiting GDB stub main loop. 875 will serve as the entry point to GDB stub main loop. 881 execution context to go into the GDB stub main loop to receive commands [all …]
|
/Zephyr-latest/include/zephyr/arch/sparc/ |
D | linker.ld | 41 *(.stub)
|
/Zephyr-latest/soc/espressif/esp32s2/ |
D | mcuboot.ld | 44 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
/Zephyr-latest/soc/espressif/esp32s3/ |
D | mcuboot.ld | 47 *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
/Zephyr-latest/arch/x86/zefi/ |
D | README.txt | 17 Instead, the stub code will copy the embedded zephyr sections to the
|
/Zephyr-latest/doc/develop/test/ |
D | twister_statuses.rst | 125 :stub-columns: 1
|
/Zephyr-latest/cmake/modules/ |
D | dts.cmake | 172 # If we don't have a devicetree, provide an empty stub 173 set(DTS_SOURCE ${ZEPHYR_BASE}/boards/common/stub.dts)
|
/Zephyr-latest/soc/nxp/imxrt/imxrt5xx/f1/ |
D | linker.ld | 320 …*(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.l…
|
/Zephyr-latest/soc/cdns/dc233c/include/ |
D | xtensa-dc233c.ld | 210 …*(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.l…
|
/Zephyr-latest/boards/espressif/esp32_devkitc_wroom/doc/ |
D | index.rst | 237 GDB stub is enabled on ESP32.
|