/hal_espressif-3.5.0/components/fatfs/test/ |
D | test_fatfs_rawflash.c | 187 const char* names[4]; variable 196 names[count] = "1.txt"; 200 names[count] = "2.txt"; 204 names[count] = "inner"; 208 names[count] = "boo.bin"; 219 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[0])); 223 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[3])); 227 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[1])); 231 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[2])); 291 char names[4][64]; variable [all …]
|
D | test_fatfs_common.c | 556 const char* names[4]; in test_fatfs_opendir_readdir_rewinddir() local 565 names[count] = "1.txt"; in test_fatfs_opendir_readdir_rewinddir() 569 names[count] = "2.txt"; in test_fatfs_opendir_readdir_rewinddir() 573 names[count] = "inner"; in test_fatfs_opendir_readdir_rewinddir() 577 names[count] = "boo.bin"; in test_fatfs_opendir_readdir_rewinddir() 588 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[0])); in test_fatfs_opendir_readdir_rewinddir() 592 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[3])); in test_fatfs_opendir_readdir_rewinddir() 596 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[1])); in test_fatfs_opendir_readdir_rewinddir() 600 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[2])); in test_fatfs_opendir_readdir_rewinddir() 636 const char* names[4]; in test_fatfs_opendir_readdir_rewinddir_utf_8() local [all …]
|
/hal_espressif-3.5.0/ |
D | .pylintrc | 3 # A comma-separated list of package or module names from where C extensions may 11 # Add files or directories to the blacklist. They should be base names, not 16 # regex matches against base names, not paths. 32 # List of plugins (as comma separated values of python module names) to load, 226 # List of class names for which member attributes should not be checked (useful 228 # qualified names. 231 # List of module names for which member attributes should not be checked 234 # supports qualified module names, as well as Unix pattern matching. 237 # Show a hint with possible names when a member name was not found. The aspect 245 # The total number of similar names that should be taken in consideration when [all …]
|
/hal_espressif-3.5.0/components/freertos/test/ |
D | test_freertos_debug_functions.c | 24 static char *names[NO_OF_QUEUES_TOTAL]; variable 34 names[i + offset] = calloc(QUEUE_NAME_MAX_LENGTH, sizeof(char)); in test_queue_registry_task() 35 sprintf(names[i + offset], "Queue%d%d", core, i); in test_queue_registry_task() 40 …vQueueAddToRegistry(handles[i + offset] , names[i + offset]); //Register queues to queue registry in test_queue_registry_task() 74 TEST_ASSERT(addr == names[i]) //Check vQueueAddToRegistry was successful 93 free(names[i]); 94 names[i] = NULL;
|
/hal_espressif-3.5.0/components/spiffs/test/ |
D | test_spiffs.c | 230 const char* names[4]; in test_spiffs_opendir_readdir_rewinddir() local 239 names[count] = "1.txt"; in test_spiffs_opendir_readdir_rewinddir() 243 names[count] = "2.txt"; in test_spiffs_opendir_readdir_rewinddir() 247 names[count] = "inner/3.txt"; in test_spiffs_opendir_readdir_rewinddir() 251 names[count] = "boo.bin"; in test_spiffs_opendir_readdir_rewinddir() 262 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[0])); in test_spiffs_opendir_readdir_rewinddir() 266 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[3])); in test_spiffs_opendir_readdir_rewinddir() 270 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[1])); in test_spiffs_opendir_readdir_rewinddir() 274 TEST_ASSERT_EQUAL(0, strcasecmp(de->d_name, names[2])); in test_spiffs_opendir_readdir_rewinddir() 398 char names[4][64]; in test_spiffs_concurrent() local [all …]
|
/hal_espressif-3.5.0/components/efuse/ |
D | efuse_table_gen.py | 99 names = [p.field_name for p in res] 100 duplicates = set(n for n in names if names.count(n) > 1) 120 names = [p.field_name for p in self] 121 names += [name.replace('.', '_') for name in names if '.' in name] 122 duplicates = set(n for n in names if names.count(n) > 1)
|
/hal_espressif-3.5.0/components/esptool_py/esptool/docs/en/espefuse/ |
D | read-write-protections-cmd.rst | 8 - ``espefuse.py read_protect_efuse``. It sets read protection for given eFuse names. 9 - ``espefuse.py write_protect_efuse``. It sets write protection for given eFuse names. 13 - eFuse name. It can recieve a list of eFuse names (like EFUSE_NAME1 EFUSE_NAME2 etc.). 19 Not all eFuses have read and write protections. See the help for these commands for the eFuse names…
|
D | burn-efuse-cmd.rst | 6 …n_efuse`` command burns eFuses. The arguments to ``burn_efuse`` are eFuse names (as shown in summa… 13 It can be list of eFuse names and values (like EFUSE_NAME1 1 EFUSE_NAME2 7 EFUSE_NAME3 10 etc.).
|
/hal_espressif-3.5.0/components/esptool_py/esptool/ |
D | setup.py | 24 def read(*names, **kwargs): argument 26 os.path.join(os.path.dirname(__file__), *names),
|
/hal_espressif-3.5.0/docs/en/api-reference/ |
D | kconfig.rst | 35 - Within any menu, option names should have a consistent prefix. The prefix length is currently set… 72 ``Kconfig`` option names. Old options are replaced by new ones in the ``sdkconfig`` file. 87 …names are upper case with underscores. When Kconfig generates sdkconfig and sdkconfig.h files, opt…
|
/hal_espressif-3.5.0/components/partition_table/ |
D | gen_esp32part.py | 222 names = [p.name for p in self] 223 duplicates = set(n for n in names if names.count(n) > 1) 416 for names in (t.keys() for t in SUBTYPES.values()): 417 all_subtype_names += names
|
/hal_espressif-3.5.0/examples/cxx/rtti/ |
D | README.md | 11 The example prints demangled type names of a few objects and functions, obtained from `typeinfo().n… 36 Type names of a few objects:
|
/hal_espressif-3.5.0/tools/test_apps/build_system/embed_test/main/ |
D | CMakeLists.txt | 3 # Test file names starting with a number, a letter and an underscore.
|
/hal_espressif-3.5.0/components/esptool_py/esptool/espefuse/efuse/ |
D | base_operations.py | 508 names = ", ".join(e.name for e in all_disabling) 511 % ("s" if len(all_disabling) > 1 else "", names) 543 names = ", ".join(e.name for e in all_disabling) 546 % ("s" if len(all_disabling) > 1 else "", names)
|
/hal_espressif-3.5.0/tools/mocks/freertos/ |
D | Kconfig | 10 names.
|
/hal_espressif-3.5.0/zephyr/esp32/src/linker/ |
D | esp32.rom.alias.ld | 3 /* Consider using prefix in all names when adding it */
|
/hal_espressif-3.5.0/components/esp_rom/esp32s2/ld/ |
D | esp32s2.rom.spiflash.ld | 2 * SPI flash driver function, compatibility names.
|
/hal_espressif-3.5.0/docs/en/contribute/ |
D | creating-examples.rst | 29 …`naming section of the style guide <style-guide-naming>`. (For non-static names which are only spe… 32 * Options in the example (like network names, addresses, etc) are not hard-coded. Use configuration…
|
D | style-guide.rst | 27 …names (non-static variables and functions) should be namespaced with a per-component or per-unit p… 326 * **Class and struct** names shall be written in ``CamelCase`` with a capital letter as beginning. … 450 - Use lowercase (``with_underscores``) for command, function, and macro names.
|
/hal_espressif-3.5.0/zephyr/esp32c3/src/linker/ |
D | esp32c3.rom.alias.ld | 3 /* Consider using prefix in all names when adding it */
|
/hal_espressif-3.5.0/zephyr/esp32s2/src/linker/ |
D | esp32s2.rom.alias.ld | 3 /* Consider using prefix in all names when adding it */
|
/hal_espressif-3.5.0/docs/zh_CN/hw-reference/ |
D | index.rst | 16 乐鑫产品选型工具 <https://products.espressif.com/#/product-selector?names=>
|
/hal_espressif-3.5.0/zephyr/esp32s3/src/linker/ |
D | esp32s3.rom.alias.ld | 3 /* Consider using prefix in all names when adding it */
|
/hal_espressif-3.5.0/docs/en/hw-reference/ |
D | index.rst | 16 ESP Product Selector <https://products.espressif.com/#/product-selector?names=>
|
/hal_espressif-3.5.0/components/esp_rom/esp32/ld/ |
D | esp32.rom.redefined.ld | 3 and different definitions for functions with the same names are provided.
|