Home
last modified time | relevance | path

Searched refs:file_stat (Results 1 – 9 of 9) sorted by relevance

/hardware/nxp/secure_element/snxxx/libese-teq1/nxp-ese/utils/
Dese_config.cpp38 struct stat file_stat; in findConfigPath() local
39 if (stat(path.c_str(), &file_stat) != 0) continue; in findConfigPath()
40 if (S_ISREG(file_stat.st_mode)) return path; in findConfigPath()
/hardware/nxp/secure_element/pn8x/libese-spi/p73/utils/
Dese_config.cpp39 struct stat file_stat; in findConfigPath() local
40 if (stat(path.c_str(), &file_stat) != 0) continue; in findConfigPath()
41 if (S_ISREG(file_stat.st_mode)) return path; in findConfigPath()
/hardware/st/secure_element/ese-spi-driver/utils-lib/
Dese_config.cc41 struct stat file_stat; in findConfigPath() local
42 if (stat(path.c_str(), &file_stat) != 0) continue; in findConfigPath()
43 if (S_ISREG(file_stat.st_mode)) return path; in findConfigPath()
/hardware/st/nfc/1.0/adaptation/
Dconfig.cpp151 struct stat file_stat; in findConfigFile() local
152 if (stat(filePath.c_str(), &file_stat) == 0 && S_ISREG(file_stat.st_mode)) { in findConfigFile()
/hardware/st/nfc/st21nfc/adaptation/
Dconfig.cpp156 struct stat file_stat; in findConfigFile() local
157 if (stat(filePath.c_str(), &file_stat) == 0 && S_ISREG(file_stat.st_mode)) { in findConfigFile()
/hardware/samsung/nfc/halimpl/src/
Dconfig.cpp243 struct stat file_stat; in findConfigFilePathFromTransportConfigPaths() local
244 if (stat(filePath.c_str(), &file_stat) == 0 && S_ISREG(file_stat.st_mode)) { in findConfigFilePathFromTransportConfigPaths()
/hardware/nxp/nfc/pn8x/halimpl/utils/
DphNxpConfig.cpp222 struct stat file_stat; in findConfigFilePathFromTransportConfigPaths() local
223 if (stat(filePath.c_str(), &file_stat) == 0 && S_ISREG(file_stat.st_mode)) { in findConfigFilePathFromTransportConfigPaths()
/hardware/nxp/nfc/snxxx/halimpl/utils/
DphNxpConfig.cc248 struct stat file_stat; in findConfigFilePathFromTransportConfigPaths() local
249 if (stat(filePath.c_str(), &file_stat) == 0 && S_ISREG(file_stat.st_mode)) { in findConfigFilePathFromTransportConfigPaths()
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dtinyexr.h4907 struct MZ_FILE_STAT_STRUCT file_stat; in mz_zip_get_file_modified_time()
4910 if (MZ_FILE_STAT(pFilename, &file_stat) != 0) return MZ_FALSE; in mz_zip_get_file_modified_time()
4911 mz_zip_time_to_dos_time(file_stat.st_mtime, pDOS_time, pDOS_date); in mz_zip_get_file_modified_time()
5473 mz_zip_archive_file_stat file_stat; in mz_zip_reader_extract_to_mem_no_alloc() local
5483 if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) return MZ_FALSE; in mz_zip_reader_extract_to_mem_no_alloc()
5487 if (!file_stat.m_comp_size) return MZ_TRUE; in mz_zip_reader_extract_to_mem_no_alloc()
5496 if (file_stat.m_bit_flag & (1 | 32)) return MZ_FALSE; in mz_zip_reader_extract_to_mem_no_alloc()
5499 if ((!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (file_stat.m_method != 0) && in mz_zip_reader_extract_to_mem_no_alloc()
5500 (file_stat.m_method != MZ_DEFLATED)) in mz_zip_reader_extract_to_mem_no_alloc()
5504 needed_size = (flags & MZ_ZIP_FLAG_COMPRESSED_DATA) ? file_stat.m_comp_size in mz_zip_reader_extract_to_mem_no_alloc()
[all …]