Home
last modified time | relevance | path

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

/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp2026 auto ExternalFile = ExternalFS->openFileForRead(ExtRedirect); in openFileForRead() local
2027 if (!ExternalFile) { in openFileForRead()
2028 if (shouldFallBackToExternalFS(ExternalFile.getError(), Result->E)) in openFileForRead()
2030 return ExternalFile; in openFileForRead()
2033 auto ExternalStatus = (*ExternalFile)->status(); in openFileForRead()
2041 std::make_unique<FileWithFixedStatus>(std::move(*ExternalFile), S)); in openFileForRead()