HomeSort by: relevance | last modified time | path
    Searched refs:Object (Results 1 - 25 of 79) sorted by relevancy

1 2 3 4

  /src/sys/external/bsd/acpica/dist/utilities/
utdelete.c 3 * Module Name: utdelete - object deletion and reference count utilities
166 ACPI_OPERAND_OBJECT *Object);
170 ACPI_OPERAND_OBJECT *Object,
178 * PARAMETERS: Object - Object to be deleted
182 * DESCRIPTION: Low level object deletion, after reference counts have been
189 ACPI_OPERAND_OBJECT *Object)
199 ACPI_FUNCTION_TRACE_PTR (UtDeleteInternalObj, Object);
202 if (!Object)
208 * Must delete or free any pointers within the object that are no
    [all...]
utcache.c 165 * ObjectSize - Size of each cached object
167 * ReturnCache - Where the new cache object is returned
171 * DESCRIPTION: Create a cache object
193 /* Create the cache object */
201 /* Populate the cache object and return it */
217 * PARAMETERS: Cache - Handle to cache object
251 /* Delete and unlink one cached state object */
269 * PARAMETERS: Cache - Handle to cache object
274 * cache object.
296 /* Now we can delete the cache object */
    [all...]
utdecode.c 162 * Properties of the ACPI Object Types, both internal and external.
183 ACPI_NS_NORMAL, /* 16 Debug Object */
300 * PARAMETERS: Type - An ACPI object type
302 * RETURN: Decoded ACPI object type name
319 /* Printable names of the ACPI object types */
380 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Null Object Descriptor\n"));
381 return_STR ("[NULL Object Descriptor]");
390 "Invalid object descriptor type: 0x%2.2X [%s] (%p)\n",
394 return_STR ("Invalid object");
405 * PARAMETERS: Object - A namespace nod
    [all...]
utobject.c 3 * Module Name: utobject - ACPI object create/delete/size/cache routines
187 * Type - ACPI Type of the new object
189 * RETURN: A new internal object, null on failure
191 * DESCRIPTION: Create and initialize a new internal object.
193 * NOTE: We always allocate the worst-case object descriptor because
196 * the most memory efficient, but the efficiency of the object
208 ACPI_OPERAND_OBJECT *Object;
216 /* Allocate the raw object descriptor */
218 Object = AcpiUtAllocateObjectDescDbg (
220 if (!Object)
    [all...]
utstate.c 3 * Module Name: utstate - state object support procedures
164 * State - State object to push
168 * DESCRIPTION: Push a state object onto a state stack
180 /* Push the state object onto the front of the list (stack) */
194 * RETURN: The popped state object
196 * DESCRIPTION: Pop a state object from a state stack
210 /* Remove the state object at the head of the list (stack) */
230 * RETURN: The new state object. NULL on failure.
232 * DESCRIPTION: Create a generic state object. Attempt to obtain one from
281 /* Create the generic state object */
    [all...]
utmisc.c 316 * PARAMETERS: Object - Object to be added to the new state
328 ACPI_OPERAND_OBJECT *Object,
340 if (!Object)
345 State = AcpiUtCreateUpdateState (Object, Action);
361 * TargetObject - Target object (if package is being copied)
408 * 2) Not an internal object - can be a namespace node instead
452 * completed package object.
470 * The callback above returned a new target package object.
503 * PARAMETERS: Type - Object type of the nod
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_type_hash.cc 29 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfoFromObject(void *Object) {
30 void *VtablePtr = *reinterpret_cast<void **>(Object);
ubsan_type_hash.h 22 /// \brief Information about the dynamic type of an object (extracted from its
33 /// Determine whether the object had a valid dynamic type.
35 /// Get the name of the most-derived type of the object.
43 /// \brief Get information about the dynamic type of an object.
44 DynamicTypeInfo getDynamicTypeInfoFromObject(void *Object);
46 /// \brief Get information about the dynamic type of an object from its vtable.
49 /// \brief Check whether the dynamic type of \p Object has a \p Type subobject
52 bool checkDynamicType(void *Object, void *Type, HashValue Hash);
ubsan_type_hash_win.cc 41 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) {
48 // The virtual table may not have a complete object locator if the object
69 // Probably not a complete object locator.
  /src/sys/external/bsd/acpica/dist/namespace/
nsobject.c 167 * Object - Object to be attached
168 * Type - Type of object, or ACPI_TYPE_ANY if not
173 * DESCRIPTION: Record the given object as the value associated with the
174 * name whose ACPI_HANDLE is passed. If Object is NULL
186 ACPI_OPERAND_OBJECT *Object,
208 if (!Object && (ACPI_TYPE_ANY != Type))
210 /* Null object */
213 "Null object, but type not ACPI_TYPE_ANY"));
226 /* Check if this object is already attached *
    [all...]
nssearch.c 179 * Type - Object type to match
189 * Named object lists are built (and subsequently dumped) in the
238 * must search for the name among the children of this object
251 Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, Node->Object);
266 /* Didn't match name, move on to the next peer object */
289 * Type - Object type to match
355 * object type at this point, we only care about the existence of
385 * Type - Object type to match
455 * delete any existing attached sub-object and make the node
468 AcpiUtRemoveReference ((*ReturnNode)->Object);
    [all...]
