Searched refs:place (Results 1 – 25 of 153) sorted by relevance
1234567
/Zephyr-Core-3.7.0/lib/posix/options/getopt/ |
D | getopt.c | 60 state->place = ""; /* EMSG */ in getopt_init() 86 if (state->optreset || *state->place == 0) { /* update scanning pointer */ in getopt() 88 state->place = nargv[state->optind]; in getopt() 89 if (state->optind >= nargc || *state->place++ != '-') { in getopt() 91 state->place = EMSG; in getopt() 95 state->optopt = *state->place++; in getopt() 96 if (state->optopt == '-' && *state->place == 0) { in getopt() 99 state->place = EMSG; in getopt() 107 state->place = EMSG; in getopt() 115 state->optopt = *state->place++; in getopt() [all …]
|
D | getopt_long.c | 180 current_argv = state->place; in parse_long_options() 389 if (state->optreset || !*(state->place)) {/* update scanning pointer */ 392 state->place = EMSG; 410 state->place = nargv[state->optind]; 411 if (*(state->place) != '-' || 413 state->place[1] == '\0') { 415 (state->place[1] == '\0' && strchr(options, '-') == NULL)) { 417 state->place = EMSG; /* found non-option */ 456 if (state->place[1] != '\0' && *++(state->place) == '-' && 457 state->place[1] == '\0') { [all …]
|
D | getopt.h | 23 char *place; /* option letter processing */ member
|
D | getopt_common.c | 33 .place = "", /* EMSG */
|
/Zephyr-Core-3.7.0/doc/kernel/iterable_sections/ |
D | index.rst | 35 Then the linker has to be setup to place the place the structure in a 61 The linker is going to place the entries sorted by name, so the example
|
/Zephyr-Core-3.7.0/soc/nordic/common/ |
D | arm_platform_init.ld | 7 /* Let SystemInit() be called in place of z_arm_platform_init() by default. */
|
D | CMakeLists.txt | 7 # Let SystemInit() be called in place of z_arm_platform_init() by default.
|
/Zephyr-Core-3.7.0/modules/hal_nxp/ |
D | Kconfig | 7 # file is empty and kept as a place holder if/when Kconfig is needed
|
/Zephyr-Core-3.7.0/tests/kernel/mp/ |
D | Kconfig | 5 # Must have this on where available, otherwise the linker will place
|
/Zephyr-Core-3.7.0/boards/digilent/arty_a7/ |
D | Kconfig | 13 place after the GPIO driver is initialized.
|
/Zephyr-Core-3.7.0/snippets/nordic-ppr-xip/ |
D | README.rst | 3 Nordic boot PPR snippet with execution in place (nordic-ppr-xip)
|
/Zephyr-Core-3.7.0/snippets/nordic-flpr-xip/ |
D | README.rst | 3 Nordic FLPR snippet with execution in place (nordic-flpr-xip)
|
/Zephyr-Core-3.7.0/tests/drivers/dma/loop_transfer/ |
D | Kconfig | 13 string "the section to place the memory buffers."
|
/Zephyr-Core-3.7.0/tests/drivers/dma/chan_blen_transfer/ |
D | Kconfig | 17 string "the section to place the memory buffers."
|
/Zephyr-Core-3.7.0/doc/kernel/ |
D | code-relocation.rst | 9 required files and place them in the required memory region. The memory region 71 * if the memory is SRAM1, SRAM2, CCD, or AON, then place the full object in the 89 This will place data and bss inside SRAM2. 124 This example will place the .text section of the ``xip_external_flash.c`` file 148 code that executes before code relocation takes place. 161 This test will place .text, .data, .bss from 3 files to various parts in the SRAM
|
/Zephyr-Core-3.7.0/drivers/pinctrl/ |
D | Kconfig.imx | 19 # TODO: Find better place for this option
|
/Zephyr-Core-3.7.0/samples/boards/intel_adsp/code_relocation/ |
D | linker_xtensa_intel_adsp_cavs.ld | 25 * script would also place some BSS section on SRAM0, which would break 31 * but `fix_elf_addrs.py` will place it as above for rimage.
|
/Zephyr-Core-3.7.0/doc/build/snippets/ |
D | index.rst | 6 Snippets are a way to save build system settings in one place, and then use
|
/Zephyr-Core-3.7.0/drivers/gpio/ |
D | Kconfig.nct38xx | 44 must take place after the alert GPIO device is initialized.
|
/Zephyr-Core-3.7.0/cmake/linker/ld/ |
D | target_baremetal.cmake | 26 # CONFIG_LINKER_ORPHAN_SECTION_PLACE is to place the orphan sections
|
/Zephyr-Core-3.7.0/cmake/linker/lld/ |
D | target_baremetal.cmake | 33 # CONFIG_LINKER_ORPHAN_SECTION_PLACE is to place the orphan sections
|
/Zephyr-Core-3.7.0/include/zephyr/linker/ |
D | kobject-data.ld | 36 /* This is produced by gperf. Put a place holder here
|
/Zephyr-Core-3.7.0/subsys/storage/flash_map/ |
D | Kconfig | 29 User must provide such a description in place of default on
|
/Zephyr-Core-3.7.0/boards/ti/cc1352p7_launchpad/doc/ |
D | index.rst | 136 are in place. Also place jumpers on the TXD and RXD signals for a serial 149 Note that the emulation package install may place the xdsdfu utility
|
/Zephyr-Core-3.7.0/boards/ti/cc1352r1_launchxl/doc/ |
D | index.rst | 135 are in place. Also place jumpers on the TXD and RXD signals for a serial 148 Note that the emulation package install may place the xdsdfu utility
|
1234567