Home
last modified time | relevance | path

Searched refs:ExternalFile (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/sys/contrib/dev/acpica/common/
H A Ddmextern.c428 ACPI_EXTERNAL_FILE *ExternalFile; in AcpiDmAddToExternalFileList() local
443 ExternalFile = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EXTERNAL_FILE)); in AcpiDmAddToExternalFileList()
444 if (!ExternalFile) in AcpiDmAddToExternalFileList()
453 ExternalFile->Path = LocalPathname; in AcpiDmAddToExternalFileList()
457 ExternalFile->Next = AcpiGbl_ExternalFileList; in AcpiDmAddToExternalFileList()
460 AcpiGbl_ExternalFileList = ExternalFile; in AcpiDmAddToExternalFileList()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp2492 auto ExternalFile = File::getWithPath( in openFileForRead() local
2494 if (!ExternalFile) { in openFileForRead()
2496 isFileNotFound(ExternalFile.getError(), Result->E)) { in openFileForRead()
2503 return ExternalFile; in openFileForRead()
2506 auto ExternalStatus = (*ExternalFile)->status(); in openFileForRead()
2515 std::make_unique<FileWithFixedStatus>(std::move(*ExternalFile), S)); in openFileForRead()