Searched refs:d_name (Results 1 – 9 of 9) sorted by relevance
/hal_espressif-3.6.0/components/fatfs/test/ |
D | test_fatfs_rawflash.c | 170 if (strcasecmp(de->d_name, "test_opd.txt") == 0) { 193 printf("found '%s'\n", de->d_name); 194 if (strcasecmp(de->d_name, "1.txt") == 0) { 198 } else if (strcasecmp(de->d_name, "2.txt") == 0) { 202 } else if (strcasecmp(de->d_name, "inner") == 0) { 206 } else if (strcasecmp(de->d_name, "boo.bin") == 0) { 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]));
|
D | test_fatfs_common.c | 515 if (strcasecmp(de->d_name, file_name) == 0) { in test_fatfs_can_opendir() 562 printf("found '%s'\n", de->d_name); in test_fatfs_opendir_readdir_rewinddir() 563 if (strcasecmp(de->d_name, "1.txt") == 0) { in test_fatfs_opendir_readdir_rewinddir() 567 } else if (strcasecmp(de->d_name, "2.txt") == 0) { in test_fatfs_opendir_readdir_rewinddir() 571 } else if (strcasecmp(de->d_name, "inner") == 0) { in test_fatfs_opendir_readdir_rewinddir() 575 } else if (strcasecmp(de->d_name, "boo.bin") == 0) { 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() [all …]
|
/hal_espressif-3.6.0/components/spiffs/test/ |
D | test_spiffs.c | 191 if (strcasecmp(de->d_name, file_name) == 0) { in test_spiffs_can_opendir() 236 printf("found '%s'\n", de->d_name); in test_spiffs_opendir_readdir_rewinddir() 237 if (strcasecmp(de->d_name, "1.txt") == 0) { in test_spiffs_opendir_readdir_rewinddir() 241 } else if (strcasecmp(de->d_name, "2.txt") == 0) { in test_spiffs_opendir_readdir_rewinddir() 245 } else if (strcasecmp(de->d_name, "inner/3.txt") == 0) { in test_spiffs_opendir_readdir_rewinddir() 249 } else if (strcasecmp(de->d_name, "boo.bin") == 0) { 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() [all …]
|
/hal_espressif-3.6.0/examples/protocols/http_server/file_serving/main/ |
D | file_server.c | 116 strlcpy(entrypath + dirpath_len, entry->d_name, sizeof(entrypath) - dirpath_len); in http_resp_dir_html() 118 ESP_LOGE(TAG, "Failed to stat %s : %s", entrytype, entry->d_name); in http_resp_dir_html() 122 ESP_LOGI(TAG, "Found %s : %s (%s bytes)", entrytype, entry->d_name, entrysize); in http_resp_dir_html() 127 httpd_resp_sendstr_chunk(req, entry->d_name); in http_resp_dir_html() 132 httpd_resp_sendstr_chunk(req, entry->d_name); in http_resp_dir_html() 140 httpd_resp_sendstr_chunk(req, entry->d_name); in http_resp_dir_html()
|
/hal_espressif-3.6.0/components/newlib/platform_include/sys/ |
D | dirent.h | 52 char d_name[MAXNAMLEN+1]; /*!< zero-terminated file name */ member 54 char d_name[256]; member
|
/hal_espressif-3.6.0/components/spiffs/test_spiffs_host/ |
D | test_spiffs.cpp | 102 char *name = entry->d_name; in check_spiffs_files()
|
/hal_espressif-3.6.0/components/fatfs/vfs/ |
D | vfs_fat.c | 784 strlcpy(entry->d_name, fat_dir->filinfo.fname, in vfs_fat_readdir_r() 785 sizeof(entry->d_name)); in vfs_fat_readdir_r()
|
/hal_espressif-3.6.0/components/spiffs/ |
D | esp_spiffs.c | 688 snprintf(entry->d_name, SPIFFS_OBJ_NAME_LEN, "%s", item_name); in vfs_spiffs_readdir_r()
|
/hal_espressif-3.6.0/components/nvs_flash/test_nvs_host/ |
D | test_nvs.cpp | 3188 filename = file->d_name; 3236 filename = file->d_name;
|