Searched refs:Name (Results 1 - 25 of 142) sorted by relevance

123456

/fuchsia/zircon/third_party/lib/acpica/source/tools/acpihelp/
H A Dahmain.c3 * Module Name: ahmain - Main module for the acpi help utility
70 ACPI_USAGE_HEADER ("acpihelp <options> [Name/Prefix | HexValue]");
75 ACPI_OPTION ("-a [Name/Prefix]", "Find/Display both ASL operator and AML opcode name(s)");
76 ACPI_OPTION ("-m [Name/Prefix]", "Find/Display AML opcode name(s)");
83 ACPI_OPTION ("-k [Name/Prefix]", "Find/Display ASL non-operator keyword(s)");
84 ACPI_OPTION ("-p [Name/Prefix]", "Find/Display ASL predefined method name(s)");
85 ACPI_OPTION ("-s [Name/Prefix]", "Find/Display ASL operator name(s)");
88 ACPI_OPTION ("-i [Name/Prefix]", "Find/Display ACPI/PNP Hardware ID(s)");
94 ACPI_USAGE_TEXT ("\nDefault search with valid Name/Prefix and no options:\n");
113 char *Name; local
[all...]
H A Dacpihelp.h3 * Module Name: acpihelp.h - Include file for AcpiHelp utility
101 char *Name; member in struct:ah_asl_operator
109 char *Name; member in struct:ah_asl_keyword
117 char *Name; member in struct:ah_directive_info
132 char *Name);
136 char *Name);
140 char *Name);
144 char *Name);
148 char *Name);
152 char *Name);
[all...]
H A Dahdecode.c3 * Module Name: ahdecode - Operator/Opcode decoding for acpihelp utility
51 #define AH_DISPLAY_EXCEPTION(Status, Name) \
52 printf ("%.4X: %s\n", Status, Name)
55 printf ("%.4X: %-28s (%s)\n", Status, Exception->Name, Exception->Description)
68 char *Name,
73 char *Name);
124 for (Info = PreprocessorDirectives; Info->Name; Info++)
126 printf (" %-36s : %s\n", Info->Name, Info->Description);
135 * PARAMETERS: NamePrefix - Name or prefix to find. Must start with
152 char Name[ local
201 AhDisplayPredefinedName( char *Name, UINT32 Length) argument
271 AhDisplayPredefinedInfo( char *Name) argument
341 AhFindAmlOpcode( char *Name) argument
519 AhFindAslKeywords( char *Name) argument
605 AhFindAslAndAmlOperators( char *Name) argument
634 AhFindAslOperators( char *Name) argument
850 AhDisplayDeviceIds( char *Name) argument
[all...]
/fuchsia/zircon/system/utest/fbl/
H A Dtype_info_tests.cpp34 EXPECT_STR_EQ(fbl::TypeInfo<int>::Name(), "int");
35 EXPECT_STR_EQ(fbl::TypeInfo<double>::Name(), "double");
36 EXPECT_STR_EQ(fbl::TypeInfo<test::Struct>::Name(), "test::Struct");
37 EXPECT_STR_EQ(fbl::TypeInfo<test::StructWithVTable>::Name(), "test::StructWithVTable");
38 EXPECT_STR_EQ(fbl::TypeInfo<test::IncompleteType>::Name(), "test::IncompleteType");
43 EXPECT_STR_NE(fbl::TypeInfo<decltype(lambda)>::Name(), "");
46 EXPECT_STR_EQ(fbl::TypeInfo<decltype(array)>::Name(), "char [10]");
49 EXPECT_STR_EQ(fbl::TypeInfo<decltype(array_reference)>::Name(), "char (&)[10]");
/fuchsia/zircon/system/host/fidl/include/fidl/
H A Dtoken.h23 #define TOKEN(Name) k##Name,
33 static const char* Name(Kind kind) { function in class:fidl::Token
35 #define TOKEN(Name) \
36 case fidl::Token::Kind::k##Name: \
37 return #Name;
/fuchsia/zircon/third_party/lib/acpica/source/components/utilities/
H A Dutstring.c3 * Module Name: utstring - Common functions for strings and characters
206 * PARAMETERS: Name - The name to be examined. Does not have to
220 char *Name)
230 if (!AcpiUtValidAcpiChar (Name[i], i))
244 * PARAMETERS: Name - The ACPI name to be repaired
249 * return the new name. NOTE: the Name parameter must reside in
252 * An ACPI Name must consist of valid ACPI characters. We will repair the name
264 char *Name)
278 if (ACPI_COMPARE_NAME (Name, "\\___"))
283 ACPI_MOVE_NAME (&OriginalName, Name);
219 AcpiUtValidAcpiName( char *Name) argument
263 AcpiUtRepairName( char *Name) argument
[all...]
H A Dutpredef.c3 * Module Name: utpredef - support functions for predefined names
105 * PARAMETERS: Name - Name to find
115 char *Name)
122 if (Name[0] != '_')
130 while (ThisName->Info.Name[0])
132 if (ACPI_COMPARE_NAME (Name, ThisName->Info.Name))
240 * PARAMETERS: Name - Name t
114 AcpiUtMatchPredefinedMethod( char *Name) argument
251 AcpiUtMatchResourceName( char *Name) argument
[all...]
H A Duterror.c3 * Module Name: uterror - Various internal error/warning output functions
212 * InternalName - Name or path of the namespace node
230 char *Name = NULL; local
248 ACPI_UINT32_MAX, InternalName, NULL, &Name);
254 AcpiOsPrintf ("[%s]", Name);
261 if (Name)
263 ACPI_FREE (Name);
H A Dutexcep.c3 * Module Name: utexcep - Exception code support
90 return (Exception->Name);
173 if (!Exception || !Exception->Name)
/fuchsia/zircon/third_party/lib/acpica/source/components/disassembler/
H A Ddmnames.c3 * Module Name: dmnames - AML disassembler, names, namestrings, pathnames
67 * PARAMETERS: Name - 4 character ACPI name
77 UINT32 Name)
86 *ACPI_CAST_PTR (UINT32, &NewName[0]) = Name;
203 * PARAMETERS: Name - ACPI Name string to store
213 char *Name)
218 if (!Name)
225 while (ACPI_IS_ROOT_PREFIX (ACPI_GET8 (Name)) ||
226 ACPI_IS_PARENT_PREFIX (ACPI_GET8 (Name)))
76 AcpiDmDumpName( UINT32 Name) argument
212 AcpiDmNamestring( char *Name) argument
299 UINT32 Name; local
412 AcpiDmValidateName( char *Name, ACPI_PARSE_OBJECT *Op) argument
[all...]
H A Ddmresrc.c3 * Module Name: dmresrc.c - Resource Descriptor disassembly
137 * Name - Associated name (emitted as a comment)
148 char *Name)
150 AcpiOsPrintf ("0x%2.2X, // %s\n", Value, Name);
156 char *Name)
158 AcpiOsPrintf ("0x%4.4X, // %s\n", Value, Name);
164 char *Name)
166 AcpiOsPrintf ("0x%8.8X, // %s\n", Value, Name);
172 char *Name)
174 AcpiOsPrintf ("0x%8.8X%8.8X, // %s\n", ACPI_FORMAT_UINT64 (Value), Name);
146 AcpiDmDumpInteger8( UINT8 Value, char *Name) argument
154 AcpiDmDumpInteger16( UINT16 Value, char *Name) argument
162 AcpiDmDumpInteger32( UINT32 Value, char *Name) argument
170 AcpiDmDumpInteger64( UINT64 Value, char *Name) argument
[all...]
/fuchsia/zircon/third_party/lib/acpica/source/common/
H A Dahids.c3 * Module Name: ahids - Table of ACPI/PNP _HID/_CID values
231 for (Info = AslDeviceIds; Info->Name; Info++)
233 if (!strcmp (HardwareId, Info->Name))
/fuchsia/zircon/third_party/lib/acpica/source/compiler/
H A Daslpredef.c3 * Module Name: aslpredef - support for ACPI predefined names
67 char *Name);
102 case ACPI_PREDEFINED_NAME: /* Resource Name or reserved scope name */
140 ThisName->Info.Name, RequiredArgCount);
166 StringBuffer, ThisName->Info.Name);
275 case ACPI_PREDEFINED_NAME: /* Resource Name or reserved scope name */
307 ApCheckObjectType (ThisName->Info.Name, ReturnValueOp,
337 * Name - The ACPI name to be checked
342 * the ASL Name operator). If it is a predefined ACPI name, ensure
353 char *Name)
351 ApCheckForPredefinedObject( ACPI_PARSE_OBJECT *Op, char *Name) argument
447 ApCheckForPredefinedName( ACPI_PARSE_OBJECT *Op, char *Name) argument
527 ApCheckForSpecialName( ACPI_PARSE_OBJECT *Op, char *Name) argument
[all...]
H A Dasldefine.h3 * Module Name: asldefine.h - Common defines for the iASL compiler
144 #define RsCreateBitField(Op, Name, ByteOffset, BitOffset) \
145 RsCreateResourceField (Op, Name, ByteOffset, BitOffset, 1)
147 #define RsCreateByteField(Op, Name, ByteOffset) \
148 RsCreateResourceField (Op, Name, ByteOffset, 0, 8);
150 #define RsCreateWordField(Op, Name, ByteOffset) \
151 RsCreateResourceField (Op, Name, ByteOffset, 0, 16);
153 #define RsCreateDwordField(Op, Name, ByteOffset) \
154 RsCreateResourceField (Op, Name, ByteOffset, 0, 32);
156 #define RsCreateQwordField(Op, Name, ByteOffse
[all...]
H A Dprmacros.c3 * Module Name: prmacros - Preprocessor #define macro support
89 * PARAMETERS: Identifier - Name to be replaced
125 * Name already exists. This is only an error if the target name
169 * PARAMETERS: DefineName - Name of define to be removed
217 * Name was not found. By definition of #undef, this is not
230 * PARAMETERS: MatchString - Name associated with the #define
264 * PARAMETERS: Name - Start of the macro definition
276 char *Name,
296 TokenOffset = Name - Gbl_MainTokenBuffer + strlen (Name)
275 PrAddMacro( char *Name, char **Next) argument
[all...]
H A Daslanalyze.c3 * Module Name: aslanalyze.c - Support functions for parse tree walks
345 StringBuffer, OpInfo->Name, StringBuffer2);
443 char Name[ACPI_NAME_SIZE + 1]; local
449 ACPI_MOVE_32_TO_32 (Name, &Op->Asl.NameSeg);
450 Name[ACPI_NAME_SIZE] = 0;
458 if ((Name[0] != '_') ||
459 ((Name[1] != 'L') && (Name[1] != 'E')))
466 GpeNumber = strtoul (&Name[2], NULL, 16);
476 ACPI_MOVE_32_TO_32 (Target, Name);
589 ApFindNameInScope( char *Name, ACPI_PARSE_OBJECT *Op) argument
[all...]
/fuchsia/zircon/third_party/lib/acpica/source/components/debugger/
H A Ddbfileio.c3 * Module Name: dbfileio - Debugger file I/O commands. These can't usually
94 * PARAMETERS: Name - Filename to open
104 char *Name)
110 AcpiGbl_DebugFile = fopen (Name, "w+");
113 AcpiOsPrintf ("Could not open debug file %s\n", Name);
117 AcpiOsPrintf ("Debug output file %s opened\n", Name);
118 strncpy (AcpiGbl_DbDebugFilename, Name,
103 AcpiDbOpenDebugFile( char *Name) argument
H A Ddbutils.c3 * Module Name: dbutils - AML debugger utilities
95 for (i = 0; Arguments[i].Name; i++)
97 if (strstr (Arguments[i].Name, UserArgument) == Arguments[i].Name)
253 * PARAMETERS: Name - String to prepare
263 char *Name)
266 if (!Name)
271 AcpiUtStrupr (Name);
275 if (*Name == '/')
277 *Name
262 AcpiDbPrepNamestring( char *Name) argument
318 AcpiDbLocalNsLookup( char *Name) argument
[all...]
/fuchsia/zircon/kernel/lib/fbl/include/fbl/
H A Dname.h27 class Name { class in namespace:fbl
32 // Create an empty (i.e., "" with exactly 1 byte: a nul) Name.
33 Name() {} function in class:fbl::Name
37 Name(const char* name, size_t len) { function in class:fbl::Name
41 ~Name() = default;
43 // Copy the Name's data out. The written data is guaranteed to be
54 // Reset the Name to the given data. This will be guaranteed to
69 Name& operator=(const Name<Size>& other) {
80 // access to the Name migh
[all...]
/fuchsia/zircon/third_party/lib/acpica/source/include/acpica/
H A Dacapps.h3 * Module Name: acapps - common include for ACPI applications/tools
93 #define ACPI_OPTION(Name, Description) \
94 AcpiOsPrintf (" %-20s%s\n", Name, Description);
99 #define ACPI_CHECK_STATUS(Name, Status, Expected) \
103 AcpiFormatException (Status), #Name, _AcpiModuleName, __LINE__); \
109 #define ACPI_CHECK_OK(Name, Status) ACPI_CHECK_STATUS (Name, Status, AE_OK);
H A Dacdebug.h3 * Name: acdebug.h - ACPI/AML debugger
58 char *Name; /* Command Name */ member in struct:acpi_db_command_info
73 char *Name; /* Argument Name */ member in struct:acpi_db_argument_info
124 char *Name);
128 char *Name,
228 char *Name);
245 char *Name);
341 char *Name,
[all...]
/fuchsia/zircon/system/host/fidl/lib/
H A Didentifier_table.cpp13 #define KEYWORD(Name, Spelling) {Spelling, Token::k##Name},
/fuchsia/zircon/third_party/lib/acpica/source/components/resources/
H A Drsdump.c3 * Module Name: rsdump - AML debugger support for resource structures.
266 char *Name; local
278 Name = Table->Name;
286 if (Table->Name)
288 AcpiOsPrintf ("%s Resource\n", Name);
296 AcpiRsOutString (Name, ACPI_CAST_PTR (char, Table->Pointer));
301 AcpiRsOutString (Name, ACPI_CAST_PTR (char, Target));
310 AcpiRsOutString (Name, ACPI_CAST_PTR (char,
315 AcpiRsOutInteger8 (Name, ACPI_GET
[all...]
/fuchsia/zircon/third_party/lib/acpica/source/components/events/
H A Devgpeinit.c3 * Module Name: evgpeinit - System GPE initialization and update
340 char Name[ACPI_NAME_SIZE + 1]; local
360 ACPI_MOVE_32_TO_32 (Name, &MethodNode->Name.Integer);
361 Name[ACPI_NAME_SIZE] = 0;
363 /* 2) Name must begin with an underscore */
365 if (Name[0] != '_')
374 switch (Name[1])
392 "(name not of form _Lxx or _Exx)", Name));
398 GpeNumber = strtoul (&Name[
[all...]
/fuchsia/zircon/third_party/lib/acpica/source/components/parser/
H A Dpsutils.c3 * Module Name: psutils - Parser miscellaneous utilities (Parser only)
78 ScopeOp->Named.Name = ACPI_ROOT_NAME;
108 (AcpiPsGetOpcodeInfo (Opcode))->Name,
260 return (Op->Named.Name);
280 Op->Named.Name = name;

Completed in 77 milliseconds

123456