Searched refs:resource (Results 51 - 75 of 214) sorted by relevance

123456789

/haiku/src/add-ons/translators/wonderbrush/
H A DWonderBrushTranslator.rdef5 resource app_signature "application/x-vnd.Haiku-WonderBrushTranslator";
7 resource app_version {
/haiku/src/kits/mail/
H A Dlibmail.rdef5 resource app_signature "application/x-vnd.Haiku-libmail";
7 resource app_version {
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DMultiAudio.rdef5 resource app_signature "application/x-vnd.Haiku-hmulti_audio.media_addon";
7 resource app_version {
/haiku/src/add-ons/kernel/busses/usb/
H A Dohci.rdef6 resource app_signature "application/x-vnd.haiku-ohci";
8 resource app_version {
/haiku/src/add-ons/translators/gif/
H A DGIFTranslator.rdef5 resource app_signature "application/x-vnd.Haiku-GIFTranslator";
7 resource app_version {
/haiku/src/add-ons/translators/psd/
H A DPSDTranslator.rdef5 resource app_signature "application/x-vnd.Haiku-PSDTranslator";
7 resource app_version {
/haiku/src/add-ons/translators/rtf/
H A DRTFTranslator.rdef5 resource app_signature "application/x-vnd.Haiku-RTFTranslator";
7 resource app_version {
/haiku/src/add-ons/mail_daemon/inbound_filters/notifier/
H A DNotifierFilter.rdef5 resource app_signature "application/x-vnd.Haiku-NewMailNotification";
7 resource app_version {
/haiku/src/system/kernel/device_manager/
H A Dio_resources.h21 status_t Acquire(const io_resource& resource);
26 static bool _IsValid(const io_resource& resource);
H A DIOScheduler.cpp15 IOScheduler::IOScheduler(DMAResource* resource) argument
17 fDMAResource(resource),
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dbus.h40 struct resource;
67 struct resource *bus_alloc_resource(device_t dev, int type, int *rid,
69 int bus_release_resource(device_t dev, int type, int rid, struct resource *r);
71 struct resource **resources);
73 const struct resource_spec *resourceSpec, struct resource **resources);
78 static inline struct resource *
84 static inline struct resource *
93 int bus_setup_intr(device_t dev, struct resource *r, int flags,
95 int bus_teardown_intr(device_t dev, struct resource *r, void *cookie);
96 int bus_bind_intr(device_t dev, struct resource *
[all...]
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dlow_resource_manager.cpp21 low_resource(uint32 resource, uint64 requirements, uint32 flags, argument
/haiku/headers/compatibility/bsd/sys/
H A Dwait.h16 #include <sys/resource.h>
/haiku/headers/posix/sys/
H A Dresource.h35 #define RLIM_NLIMITS 8 /* number of resource limits */
80 extern int getrlimit(int resource, struct rlimit * rlp);
81 extern int setrlimit(int resource, const struct rlimit * rlp);
/haiku/src/system/libroot/posix/unistd/
H A Dnice.c12 #include <sys/resource.h>
/haiku/src/libs/compat/freebsd_network/
H A Dbus.cpp20 #include <compat/machine/resource.h>
73 bus_alloc_irq_resource(device_t dev, struct resource *res)
86 bus_alloc_mem_resource(device_t dev, struct resource *res, pci_info *info,
108 // enable this I/O resource
126 bus_alloc_ioport_resource(device_t dev, struct resource *res, pci_info *info,
140 // enable this I/O resource
166 struct resource *
170 struct resource *res;
181 res = (struct resource *)malloc(sizeof(struct resource));
[all...]
/haiku/src/kits/storage/
H A DResources.cpp263 // Loads a resource identified by type and id into memory.
267 // find the resource
269 ResourceItem* resource = NULL; local
271 resource = fContainer->ResourceAt(fContainer->IndexOf(type, id));
272 if (!resource)
276 if (error == B_OK && !resource->IsLoaded() && fResourceFile)
277 error = fResourceFile->ReadResource(*resource);
281 result = resource->Data();
283 *_size = resource->DataSize();
289 // Loads a resource identifie
295 ResourceItem* resource = NULL; local
327 ResourceItem *resource = fContainer->ResourceAt(i); local
569 RemoveResource(const void* resource) argument
[all...]
/haiku/src/add-ons/kernel/busses/pci/ecam/
H A DECAMPCIControllerACPI.cpp86 /** Convert an ACPI address resource descriptor into a pci_resource_range.
91 DecodeAddress(const T& resource, pci_resource_range& range) argument
93 const auto& acpiRange = resource.address;
95 (unsigned long)acpiRange.minimum, resource.minAddress_fixed,
96 (unsigned long)acpiRange.maximum, resource.maxAddress_fixed,
108 } else if (!resource.maxAddress_fixed) {
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Dif_igc.h59 #include <machine/resource.h>
277 struct resource *res;
306 struct resource *res;
352 struct resource *memory;
353 struct resource *flash;
354 struct resource *ioport;
356 struct resource *res;
/haiku/src/libs/compat/freebsd_iflib/compat/sys/
H A Dgtaskqueue.h60 struct resource *gt_irq;
76 void *uniq, device_t dev, struct resource *irq, const char *name);
79 struct resource *irq, const char *name);
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex44 (resource files), on the other hand these are file formats extended to
67 x86 resource files introduce the least overhead. The resources start directly
82 PPC resource files begin with a PEF container header, after which the
170 from the type of the file. x86 resource files contain little endian, PPC
171 resource files big endian data. The endianess of an ELF file is encoded in
174 As there is in fact no good reason to have different resource file formats,
176 \ref{file-formats}), it may be decided to use the x86 resource file format
195 & index section & resource index \\
217 resource index subsection. The latter locates all other data in the file.
222 \item{A data section holding the actual resource dat
[all...]
/haiku/headers/private/kernel/
H A Dlow_resource_manager.h13 /* warning levels for low resource handlers */
42 void low_resource(uint32 resource, uint64 requirements, uint32 flags,
/haiku/src/tests/libs/bsd/
H A Dwait4_test.cpp11 #include <sys/resource.h>
/haiku/src/system/libroot/posix/sys/
H A Dgetrusage.c8 #include <sys/resource.h>
/haiku/src/add-ons/kernel/drivers/network/ether/nforce/dev/nfe/
H A Dif_nfevar.h113 struct resource *nfe_res[1];
114 struct resource *nfe_msix_res;
115 struct resource *nfe_msix_pba_res;
116 struct resource *nfe_irq[NFE_MSI_MESSAGES];

Completed in 308 milliseconds

123456789