nsarguments.c 231 * Node - Namespace node for the method/object
263 * If this object is not a control method, we can check if the ACPI
270 /* Object requires args, must be implemented as a method */
273 "Object (%s) must be a control method with %u arguments",
278 /* Object requires no args and no return value, must be a method */
281 "Object (%s) must be a control method "
297 * Note: These are BIOS errors in the declaration of the object
299 AmlParamCount = Node->Object->Method.ParamCount;
324 * Node - Namespace node for the method/object
331 * parameter count (in the ASL/AML) for an object
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsmthdat.c 174 ACPI_OPERAND_OBJECT *Object,
190 * PARAMETERS: WalkState - Current walk state object
251 * PARAMETERS: WalkState - Current walk state object
274 if (WalkState->LocalVariables[Index].Object)
277 Index, WalkState->LocalVariables[Index].Object));
279 /* Detach object (if present) and remove a reference */
289 if (WalkState->Arguments[Index].Object)
292 Index, WalkState->Arguments[Index].Object));
294 /* Detach object (if present) and remove a reference */
310 * WalkState - Current walk state object
    [all...]
dswstate.c 176 * PARAMETERS: Object - Where to return the popped object
181 * DESCRIPTION: Pop an object off the top of this walk's result stack
187 ACPI_OPERAND_OBJECT **Object,
222 /* Return object of the top element and clean that top element result stack */
227 *Object = State->Results.ObjDesc [Index];
228 if (!*Object)
246 "Obj=%p [%s] Index=%X State=%p Num=%X\n", *Object,
247 AcpiUtGetObjectTypeName (*Object),
258 * PARAMETERS: Object - Where to return the popped objec
    [all...]
  /src/sys/external/bsd/acpica/dist/include/platform/
acdragonflyex.h 161 void *Object,
acdragonfly.h 195 #define AcpiOsReleaseObject(Cache, Object) \
196 _AcpiOsReleaseObject((Cache), (Object), __func__, __LINE__)
  /src/sys/external/bsd/acpica/dist/debugger/
