Searched refs:image (Results 226 - 250 of 399) sorted by relevance

1234567891011>>

/haiku/src/kits/debugger/debug_info/
H A DDebuggerImageDebugInfo.h41 virtual status_t CreateFrame(Image* image,
/haiku/headers/private/debugger/debug_info/
H A DGlobalTypeLookup.h10 #include <image.h>
/haiku/headers/private/debugger/model/
H A DImage.h8 #include <image.h>
/haiku/src/build/libroot/
H A Dmisc.cpp12 #include <image.h>
/haiku/src/system/libnetwork/
H A Dinit.cpp14 #include <image.h>
41 // get image of executable
56 // may have to scan not only the executable, but every loaded image.
/haiku/src/system/boot/platform/efi/arch/x86_64/
H A Drelocation_func.cpp44 efi_handle image __attribute__((__unused__)),
/haiku/src/system/boot/platform/efi/arch/arm/
H A Drelocation_func.cpp43 efi_handle image __attribute__((__unused__)),
/haiku/src/system/boot/platform/efi/arch/riscv64/
H A Drelocation_func.cpp56 efi_handle image __attribute__((__unused__)),
/haiku/headers/private/locale/
H A DMutableLocaleRoster.h11 #include <image.h>
/haiku/src/servers/input/
H A DAddOnManager.cpp26 #include <image.h>
89 instantiate_add_on(image_id image, const char* path, const char* type) argument
96 if (get_image_symbol(image, functionName.String(), B_SYMBOL_TYPE_TEXT,
331 image_id image = load_add_on(path.Path()); local
332 if (image < B_OK) {
334 return image;
341 image, path.Path(), "device");
343 status = _RegisterDevice(device, ref, image);
346 image, path.Path(), "filter");
348 status = _RegisterFilter(filter, ref, image);
[all...]
/haiku/src/add-ons/screen_savers/icons/
H A DIconsSaver.cpp45 BScreenSaver* instantiate_screen_saver(BMessage* msg, image_id image) argument
47 return new IconsSaver(msg, image);
54 IconsSaver::IconsSaver(BMessage* archive, image_id image) argument
56 BScreenSaver(archive, image),
/haiku/headers/private/libroot/
H A Dlibroot_private.h10 #include <image.h>
/haiku/src/system/boot/platform/efi/arch/arm64/
H A Drelocation_func.cpp43 efi_handle image __attribute__((__unused__)),
/haiku/src/system/boot/platform/efi/arch/x86/
H A Drelocation_func.cpp43 efi_handle image __attribute__((__unused__)),
/haiku/src/system/libroot/posix/unistd/
H A Dsystem.cpp6 #include <image.h>
/haiku/src/system/libroot/
H A Dlibroot_init.c11 #include <image.h>
/haiku/src/libs/icon/style/
H A DStyle.cpp73 Style::Style(BBitmap* image) argument
80 fImage(image),
286 Style::SetBitmap(BBitmap* image) argument
289 fImage = image;
/haiku/src/system/kernel/arch/x86/
H A Darch_debug.cpp121 // try to locate the image in the images loaded into user space
159 print_demangled_call(const char* image, const char* symbol, addr_t args, argument
185 kprintf("<%s> %.*s<\33[32m%#" B_PRIx32 "\33[0m>%s", image,
188 kprintf("<%s> %.*s<\?\?\?>%s", image, namespaceLength, name, lastName);
194 kprintf("<%s> %s", image, name);
325 print_demangled_call(const char* image, const char* symbol, addr_t args, argument
346 kprintf("<%s> %s(", image, name);
377 const char* image; local
389 status = lookup_symbol(thread, ip, &baseAddress, &symbol, &image,
397 status = print_demangled_call(image, symbo
763 const char *symbol, *image; local
[all...]
/haiku/src/kits/mail/
H A DMailProtocol.cpp274 image_id image; local
276 image = it->second;
280 image = load_add_on(path.Path());
282 if (image < 0)
287 if (get_image_symbol(image, "instantiate_filter", B_SYMBOL_TYPE_TEXT,
289 unload_add_on(image);
293 fFilterImages[ref] = image;
/haiku/src/kits/tracker/
H A DThumbnails.cpp174 BBitmap* image;
175 status = imageStream.DetachBitmap(&image);
179 // we have translated the image file into a BBitmap
183 ScaleBitmap(image, tmp, fRequestedSize, fColorSpace);
203 const int32 width = image->Bounds().IntegerWidth() + 1;
208 const int32 height = image->Bounds().IntegerHeight() + 1;
211 // convert image into a 128x128 WebP image and stash it
213 ScaleBitmap(image, thumb, B_XXL_ICON, fColorSpace);
221 // write WebP image dat
[all...]
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dmodule.cpp131 status_t GetDependencies(image_id image);
132 void PutDependencies(image_id image);
193 image_id image = load_add_on(path); local
195 if (image >= 0
196 && get_image_symbol(image, "modules", B_SYMBOL_TYPE_DATA,
199 fAddOn = image;
556 ModuleManager::GetDependencies(image_id image) argument
559 status_t status = get_image_symbol(image, "module_dependencies",
576 ModuleManager::PutDependencies(image_id image) argument
579 status_t status = get_image_symbol(image, "module_dependencie
[all...]
/haiku/src/tools/vmdkimage/
H A Dvmdkimage.cpp37 printf(" -d, --dump dumps info for the image file\n");
38 printf(" -i, --imagesize size of raw partition image file\n");
40 printf(" -f, --file the raw partition image file\n");
41 printf(" -u, --uuid UUID for the image instead of a computed "
43 printf(" -c, --clear-image set the image content to zero\n");
52 int image = open(filename, O_RDONLY); local
53 if (image < 0) {
60 if (read(image, &header, 512) != 512) {
98 if (pread(image, descripto
[all...]
/haiku/src/kits/debugger/controllers/
H A DDebugReportGenerator.cpp330 Image* image = it.Next();) {
331 images.AddItem(image);
336 Image* image = NULL; local
344 for (int32 i = 0; (image = images.ItemAt(i)) != NULL; i++) {
345 const ImageInfo& info = image->Info();
540 Image* image = fTeam->ImageByAddress(ip); local
542 if (image != NULL && image->ImageDebugInfoState()
544 ImageDebugInfo* info = image->GetImageDebugInfo();
666 Image* image local
[all...]
/haiku/src/add-ons/media/media-add-ons/
H A DAbstractFileInterfaceAddOn.cpp33 AbstractFileInterfaceAddOn::AbstractFileInterfaceAddOn(image_id image) : argument
34 BMediaAddOn(image)
/haiku/headers/os/storage/
H A DResources.h11 #include <image.h>
46 status_t SetToImage(image_id image,

Completed in 133 milliseconds

1234567891011>>