Searched refs:Resource (Results 1 - 18 of 18) sorted by relevance

/haiku/src/servers/print/
H A DResourceManager.h18 class Resource : public Object { class in inherits:Object
26 Resource(const char* transport, const char* address, const char* connection);
27 ~Resource();
41 BObjectList<Resource> fResources;
43 Resource* Find(const char* transport, const char* address, const char* connection);
48 Resource* Allocate(const char* transport, const char* address, const char* connection);
49 void Free(Resource* r);
H A DResourceManager.cpp13 Resource::Resource(const char* transport, const char* address, const char* connection) function in class:Resource
26 Resource::~Resource() {
32 Resource::NeedsLocking() {
46 Resource::Equals(const char* transport, const char* address, const char* connection) {
54 Resource::Lock() {
63 Resource::Unlock() {
75 Resource*
78 Resource*
[all...]
H A DPrinter.h49 Printer(const BDirectory* node, Resource* res);
83 Resource* GetResource() { return fResource; }
107 Resource* fResource;
H A DPrinter.cpp128 Printer::Printer(const BDirectory* node, Resource* res)
H A DPrintServerApp.cpp203 Resource* resource = fResourceManager.Allocate(transport.String(),
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/resources/
H A Drslist.c185 ACPI_RESOURCE *Resource; local
198 Resource = *ResourcePtr;
199 if (ACPI_IS_MISALIGNED (Resource))
202 "Misaligned resource pointer %p", Resource));
246 Resource, AmlResource, ConversionTable);
254 if (!Resource->Length)
263 Resource->Length));
267 *ResourcePtr = ACPI_NEXT_RESOURCE (Resource);
276 * PARAMETERS: Resource - Pointer to the resource linked list
293 ACPI_RESOURCE *Resource,
292 AcpiRsConvertResourcesToAml( ACPI_RESOURCE *Resource, ACPI_SIZE AmlSizeNeeded, UINT8 *OutputBuffer) argument
[all...]
H A Drscalc.c306 * PARAMETERS: Resource - Pointer to the resource linked list
320 ACPI_RESOURCE *Resource,
334 ResourceEnd = ACPI_ADD_PTR (ACPI_RESOURCE, Resource, ResourceListSize);
335 while (Resource < ResourceEnd)
339 if (Resource->Type > ACPI_RESOURCE_TYPE_MAX)
346 if (!Resource->Length)
353 TotalSize = AcpiGbl_AmlResourceSizes [Resource->Type];
359 switch (Resource->Type)
365 if (Resource->Data.Irq.DescriptorLength == 2)
376 if (Resource
319 AcpiRsGetAmlLength( ACPI_RESOURCE *Resource, ACPI_SIZE ResourceListSize, ACPI_SIZE *SizeNeeded) argument
[all...]
H A Drsmisc.c173 * PARAMETERS: Resource - Pointer to the resource descriptor
186 ACPI_RESOURCE *Resource,
208 if (((ACPI_SIZE) Resource) & 0x3)
214 Resource, Resource->Type, Resource->Length));
235 Destination = ACPI_ADD_PTR (void, Resource, Info->ResourceOffset);
243 memset (Resource, 0, INIT_RESOURCE_LENGTH (Info));
244 Resource->Type = INIT_RESOURCE_TYPE (Info);
245 Resource
185 AcpiRsConvertAmlToResource( ACPI_RESOURCE *Resource, AML_RESOURCE *Aml, ACPI_RSCONVERT_INFO *Info) argument
589 AcpiRsConvertResourceToAml( ACPI_RESOURCE *Resource, AML_RESOURCE *Aml, ACPI_RSCONVERT_INFO *Info) argument
[all...]
H A Drsxface.c184 ACPI_RESOURCE *Resource,
511 * PARAMETERS: Resource - Pointer to a resource
526 ACPI_RESOURCE *Resource,
533 if (!Resource || !Out)
540 switch (Resource->Type)
545 ACPI_RESOURCE_ADDRESS16, &Resource->Data);
552 ACPI_RESOURCE_ADDRESS32, &Resource->Data);
560 memcpy (Out, &Resource->Data, sizeof (ACPI_RESOURCE_ADDRESS64));
644 ACPI_RESOURCE *Resource,
655 if (Resource
643 AcpiRsMatchVendorResource( ACPI_RESOURCE *Resource, void *Context) argument
720 ACPI_RESOURCE *Resource; local
[all...]
H A Drsaddr.c176 /* Resource Type, General Flags, and Type-Specific Flags */
216 /* Resource Type, General Flags, and Type-Specific Flags */
256 /* Resource Type, General Flags, and Type-Specific Flags */
296 /* Resource Type, General Flags, and Type-Specific Flags */
331 /* Resource Type (Memory, Io, BusNumber, etc.) */
419 * PARAMETERS: Resource - Pointer to the internal resource struct
431 ACPI_RESOURCE *Resource,
441 /* Validate the Resource Type */
449 /* Get the Resource Type and General Flags */
452 Resource, Am
430 AcpiRsGetAddressCommon( ACPI_RESOURCE *Resource, AML_RESOURCE *Aml) argument
493 AcpiRsSetAddressCommon( AML_RESOURCE *Aml, ACPI_RESOURCE *Resource) argument
[all...]
H A Drscreate.c183 void *Resource; local
210 Resource = ACPI_ALLOCATE_ZEROED (ListSizeNeeded);
211 CurrentResourcePtr = Resource;
212 if (!Resource)
217 /* Perform the AML-to-Resource conversion */
227 ACPI_FREE (Resource);
231 *ResourcePtr = Resource;
268 void *Resource; local
306 Resource = OutputBuffer->Pointer;
308 AcpiRsConvertAmlToResources, &Resource);
[all...]
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacdisasm.h364 AML_RESOURCE *Resource,
1253 AML_RESOURCE *Resource,
1260 AML_RESOURCE *Resource,
1267 AML_RESOURCE *Resource,
1274 AML_RESOURCE *Resource,
1281 AML_RESOURCE *Resource,
1288 AML_RESOURCE *Resource,
1295 AML_RESOURCE *Resource,
1302 AML_RESOURCE *Resource,
1309 AML_RESOURCE *Resource,
[all...]
H A Dacresrc.h3 * Name: acresrc.h - Resource Manager function prototypes
185 /* Resource conversion opcodes */
225 /* Resource Conversion sub-opcodes */
280 /* Resource tables indexed by internal resource type */
286 /* Resource tables indexed by raw AML resource descriptor type */
386 ACPI_RESOURCE *Resource,
397 ACPI_RESOURCE *Resource);
401 ACPI_RESOURCE *Resource,
410 ACPI_RESOURCE *Resource,
416 ACPI_RESOURCE *Resource,
[all...]
H A Damlresrc.h159 * Resource descriptor tags, as defined in the ACPI specification.
242 ACPI_PARSE_OBJECT *DescriptorTypeOp; /* Resource descriptor parse node */
255 * Resource descriptors defined in the ACPI specification.
547 * 2) Resource Source String
598 * 2) Resource Source String
616 * 2) Resource Source String
637 * 2) Resource Source String
658 * 2) Resource Source String
682 * 2) Resource Source String
705 * 2) Resource Sourc
[all...]
H A Dacpixf.h1156 * Resource interfaces
1160 ACPI_RESOURCE *Resource,
1219 ACPI_RESOURCE *Resource,
H A Dactbl2.h182 #define ACPI_SIG_MPAM "MPAM" /* Memory System Resource Partitioning and Monitoring Table */
194 #define ACPI_SIG_RGRT "RGRT" /* Regulatory Graphics Resource Table */
288 /* 0R: Processor Cache Resource Substructure */
304 /* 1R: Processor TLB Resource Substructure */
313 /* 2R: Processor Generic Resource Substructure */
317 UINT32 Resource; member in struct:acpi_aest_processor_generic
1714 * MPAM - Memory System Resource Partitioning and Monitoring
1716 * Conforms to "ACPI for Memory System Resource Partitioning and Monitoring 2.0"
1800 /* Memory System Component Resource Node Structure Table 9 */
3300 * RGRT - Regulatory Graphics Resource Tabl
[all...]
/haiku/headers/os/drivers/pcmcia/
H A Dcs.h48 u_int Resource; member in struct:adjust_t
71 /* Resource field */
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex65 \subsection{x86 Resource Files}
80 \subsection{PPC Resource Files}
279 \subsection{Resource Index Section}
417 \subsection{Resource Info Table}

Completed in 129 milliseconds