dbobject.c 3 * Module Name: dbobject - ACPI object decode and display
242 * PARAMETERS: ObjDesc - Object to be displayed
246 * DESCRIPTION: Short display of an internal object. Numbers/Strings/Buffers.
316 * PARAMETERS: Node - Object to be displayed
343 /* These types have no attached object */
367 * PARAMETERS: ObjDesc - Object to be displayed
372 * DESCRIPTION: Short display of an internal object
388 AcpiOsPrintf ("<Null Object>\n");
392 /* Decode the object type */
415 /* Decode the ACPI object type *
    [all...]
dbconvert.c 256 * Object - Where the buffer object is returned
260 * DESCRIPTION: Convert a string to a buffer object. String is treated a list
268 ACPI_OBJECT *Object)
321 Object->Type = ACPI_TYPE_BUFFER;
322 Object->Buffer.Pointer = Buffer;
323 Object->Buffer.Length = Length;
333 * Object - Where the package object is returned
337 * DESCRIPTION: Convert a string to a package object. Handles nested package
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/examples/
examples.c 329 /* Complete the ACPI namespace object initialization */
430 /* Complete the ACPI namespace object initialization */
533 * 2) How to setup the return value object
549 ACPI_OBJECT *Object;
563 /* Ask ACPICA to allocate space for the return object */
574 /* Ensure that the return object is large enough */
585 Object = ReturnValue.Pointer;
586 if (Object->Type != ACPI_TYPE_INTEGER)
588 AcpiOsPrintf ("Invalid return type from _OSI, %.2X\n", Object->Type);
592 (UINT32) Object->Integer.Value))
    [all...]
  /src/tests/lib/libobjc/
t_threads.m 39 #include <objc/Object.h>
48 @interface MyClass : Object
  /src/sys/external/bsd/acpica/dist/compiler/
aslmaputils.c 171 * PARAMETERS: HidNode - Node for a _HID object
193 /* Object is not resolved, probably an External */
203 Arg = Arg->Asl.Next; /* First peer is the object to be associated with the name */
263 if (!HidNode->Object)
274 return (HidNode->Object->String.Pointer);
281 AcpiExEisaIdToString (HidString, HidNode->Object->Integer.Value);
429 !DdnNode->Object)
434 return (DdnNode->Object->String.Pointer);
  /src/sys/external/bsd/acpica/dist/executer/
exdebug.c 3 * Module Name: exdebug - Support for stores to the AML Debug Object
166 * PARAMETERS: SourceDesc - Object to be output to "Debug Object"
172 * DESCRIPTION: Handles stores to the AML Debug Object. For example:
179 * operational case, stores to the debug object are ignored but can be easily
223 * object display
256 AcpiOsPrintf ("[Null Object]\n");
262 /* No object type prefix needed for integers and strings */
272 AcpiOsPrintf ("%p, Invalid Internal Object!\n", SourceDesc);
362 /* Check for valid node first, then valid object */
    [all...]
exresop.c 3 * Module Name: exresop - AML Interpreter operand/object resolution
169 void *Object);
176 * PARAMETERS: TypeNeeded Object type needed
177 * ThisType Actual object type
178 * Object Object pointer
190 void *Object)
210 (((ACPI_OPERAND_OBJECT *) Object)->Common.Flags &
222 AcpiUtGetTypeName (ThisType), Object));
322 * Resolve an alias object. The construction of these object
    [all...]
exstore.c 3 * Module Name: exstore - AML Interpreter object store support
219 /* DestDesc can be either a namespace node or an ACPI object */
225 * Storing an object into a Named node.
234 /* Destination object must be a Reference or a Constant object */
255 /* Destination is not a Reference object */
258 "Target is not a Reference or Constant object - [%s] %p",
267 * 1) Store to Name (Change the object associated with a name)
270 * 4) Store to the debug object
276 /* Storing an object into a Name "container" *
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acutils.h 289 /* Object reference counts */
445 void *Object);
449 void *Object);
453 ACPI_OPERAND_OBJECT *Object);
503 * utcopy - Object construction and conversion interfaces
541 * utcreate - Object creation
545 ACPI_OPERAND_OBJECT *Object,
671 * utdelete - Object deletion and reference counts
675 ACPI_OPERAND_OBJECT *Object);
679 ACPI_OPERAND_OBJECT *Object);
    [all...]

Completed in 22 milliseconds

1 2 3 4