/src/sys/external/bsd/acpica/dist/tools/acpixtract/ |
axmain.c | 204 char *Filename; 281 /* Input filename is always required */ 283 Filename = argv[AcpiGbl_Optind]; 284 if (!Filename) 286 printf ("Missing required input filename\n"); 296 Status = AxExtractTables (Filename, NULL, AX_OPTIONAL_TABLES); 301 Status = AxExtractToMultiAmlFile (Filename); 306 Status = AxListAllTables (Filename); 311 Status = AxExtractTables (Filename, AcpiGbl_Optarg, AX_REQUIRED_TABLE); 319 Status = AxExtractTables (Filename, "DSDT", AX_REQUIRED_TABLE) [all...] |
/src/sys/external/bsd/acpica/dist/compiler/ |
cvdisasm.c | 478 FNode->Filename, FNode->Parent->Filename); 483 AcpiOsPrintf ("Include (\"%s\")\n", FNode->Filename); 485 FNode->Filename); 510 char *Filename = Op->Common.CvFilename; 516 Filename); 517 FNode = CvFilenameExists (Filename, AcpiGbl_FileTreeRoot); 521 * At this point, each Filename should exist in AcpiGbl_FileTreeRoot 526 Filename, strerror (errno)); 541 AcpiUtStricmp (Current->Filename, AcpiGbl_CurrentFilename) [all...] |
aslparseop.c | 293 Op->Asl.Filename = Child->Asl.Filename; 517 Op->Asl.Filename = OriginalOp->Asl.Filename; 722 char *Filename = NULL; 746 /* Op.Asl.Filename contains the full pathname to the file */ 748 Op->Asl.Value.String = Op->Asl.Filename; 755 /* Get the simple filename from the full path */ 757 Status = FlSplitInputPathname (Op->Asl.Filename, NULL, &Filename); [all...] |
aslfiles.c | 164 char *Filename); 219 AslGbl_Files[i].Filename = NULL; 223 AslGbl_Files[ASL_FILE_STDOUT].Filename = "STDOUT"; 234 AslGbl_Files[ASL_FILE_STDERR].Filename = "STDERR"; 243 * PARAMETERS: Filename - File name to be searched 253 char *Filename) 260 if (!strcmp (Filename, Current->Files[ASL_FILE_INPUT].Filename)) 289 char *PrevFilename = Current->Files[ASL_FILE_INPUT].Filename; 294 if (!strcmp(Current->Files[ASL_FILE_INPUT].Filename, InputFilename) [all...] |
asloperands.c | 1055 char *Filename; 1067 /* Get AML filename. Use it if non-null */ 1078 FlSwitchFileSet (Op->Asl.Filename); 1081 * We will use the AML filename that is embedded in the source file 1082 * for the output filename. 1084 Filename = UtLocalCacheCalloc (strlen (AslGbl_DirectoryPath) + 1089 strcpy (Filename, AslGbl_DirectoryPath); 1090 strcat (Filename, (char *) Child->Asl.Value.Buffer); 1092 AslGbl_OutputFilenamePrefix = Filename; 1097 * filename. Since all files were opened previously, remove th [all...] |
cvparser.c | 170 char *Filename); 179 char *Filename, 192 * PARAMETERS: filename - input filename 198 * .dsl, we will assume that it is a proper filename. 204 char *Filename) 206 UINT64 Length = strlen(Filename); 207 char *FileExt = Filename + Length - 4; 218 if (!isprint ((int) Filename[i])) 249 char *Filename = NULL [all...] |
preprocess.h | 230 char *Filename; 390 char *Filename, 397 char *Filename, 404 char *Filename);
|
asltypes.h | 247 char *Filename; 268 * Corresponding filename suffixes are in comments 357 * The source filename represents the name of the .src of where the error 371 char *Filename; 407 char *Filename; 420 char *Filename; 519 char *Filename;
|
/src/sys/external/bsd/acpica/dist/tools/acpidump/ |
apfiles.c | 166 * PARAMETERS: Pathname - Output filename 208 * PARAMETERS: Pathname - Output filename 258 * filename from the table signature. 267 char Filename[ACPI_NAMESEG_SIZE + 16]; 278 /* Construct lower-case filename from the table local signature */ 282 ACPI_COPY_NAMESEG (Filename, ACPI_RSDP_NAME); 286 ACPI_COPY_NAMESEG (Filename, Table->Signature); 289 Filename[0] = (char) tolower ((int) Filename[0]); 290 Filename[1] = (char) tolower ((int) Filename[1]) [all...] |
/src/sys/external/bsd/acpica/dist/common/ |
adfile.c | 167 char *Filename, 183 * DESCRIPTION: Build an output filename from an ACPI table ID string 219 * PARAMETERS: Filename - name of file 231 char *Filename, 239 File = fopen (Filename, "wb"); 242 printf ("Could not open file %s\n", Filename); 249 printf ("Could not write to file %s\n", Filename); 279 char *Filename; 282 Filename = AdGenerateFilename (TableName, OemTableId); 283 AdWriteBuffer (Filename, (char *) Table, Length) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/profile/ |
InstrProfilingFile.c | 74 const char *Filename; 77 Filename = __llvm_profile_CurrentFilename; 78 if (!Filename || !Filename[0]) 82 if (strchr(Filename, '/')) { 83 char *Copy = malloc(strlen(Filename) + 1); 84 strcpy(Copy, Filename); 90 File = fopen(Filename, "w"); 96 static void setFilename(const char *Filename, int OwnsFilename) { 97 /* Check if this is a new filename and therefore needs truncation. * [all...] |
/src/sys/external/bsd/acpica/dist/tools/acpisrc/ |
asfile.c | 167 char *Filename, 200 char *Filename; 227 while ((Filename = AcpiOsGetNextFilename (DirInfo))) 237 if (!AsCheckForDirectory (SourcePath, TargetPath, Filename, 240 VERBOSE_PRINT (("Subdirectory: %s\n", Filename)); 252 VERBOSE_PRINT (("File: %s\n", Filename)); 255 MaxPathLength, Filename, FileType); 353 char *Filename, 387 Filename, LfCount); 392 printf ("%s: %u lone linefeeds in file\n", Filename, LfCount) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
ubsan_value.h | 46 const char *Filename; 51 SourceLocation() : Filename(), Line(), Column() {} 52 SourceLocation(const char *Filename, unsigned Line, unsigned Column) 53 : Filename(Filename), Line(Line), Column(Column) {} 56 bool isInvalid() const { return !Filename; } 64 return SourceLocation(Filename, Line, OldColumn); 73 /// \brief Get the presumed filename for the source location. 74 const char *getFilename() const { return Filename; }
|
/src/sys/external/bsd/acpica/dist/os_specific/service_layers/ |
oslinuxtbl.c | 182 char *Filename, 193 char *Filename, 1280 char *Filename; 1294 while ((Filename = AcpiOsGetNextFilename (TableDir))) 1298 Status = OslTableNameFromFile (Filename, TempName, &Instance); 1437 * PARAMETERS: Filename - File that contains the desired table 1452 char *Filename, 1459 if (strlen (Filename) < ACPI_NAMESEG_SIZE) 1466 if (isdigit ((int) Filename[ACPI_NAMESEG_SIZE])) 1468 sscanf (&Filename[ACPI_NAMESEG_SIZE], "%u", Instance) [all...] |
/src/sys/external/bsd/acpica/dist/include/ |
aclocal.h | 1055 char *CvFilename; /* Filename associated with this node. Used for ASL/ASL+ converter */\ 1056 char *CvParentFilename) /* Parent filename associated with this node. Used for ASL/ASL+ converter */ 1122 char *Filename; 1166 char *Filename;
|