Searched refs:Type (Results 1 - 25 of 205) sorted by relevance

123456789

/illumos-gate/usr/src/uts/intel/io/acpica/executer/
H A Dexresolv.c167 switch (StackDesc->Common.Type)
269 if ((StackDesc->Reference.Node->Type == ACPI_TYPE_DEVICE) ||
270 (StackDesc->Reference.Node->Type == ACPI_TYPE_THERMAL))
313 "FieldRead SourceDesc=%p Type=%X\n",
314 StackDesc, StackDesc->Common.Type));
358 ACPI_OBJECT_TYPE Type; local
371 Type = ObjDesc->Common.Type;
376 Type = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type;
[all...]
H A Dexstoren.c103 if (SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE)
123 if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) &&
124 (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) &&
125 (SourceDesc->Common.Type != ACPI_TYPE_STRING) &&
126 !((SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) &&
224 if (SourceDesc->Common.Type != DestDesc->Common.Type)
235 Status = AcpiExConvertToTargetType (DestDesc->Common.Type,
257 switch (DestDesc->Common.Type)
H A Dexdebug.c103 (SourceDesc->Common.Type == ACPI_TYPE_STRING))
157 if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) &&
158 (SourceDesc->Common.Type != ACPI_TYPE_STRING))
172 AcpiUtGetTypeName (((ACPI_NAMESPACE_NODE *) SourceDesc)->Type),
183 switch (SourceDesc->Common.Type)
270 switch ((SourceDesc->Reference.Node)->Type)
306 switch (ObjectDesc->Common.Type)
338 ObjectDesc->Common.Type);
H A Dexfield.c166 if (ObjDesc->Common.Type == ACPI_TYPE_BUFFER_FIELD)
181 else if ((ObjDesc->Common.Type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
279 if ((ObjDesc->Common.Type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
314 "FieldRead [TO]: Obj %p, Type %X, Buf %p, ByteLen %X\n",
315 ObjDesc, ObjDesc->Common.Type, Buffer, (UINT32) Length));
384 if (ObjDesc->Common.Type == ACPI_TYPE_BUFFER_FIELD)
399 else if ((ObjDesc->Common.Type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
417 if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER)
492 else if ((ObjDesc->Common.Type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
503 if (SourceDesc->Common.Type !
[all...]
H A Dexresop.c138 * operand and indicates the required Type. The corresponding operand
211 ObjectType = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type;
223 ObjectType = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type;
231 ObjectType = ObjDesc->Common.Type;
304 (ObjDesc->Common.Type == ACPI_TYPE_STRING))
353 ((*StackPtr)->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) &&
515 switch (ObjDesc->Common.Type)
537 switch (ObjDesc->Common.Type)
578 switch (ObjDesc->Common.Type)
602 switch (ObjDesc->Common.Type)
[all...]
H A Dexstore.c128 switch (DestDesc->Common.Type)
265 if (SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE &&
328 if ((ObjDesc->Common.Type != ACPI_TYPE_BUFFER) &&
329 (ObjDesc->Common.Type != ACPI_TYPE_STRING))
338 switch (SourceDesc->Common.Type)
468 if (SourceDesc->Common.Type != ACPI_TYPE_PACKAGE)
493 AcpiUtGetTypeName (Node->Type), Node->Name.Ascii));
557 Node, NewDesc, NewDesc->Common.Type);
629 AcpiUtGetTypeName (Node->Type), Node));
641 Status = AcpiNsAttachObject (Node, NewDesc, NewDesc->Common.Type);
[all...]
H A Dextrace.c61 ACPI_TRACE_EVENT_TYPE Type);
127 * PARAMETERS: Type - Trace event type
139 ACPI_TRACE_EVENT_TYPE Type)
142 switch (Type)
169 * PARAMETERS: Type - Trace event type
182 ACPI_TRACE_EVENT_TYPE Type,
195 AcpiExGetTraceEventName (Type), Begin ? "Begin" : "End",
202 AcpiExGetTraceEventName (Type), Begin ? "Begin" : "End",
138 AcpiExGetTraceEventName( ACPI_TRACE_EVENT_TYPE Type) argument
181 AcpiExTracePoint( ACPI_TRACE_EVENT_TYPE Type, BOOLEAN Begin, UINT8 *Aml, char *Pathname) argument
/illumos-gate/usr/src/uts/intel/io/acpica/resources/
H A Drslist.c104 if (AmlResource->CommonSerialBus.Type >
114 AmlResource->CommonSerialBus.Type];
125 "Invalid/unsupported resource descriptor: Type 0x%2.2X",
137 "Could not convert AML resource (Type 0x%X)", *Aml));
142 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
191 /* Validate the (internal) Resource Type */
193 if (Resource->Type > ACPI_RESOURCE_TYPE_MAX)
197 Resource->Type));
212 if (Resource->Type == ACPI_RESOURCE_TYPE_SERIAL_BUS)
214 if (Resource->Data.CommonSerialBus.Type >
[all...]
H A Drscalc.c231 if (Resource->Type > ACPI_RESOURCE_TYPE_MAX)
245 TotalSize = AcpiGbl_AmlResourceSizes [Resource->Type];
251 switch (Resource->Type)
370 Resource->Data.CommonSerialBus.Type];
442 /* Validate the Resource Type and Resource Length */
566 AmlResource->CommonSerialBus.Type];
587 AmlResource->CommonSerialBus.Type] + ExtraStructBytes;
599 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
674 (PackageElement->Common.Type != ACPI_TYPE_PACKAGE))
696 (*SubObjectList)->Common.Type) ||
[all...]
/illumos-gate/usr/src/cmd/acpi/common/
H A Dutprint.c81 UINT8 Type);
281 * Type - Special printing flags
297 UINT8 Type)
315 if (Type & ACPI_FORMAT_LEFT)
317 Type &= ~ACPI_FORMAT_ZERO;
320 NeedPrefix = ((Type & ACPI_FORMAT_PREFIX) && Base != 10) ? TRUE : FALSE;
321 Upper = (Type & ACPI_FORMAT_UPPER) ? TRUE : FALSE;
322 Zero = (Type & ACPI_FORMAT_ZERO) ? '0' : ' ';
327 if (Type & ACPI_FORMAT_SIGN)
335 else if (Type
290 AcpiUtFormatNumber( char *String, char *End, UINT64 Number, UINT8 Base, INT32 Width, INT32 Precision, UINT8 Type) argument
440 UINT8 Type; local
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutprint.c81 UINT8 Type);
281 * Type - Special printing flags
297 UINT8 Type)
315 if (Type & ACPI_FORMAT_LEFT)
317 Type &= ~ACPI_FORMAT_ZERO;
320 NeedPrefix = ((Type & ACPI_FORMAT_PREFIX) && Base != 10) ? TRUE : FALSE;
321 Upper = (Type & ACPI_FORMAT_UPPER) ? TRUE : FALSE;
322 Zero = (Type & ACPI_FORMAT_ZERO) ? '0' : ' ';
327 if (Type & ACPI_FORMAT_SIGN)
335 else if (Type
290 AcpiUtFormatNumber( char *String, char *End, UINT64 Number, UINT8 Base, INT32 Width, INT32 Precision, UINT8 Type) argument
440 UINT8 Type; local
[all...]
H A Dutdecode.c190 * PARAMETERS: Type - An ACPI object type
194 * DESCRIPTION: Translate a Type ID into a name string (Debug only)
249 ACPI_OBJECT_TYPE Type)
252 if (Type > ACPI_TYPE_INVALID)
257 return (AcpiGbl_NsTypeNames[Type]);
287 return_STR (AcpiUtGetTypeName (ObjDesc->Common.Type));
438 if (Object->Common.Type != ACPI_TYPE_LOCAL_REFERENCE)
558 ACPI_OBJECT_TYPE Type)
579 switch (Type)
614 * PARAMETERS: Type
248 AcpiUtGetTypeName( ACPI_OBJECT_TYPE Type) argument
556 AcpiUtGetNotifyName( UINT32 NotifyValue, ACPI_OBJECT_TYPE Type) argument
623 AcpiUtValidObjectType( ACPI_OBJECT_TYPE Type) argument
[all...]
H A Dutids.c94 if (ObjDesc->Common.Type == ACPI_TYPE_INTEGER)
119 if (ObjDesc->Common.Type == ACPI_TYPE_INTEGER)
182 if (ObjDesc->Common.Type == ACPI_TYPE_INTEGER)
207 if (ObjDesc->Common.Type == ACPI_TYPE_INTEGER)
288 if (ObjDesc->Common.Type == ACPI_TYPE_PACKAGE)
304 switch (CidObjects[i]->Common.Type)
349 if (CidObjects[i]->Common.Type == ACPI_TYPE_INTEGER)
435 if (ObjDesc->Common.Type == ACPI_TYPE_PACKAGE)
437 if (Count > 0 && ClsObjects[0]->Common.Type == ACPI_TYPE_INTEGER)
441 if (Count > 1 && ClsObjects[1]->Common.Type
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/namespace/
H A Dnsaccess.c120 InitVal->Type, ACPI_IMODE_LOAD_PASS2, ACPI_NS_NO_UPSEARCH,
153 ObjDesc = AcpiUtCreateInternalObject (InitVal->Type);
165 switch (InitVal->Type)
234 InitVal->Type));
243 ObjDesc->Common.Type);
274 * Type - Type associated with name
294 ACPI_OBJECT_TYPE Type,
361 while (!AcpiNsOpensScope (PrefixNode->Type) &&
362 PrefixNode->Type !
291 AcpiNsLookup( ACPI_GENERIC_STATE *ScopeInfo, char *Pathname, ACPI_OBJECT_TYPE Type, ACPI_INTERPRETER_MODE InterpreterMode, UINT32 Flags, ACPI_WALK_STATE *WalkState, ACPI_NAMESPACE_NODE **ReturnNode) argument
[all...]
H A Dnssearch.c61 ACPI_OBJECT_TYPE Type,
71 * Type - Object type to match
101 ACPI_OBJECT_TYPE Type,
121 AcpiUtGetTypeName (Type)));
151 AcpiUtGetTypeName (Node->Type),
168 ACPI_CAST_PTR (char, &TargetName), AcpiUtGetTypeName (Type),
181 * Type - Object type to match
204 ACPI_OBJECT_TYPE Type,
227 if (AcpiNsLocal (Type))
231 ACPI_CAST_PTR (char, &TargetName), AcpiUtGetTypeName (Type)));
98 AcpiNsSearchOneScope( UINT32 TargetName, ACPI_NAMESPACE_NODE *ParentNode, ACPI_OBJECT_TYPE Type, ACPI_NAMESPACE_NODE **ReturnNode) argument
201 AcpiNsSearchParentTree( UINT32 TargetName, ACPI_NAMESPACE_NODE *Node, ACPI_OBJECT_TYPE Type, ACPI_NAMESPACE_NODE **ReturnNode) argument
294 AcpiNsSearchAndEnter( UINT32 TargetName, ACPI_WALK_STATE *WalkState, ACPI_NAMESPACE_NODE *Node, ACPI_INTERPRETER_MODE InterpreterMode, ACPI_OBJECT_TYPE Type, UINT32 Flags, ACPI_NAMESPACE_NODE **ReturnNode) argument
[all...]
H A Dnswalk.c96 * PARAMETERS: Type - Type of node to be searched for
113 ACPI_OBJECT_TYPE Type,
127 if (Type == ACPI_TYPE_ANY)
140 if (NextNode->Type == Type)
160 * PARAMETERS: Type - ACPI_OBJECT_TYPE to search for
166 * when an object of "Type" is found
168 * when an object of "Type" is found
191 ACPI_OBJECT_TYPE Type,
112 AcpiNsGetNextNodeTyped( ACPI_OBJECT_TYPE Type, ACPI_NAMESPACE_NODE *ParentNode, ACPI_NAMESPACE_NODE *ChildNode) argument
190 AcpiNsWalkNamespace( ACPI_OBJECT_TYPE Type, ACPI_HANDLE StartNode, UINT32 MaxDepth, UINT32 Flags, ACPI_WALK_CALLBACK DescendingCallback, ACPI_WALK_CALLBACK AscendingCallback, void *Context, void **ReturnValue) argument
[all...]
H A Dnsobject.c60 * Type - Type of object, or ACPI_TYPE_ANY if not
67 * and Type is ACPI_TYPE_ANY, set the name as having no value.
79 ACPI_OBJECT_TYPE Type)
100 if (!Object && (ACPI_TYPE_ANY != Type))
149 ObjectType = ((ACPI_NAMESPACE_NODE *) Object)->Type;
162 ObjectType = Type;
198 Node->Type = (UINT8) ObjectType;
232 (ObjDesc->Common.Type == ACPI_TYPE_LOCAL_DATA))
241 if (ObjDesc->Common.Type
76 AcpiNsAttachObject( ACPI_NAMESPACE_NODE *Node, ACPI_OPERAND_OBJECT *Object, ACPI_OBJECT_TYPE Type) argument
[all...]
H A Dnsarguments.c93 UserArgType = Info->Parameters[i]->Common.Type;
147 if (Node->Type != ACPI_TYPE_METHOD)
155 AcpiUtGetTypeName (Node->Type), RequiredParamCount));
164 AcpiUtGetTypeName (Node->Type)));
233 if (Node->Type != ACPI_TYPE_METHOD)
239 UserParamCount, AcpiUtGetTypeName (Node->Type)));
H A Dnsxfobj.c107 *RetType = Node->Type;
193 * PARAMETERS: Type - Type of object to be searched for
209 ACPI_OBJECT_TYPE Type,
222 if (Type > ACPI_TYPE_EXTERNAL_MAX)
261 Node = AcpiNsGetNextNodeTyped (Type, ParentNode, ChildNode);
H A Dnsdump.c214 ACPI_OBJECT_TYPE Type; local
244 Type = ThisNode->Type;
262 if (Type > ACPI_TYPE_LOCAL_MAX)
265 "Invalid ACPI Object Type 0x%08X", Type));
274 AcpiUtGetTypeName (Type), ThisNode, ThisNode->OwnerId);
296 switch (Type)
316 switch (Type)
460 switch (Type)
682 AcpiNsDumpObjects( ACPI_OBJECT_TYPE Type, UINT8 DisplayType, UINT32 MaxDepth, ACPI_OWNER_ID OwnerId, ACPI_HANDLE StartHandle) argument
821 AcpiNsDumpObjectPaths( ACPI_OBJECT_TYPE Type, UINT8 DisplayType, UINT32 MaxDepth, ACPI_OWNER_ID OwnerId, ACPI_HANDLE StartHandle) argument
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/dispatcher/
H A Ddsmthdat.c58 UINT8 Type,
64 UINT8 Type,
118 WalkState->Arguments[i].Type = ACPI_TYPE_ANY;
131 WalkState->LocalVariables[i].Type = ACPI_TYPE_ANY;
262 * PARAMETERS: Type - Either ACPI_REFCLASS_LOCAL or
276 UINT8 Type,
287 switch (Type)
321 ACPI_ERROR ((AE_INFO, "Type %u is invalid", Type));
333 * PARAMETERS: Type
275 AcpiDsMethodDataGetNode( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState, ACPI_NAMESPACE_NODE **Node) argument
347 AcpiDsMethodDataSetValue( UINT8 Type, UINT32 Index, ACPI_OPERAND_OBJECT *Object, ACPI_WALK_STATE *WalkState) argument
406 AcpiDsMethodDataGetValue( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState, ACPI_OPERAND_OBJECT **DestDesc) argument
519 AcpiDsMethodDataDeleteValue( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState) argument
585 AcpiDsStoreObjectToLocal( UINT8 Type, UINT32 Index, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_WALK_STATE *WalkState) argument
[all...]
H A Ddswscope.c96 * Type - Type of frame being pushed
109 ACPI_OBJECT_TYPE Type,
129 if (!AcpiUtValidObjectType (Type))
132 "Invalid object type: 0x%X", Type));
147 ScopeInfo->Common.Value = (UINT16) Type;
107 AcpiDsScopeStackPush( ACPI_NAMESPACE_NODE *Node, ACPI_OBJECT_TYPE Type, ACPI_WALK_STATE *WalkState) argument
/illumos-gate/usr/src/uts/intel/io/acpica/events/
H A Devhandler.c257 if ((Node->Type != ACPI_TYPE_DEVICE) &&
258 (Node->Type != ACPI_TYPE_REGION) &&
276 if (ObjDesc->Common.Type == ACPI_TYPE_DEVICE)
399 ACPI_OBJECT_TYPE Type; local
410 if ((Node->Type != ACPI_TYPE_DEVICE) &&
411 (Node->Type != ACPI_TYPE_PROCESSOR) &&
412 (Node->Type != ACPI_TYPE_THERMAL) &&
517 if (Node->Type == ACPI_TYPE_ANY)
519 Type = ACPI_TYPE_DEVICE;
523 Type
[all...]
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacnamesp.h118 ACPI_OBJECT_TYPE Type,
134 ACPI_OBJECT_TYPE Type,
164 ACPI_OBJECT_TYPE Type,
279 ACPI_OBJECT_TYPE Type,
287 ACPI_OBJECT_TYPE Type,
360 ACPI_OBJECT_TYPE Type);
412 ACPI_OBJECT_TYPE Type);
492 ACPI_OBJECT_TYPE Type,
500 ACPI_OBJECT_TYPE Type,
508 ACPI_OBJECT_TYPE Type);
[all...]
/illumos-gate/usr/src/uts/common/io/cpqary3/
H A Dcpqary3_scsi.c121 cmdlistp->Request.Type.Type = CISS_TYPE_CMD;
122 cmdlistp->Request.Type.Attribute = CISS_ATTR_ORDERED;
128 cmdlistp->Request.Type.Direction = CISS_XFER_READ;
130 cmdlistp->Request.Type.Direction = CISS_XFER_WRITE;
132 cmdlistp->Request.Type.Direction = CISS_XFER_NONE;
142 cmdlistp->Request.Type.Direction = CISS_XFER_READ;
146 cmdlistp->Request.Type.Direction = CISS_XFER_WRITE;
223 cmdlistp->Request.Type.Type
[all...]

Completed in 98 milliseconds

123456789