/Zephyr-Core-3.5.0/lib/posix/ |
D | fnmatch.c | 62 static const char *rangematch(const char *pattern, int test, int flags) in rangematch() argument 67 if (pattern == NULL) { in rangematch() 78 negate = *pattern == '!' || *pattern == '^'; in rangematch() 80 ++pattern; in rangematch() 83 for (need = true, ok = false, c = FOLDCASE(*pattern++, flags); c != ']' || need; in rangematch() 84 c = FOLDCASE(*pattern++, flags)) { in rangematch() 91 c = FOLDCASE(*pattern++, flags); in rangematch() 98 if (*pattern == '-') { in rangematch() 99 c2 = FOLDCASE(*(pattern + 1), flags); in rangematch() 101 pattern += 2; in rangematch() [all …]
|
D | Kconfig.fnmatch | 9 Match filenames using the the fnmatch function. For example, the pattern
|
/Zephyr-Core-3.5.0/subsys/shell/ |
D | shell_wildcard.c | 15 char const *pattern) in command_add() argument 26 completion_addr = strstr(buff, pattern); in command_add() 71 const char *pattern) in commands_expand() argument 81 if (fnmatch(pattern, entry->syntax, 0) == 0) { in commands_expand() 84 entry->syntax, pattern); in commands_expand() 89 " wildcard pattern: %s\n", pattern); in commands_expand() 100 &sh->ctx->cmd_tmp_buff_len, pattern); in commands_expand() 161 const char *pattern) in z_shell_wildcard_process() argument 169 if (!z_shell_has_wildcard(pattern)) { in z_shell_wildcard_process() 180 ret_val = commands_expand(sh, cmd, pattern); in z_shell_wildcard_process()
|
D | shell_wildcard.h | 49 const char *pattern);
|
/Zephyr-Core-3.5.0/arch/common/ |
D | fill_with_zeros.ld | 9 * counter) in executable segments with TrapInstr pattern, e.g. for ARM the 10 * TrapInstr pattern is 0xd4d4d4d4. GNU LD fills empty spaces with 0x00 11 * pattern. 14 * e.g. because MCU can interpret the pattern as a configuration data.
|
D | CMakeLists.txt | 61 # Some linkers fill unspecified region with pattern other than 0x00. Include 62 # fill_with_zeros.ld file which forces the linker to use 0x00 pattern. Please 63 # note that the pattern will affect empty spaces created after FILL(0x00).
|
/Zephyr-Core-3.5.0/tests/bluetooth/df/common/src/ |
D | radio_df_stub.c | 30 void radio_df_ant_switch_pattern_set(uint8_t pattern) in radio_df_ant_switch_pattern_set() argument 112 void ut_radio_df_pdu_antenna_switch_pattern_set(uint8_t pattern) in ut_radio_df_pdu_antenna_switch_pattern_set() argument 114 g_pdu_switch_pattern = pattern; in ut_radio_df_pdu_antenna_switch_pattern_set()
|
/Zephyr-Core-3.5.0/drivers/eeprom/ |
D | eeprom_shell.c | 22 uint8_t pattern; member 30 .pattern = 4, 152 unsigned long pattern; in cmd_fill() local 163 pattern = strtoul(argv[args_indx.pattern], NULL, 0); in cmd_fill() 164 if (pattern > UINT8_MAX) { in cmd_fill() 168 memset(wr_buf, pattern, MIN(len, CONFIG_EEPROM_SHELL_BUFFER_SIZE)); in cmd_fill() 177 pattern); in cmd_fill()
|
/Zephyr-Core-3.5.0/doc/_extensions/zephyr/ |
D | warnings_filter.py | 73 def __init__(self, pattern): argument 74 self.pattern = pattern 78 matches = bool(re.match(self.pattern, str))
|
D | vcs_link.py | 55 for pattern, prefix in app.config.vcs_link_prefixes.items(): 56 if re.match(pattern, pagename):
|
/Zephyr-Core-3.5.0/scripts/pylib/twister/twisterlib/ |
D | coverage.py | 123 def add_ignore_file(self, pattern): argument 124 self.ignores.append('*' + pattern + '*') 126 def add_ignore_directory(self, pattern): argument 127 self.ignores.append('*/' + pattern + '/*') 183 def add_ignore_file(self, pattern): argument 184 self.ignores.append('.*' + pattern + '.*') 186 def add_ignore_directory(self, pattern): argument 187 self.ignores.append(".*/" + pattern + '/.*')
|
D | quarantine.py | 133 for pattern in list_of_elements: 134 if pattern.fullmatch(element):
|
/Zephyr-Core-3.5.0/samples/drivers/led_lp3943/ |
D | README.rst | 11 a continuous pattern of turning them on one at a time (at a one 37 following output in addition to the LED pattern: 43 [general] [INF] main: Displaying the pattern
|
/Zephyr-Core-3.5.0/tests/boards/intel_adsp/ssp/src/ |
D | main.c | 189 int32_t pattern[4]; in check_transmission() local 202 pattern[i] = sine_buf[i]; in check_transmission() 225 if (buffer[i] == pattern[0] && in check_transmission() 226 buffer[i + 1] == pattern[1] && in check_transmission() 227 buffer[i + 2] == pattern[2] && in check_transmission() 228 buffer[i + 3] == pattern[3]) { in check_transmission()
|
/Zephyr-Core-3.5.0/drivers/video/ |
D | Kconfig.sw_generator | 9 Enable video pattern generator (for testing purposes).
|
/Zephyr-Core-3.5.0/samples/drivers/led_pwm/ |
D | README.rst | 12 (child nodes) the same test pattern (described below) is executed. The LED API 15 Test pattern
|
/Zephyr-Core-3.5.0/drivers/interrupt_controller/ |
D | Kconfig.nxp_pint | 5 bool "Pin interrupt and pattern match engine (PINT) for NXP MCUs"
|
/Zephyr-Core-3.5.0/tests/boards/espressif_esp32/cache_coex/ |
D | README.rst | 11 with a random generated pattern. At the same time, a whole SPI Flash page is updated with another p…
|
/Zephyr-Core-3.5.0/doc/build/kconfig/ |
D | extensions.rst | 25 file. A pattern is required to match at least one file. 33 If the pattern ``foo/bar/*/Kconfig`` matches the files 42 If no files match the pattern, an error is generated. 47 For cases where it's okay for a pattern to match no files (or for a plain
|
/Zephyr-Core-3.5.0/ |
D | .gitattributes | 10 # Tell linguist that generated test pattern files should not be included in the
|
/Zephyr-Core-3.5.0/scripts/gitlint/ |
D | zephyr_commit_rules.py | 97 pattern = re.compile(regex, re.UNICODE) 99 if not pattern.search(title):
|
/Zephyr-Core-3.5.0/samples/drivers/led_lp50xx/ |
D | README.rst | 13 and printed in the log messages. Next, from an infinite loop, a test pattern 18 Test pattern
|
/Zephyr-Core-3.5.0/samples/bluetooth/direction_finding_peripheral/boards/ |
D | nrf52833dk_nrf52820.overlay | 13 /* This is an example switch pattern that will be used to set an
|
/Zephyr-Core-3.5.0/samples/bluetooth/direction_finding_central/boards/ |
D | nrf52833dk_nrf52820.overlay | 13 /* This is an example switch pattern that will be used to set an
|
/Zephyr-Core-3.5.0/samples/bluetooth/direction_finding_connectionless_tx/boards/ |
D | nrf52833dk_nrf52820.overlay | 13 /* This is an example switch pattern that will be used to set an
|