Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/acpica/dist/common/
H A Ddmextern.c320 ACPI_EXTERNAL_FILE *ExternalFile; in AcpiDmAddToExternalFileList() local
335 ExternalFile = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EXTERNAL_FILE)); in AcpiDmAddToExternalFileList()
336 if (!ExternalFile) in AcpiDmAddToExternalFileList()
345 ExternalFile->Path = LocalPathname; in AcpiDmAddToExternalFileList()
349 ExternalFile->Next = AcpiGbl_ExternalFileList; in AcpiDmAddToExternalFileList()
352 AcpiGbl_ExternalFileList = ExternalFile; in AcpiDmAddToExternalFileList()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DVirtualFileSystem.cpp2025 auto ExternalFile = ExternalFS->openFileForRead(ExtRedirect); in openFileForRead() local
2026 if (!ExternalFile) { in openFileForRead()
2027 if (shouldFallBackToExternalFS(ExternalFile.getError(), Result->E)) in openFileForRead()
2029 return ExternalFile; in openFileForRead()
2032 auto ExternalStatus = (*ExternalFile)->status(); in openFileForRead()
2040 std::make_unique<FileWithFixedStatus>(std::move(*ExternalFile), S)); in openFileForRead()