Home
last modified time | relevance | path

Searched full:stub (Results 1 – 25 of 120) sorted by relevance

12345

/Zephyr-latest/scripts/coredump/gdbstubs/
D__init__.py26 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/tests/lib/lockfree/src/
Dtest_mpsc.c29 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()
53 zassert_equal(next, &push_pop_nodes[0], "Queue stub should point at push_pop_node"); 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()
[all …]
/Zephyr-latest/tests/drivers/espi/src/
Dstub_espi_emul_host.c11 /* Stub out an espi host device struct to use espi_host emulator. */
20 /* Stub */
23 /* Stub */
26 /* Stub */
29 /* Since this is only stub, allocate the structs once. */
/Zephyr-latest/include/zephyr/drivers/
Demul_stub_device.h18 /* Stub */
21 /* Stub */
24 /* Stub */
27 /* For every instance of a DT_DRV_COMPAT stub out a device for that instance */
/Zephyr-latest/include/zephyr/sys/
Dmpsc_lockfree.h89 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()
151 /* Skip over the stub/sentinel */ in mpsc_pop()
152 if (tail == &q->stub) { in mpsc_pop()
177 mpsc_push(q, &q->stub); in mpsc_pop()
/Zephyr-latest/tests/drivers/mspi/api/src/
Dstub_mspi_emul_device.c13 /* Stub out a mspi device struct to use mspi_device emulator. */
30 /* Stub */
33 /* Stub */
36 /* Stub */
/Zephyr-latest/lib/cpp/minimal/
Dcpp_virtual.c9 * @brief Stub for C++ pure virtual functions
13 * @brief Stub for pure virtual functions
Dcpp_vtable.cpp9 * @brief Stub for C++ virtual tables
/Zephyr-latest/scripts/west_commands/runners/
Dqemu.py5 '''Runner stub for QEMU.'''
19 # This is a stub.
/Zephyr-latest/arch/x86/core/ia32/
Dirq_manage.c66 * to dyn_irq_info, the dynamic stubs push a "stub id" onto the stack
164 * @brief Get the memory address of an unused dynamic IRQ or exception stub
167 * a stub index onto the stack for use as an argument by
170 * @param stub_idx Stub number to fetch the corresponding stub function
171 * @return Pointer to the stub code to install into the IDT
234 * This gets called by the IRQ entry asm code with the stub index supplied as
/Zephyr-latest/doc/services/debugging/
Dgdbstub.rst3 GDB stub
38 Enabling 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.
/Zephyr-latest/lib/libc/armstdc/src/
Dthreading_weak.c8 * Weak stub implementation of threading related kernel functions.
16 * This file provides weak stub implementations that are compiled when
/Zephyr-latest/arch/posix/core/
Dcpuhalt.c20 * A weak stub for sys_arch_reboot(), which does nothing
51 * @brief Stub for sys_arch_reboot
/Zephyr-latest/dts/bindings/comparator/
Dzephyr,comp-fake.yaml4 description: Fake comparator device used as stub or mock for testing
/Zephyr-latest/include/zephyr/arch/x86/ia32/
Darch.h76 /** Address of ISR/stub */
78 /** IRQ associated with the ISR/stub, or -1 if this is not
85 /** Vector number associated with ISR/stub, or -1 to assign based
89 /** Privilege level associated with ISR/stub */
186 * IRQ stub that we generate immediately afterwards.
188 * 2. The IRQ stub itself is declared. The code will go in its own named
190 * and the stub shall be named (isr_name)_irq(irq_line)_stub
192 * 3. The IRQ stub pushes the ISR routine and its argument onto the stack
/Zephyr-latest/tests/drivers/bbram/src/
Dmain.c10 /* Build only test, this is a stub. */ in test_main()
/Zephyr-latest/boards/common/
Dstub.dts6 /* empty stub file provided for systems not using devicetree */
/Zephyr-latest/dts/bindings/rtc/
Dzephyr,fake-rtc.yaml5 This binding provides a fake RTC controller for use as either a stub or a mock in Zephyr
/Zephyr-latest/dts/bindings/stepper/
Dzephyr,fake-stepper.yaml5 This binding provides a fake stepper controller for use as either a stub or a mock in
/Zephyr-latest/dts/bindings/can/
Dzephyr,fake-can.yaml5 This binding provides a fake CAN controller for use as either a stub or a mock in Zephyr
/Zephyr-latest/dts/bindings/mtd/
Dzephyr,fake-eeprom.yaml5 This binding provides a fake EEPROM for use as either a stub or a mock in Zephyr testing.
/Zephyr-latest/soc/espressif/esp32/
DKconfig35 int "Extra delay in deep sleep wake stub (in us)"
40 at the same time. CPU will run deep sleep stub first, and then
/Zephyr-latest/lib/cpp/minimal/include/
Dcstddef10 * @brief Stub header allowing compilation of `#include <cstddef>`
/Zephyr-latest/dts/bindings/regulator/
Dzephyr,fake-regulator.yaml5 Fake regulator, to be used as a mock or stub in tests.
/Zephyr-latest/tests/bluetooth/host/conn/mocks/
Dmock-sections.ld1 /* This is a stub file for the linker. None of the sections are used by the test. */

12345