Searched refs:place (Results 1 – 25 of 157) sorted by relevance
1234567
/Zephyr-latest/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() 390 if (state->optreset || !*(state->place)) {/* update scanning pointer */ 393 state->place = EMSG; 411 state->place = nargv[state->optind]; 412 if (*(state->place) != '-' || 414 state->place[1] == '\0') { 416 (state->place[1] == '\0' && strchr(options, '-') == NULL)) { 418 state->place = EMSG; /* found non-option */ 457 if (state->place[1] != '\0' && *++(state->place) == '-' && 458 state->place[1] == '\0') { [all …]
|
D | getopt.h | 23 char *place; /* option letter processing */ member
|
D | getopt_common.c | 33 .place = "", /* EMSG */
|
/Zephyr-latest/tests/drivers/display/display_read_write/ |
D | Kconfig | 22 string "Memory section to place Display Buffer" 24 Specific memory section to place the display buffer.
|
/Zephyr-latest/soc/nordic/common/ |
D | arm_platform_init.ld | 7 /* Let SystemInit() be called in place of soc_reset_hook() by default. */
|
D | CMakeLists.txt | 7 # Let SystemInit() be called in place of soc_reset_hook() by default.
|
/Zephyr-latest/modules/hal_wch/ |
D | Kconfig | 7 # file is empty and kept as a place holder if/when Kconfig is needed
|
/Zephyr-latest/tests/kernel/mp/ |
D | Kconfig | 5 # Must have this on where available, otherwise the linker will place
|
/Zephyr-latest/boards/digilent/arty_a7/ |
D | Kconfig | 13 place after the GPIO driver is initialized.
|
/Zephyr-latest/snippets/nordic-flpr-xip/ |
D | README.rst | 3 Nordic FLPR snippet with execution in place (nordic-flpr-xip)
|
/Zephyr-latest/snippets/nordic-ppr-xip/ |
D | README.rst | 3 Nordic boot PPR snippet with execution in place (nordic-ppr-xip)
|
/Zephyr-latest/tests/drivers/dma/loop_transfer/ |
D | Kconfig | 13 string "the section to place the memory buffers."
|
/Zephyr-latest/tests/drivers/dma/chan_blen_transfer/ |
D | Kconfig | 17 string "the section to place the memory buffers."
|
/Zephyr-latest/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-latest/doc/kernel/iterable_sections/ |
D | index.rst | 35 Then the linker has to be setup to place the structure in a 62 The linker is going to place the entries sorted by name, so the example
|
/Zephyr-latest/soc/nxp/mcx/mcxw/ |
D | linker.ld | 20 * is done because calling this linker at the beginning will place some sections
|
/Zephyr-latest/doc/build/snippets/ |
D | index.rst | 6 Snippets are a way to save build system settings in one place, and then use
|
/Zephyr-latest/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-latest/drivers/pinctrl/ |
D | Kconfig.imx | 26 # TODO: Find better place for this option
|
/Zephyr-latest/drivers/gpio/ |
D | Kconfig.nct38xx | 44 must take place after the alert GPIO device is initialized.
|
/Zephyr-latest/include/zephyr/linker/ |
D | kobject-data.ld | 36 /* This is produced by gperf. Put a place holder here
|
/Zephyr-latest/subsys/storage/flash_map/ |
D | Kconfig | 29 User must provide such a description in place of default on
|
/Zephyr-latest/boards/ti/cc1352p1_launchxl/doc/ |
D | index.rst | 126 are in place. Also place jumpers on the TXD and RXD signals for a serial 139 Note that the emulation package install may place the xdsdfu utility
|
/Zephyr-latest/boards/ti/cc1352r1_launchxl/doc/ |
D | index.rst | 126 are in place. Also place jumpers on the TXD and RXD signals for a serial 139 Note that the emulation package install may place the xdsdfu utility
|
1234567