Searched refs:imageID (Results 1 - 25 of 33) sorted by relevance

12

/haiku/src/add-ons/screen_savers/gravity/
H A Dmain.cpp11 instantiate_screen_saver(BMessage* prefs, image_id imageID) argument
13 return new Gravity(prefs, imageID);
H A DGravity.h32 Gravity(BMessage* prefs, image_id imageID);
H A DGravity.cpp24 Gravity::Gravity(BMessage* prefs, image_id imageID) argument
26 BScreenSaver(prefs, imageID),
/haiku/src/system/libroot/posix/
H A Ddlfcn.c29 image_id imageID = __gRuntimeLoader->load_library(name, mode, caller, local
32 sStatus = imageID >= 0 ? B_OK : imageID;
34 return imageID >= 0 ? handle : NULL;
/haiku/src/add-ons/screen_savers/butterfly/
H A DButterfly.h17 Butterfly(BMessage* archive, image_id imageID);
/haiku/src/bin/debug/profile/
H A DSharedImage.cpp39 SharedImage::Init(team_id owner, image_id imageID) argument
43 status_t error = debug_create_symbol_lookup_context(owner, imageID,
57 error = debug_create_image_symbol_iterator(lookupContext, imageID,
62 imageID, strerror(error));
H A DSharedImage.h53 status_t Init(team_id owner, image_id imageID);
H A DTeam.h40 status_t RemoveImage(image_id imageID, int32 event);
H A DBasicProfileResult.cpp24 image_id imageID; member in struct:HitSymbol
165 hitSymbol.imageID = image->ID();
233 100.0 * hitSymbol.hits / totalTicks, hitSymbol.imageID,
H A DTeam.cpp246 Team::RemoveImage(image_id imageID, int32 event) argument
249 if (image->ID() == imageID) {
/haiku/src/system/runtime_loader/
H A Druntime_loader_private.h76 status_t unload_library(void* handle, image_id imageID, bool addOn);
77 status_t get_nth_symbol(image_id imageID, int32 num, char* nameBuffer,
82 status_t get_symbol(image_id imageID, char const* symbolName, int32 symbolType,
H A Delf.cpp726 unload_library(void* handle, image_id imageID, bool addOn) argument
731 if (handle == NULL && imageID < 0)
754 image = find_loaded_image_by_id(imageID, true);
805 get_nth_symbol(image_id imageID, int32 num, char *nameBuffer, argument
815 image = find_loaded_image_by_id(imageID, false);
934 get_symbol(image_id imageID, char const *symbolName, int32 symbolType, argument
940 if (imageID < B_OK)
958 image = find_loaded_image_by_id(imageID, false);
/haiku/headers/private/debugger/debug_info/
H A DGlobalTypeLookup.h47 void RemoveTypes(image_id imageID);
/haiku/src/system/libroot/
H A Dlibroot_init.c49 initialize_before(image_id imageID) argument
/haiku/src/kits/debug/
H A DSymbolLookup.h149 status_t InitSymbolIterator(image_id imageID,
157 status_t GetSymbol(image_id imageID, const char* name, int32 symbolType,
H A DSymbolLookup.cpp356 SymbolLookup::InitSymbolIterator(image_id imageID, argument
360 imageID));
363 iterator.image = _FindImageByID(imageID);
413 SymbolLookup::GetSymbol(image_id imageID, const char* name, int32 symbolType, argument
416 Image* image = _FindImageByID(imageID);
H A Ddebug_support.cpp460 image_id imageID, debug_symbol_iterator** _iterator)
472 error = lookup->InitSymbolIterator(imageID, *iterator);
486 error = get_image_info(imageID, &imageInfo);
459 debug_create_image_symbol_iterator(debug_symbol_lookup_context* lookupContext, image_id imageID, debug_symbol_iterator** _iterator) argument
/haiku/src/kits/debugger/debug_info/
H A DDwarfStackFrameDebugInfo.h39 image_id imageID, DwarfFile* file,
H A DGlobalTypeLookup.cpp233 GlobalTypeCache::RemoveTypes(image_id imageID) argument
239 if (typeEntry->type->ImageID() == imageID) {
H A DDwarfStackFrameDebugInfo.cpp168 image_id imageID, DwarfFile* file, CompilationUnit* compilationUnit,
175 fTypeContext(new(std::nothrow) DwarfTypeContext(architecture, imageID, file,
167 DwarfStackFrameDebugInfo(Architecture* architecture, image_id imageID, DwarfFile* file, CompilationUnit* compilationUnit, DIESubprogram* subprogramEntry, GlobalTypeLookup* typeLookup, GlobalTypeCache* typeCache, target_addr_t instructionPointer, target_addr_t framePointer, target_addr_t relocationDelta, DwarfTargetInterface* targetInterface, RegisterMap* fromDwarfRegisterMap) argument
/haiku/headers/private/runtime_loader/
H A Druntime_loader.h30 status_t (*unload_add_on)(image_id imageID);
34 status_t (*get_image_symbol)(image_id imageID, char const *symbolName,
38 status_t (*get_nth_image_symbol)(image_id imageID, int32 num,
/haiku/src/kits/media/
H A DControllable.cpp358 image_id imageID = addon->ImageID(); local
360 if (imageID <= 0 || get_image_info(imageID, &info) != B_OK) {
/haiku/headers/private/debug/
H A Ddebug_support.h67 // imageID can be -1 if all images in the target team are
82 debug_symbol_lookup_context* lookupContext, image_id imageID,
/haiku/headers/private/debugger/controllers/
H A DTeamDebugger.h202 void _HandleImageDebugInfoChanged(image_id imageID);
203 void _HandleImageFileChanged(image_id imageID);
/haiku/src/kits/debugger/controllers/
H A DTeamDebugger.cpp908 int32 imageID; local
909 if (message->FindInt32("image", &imageID) != B_OK)
912 _HandleImageDebugInfoChanged(imageID);
918 int32 imageID; local
919 if (message->FindInt32("image", &imageID) != B_OK)
922 _HandleImageFileChanged(imageID);
1947 TeamDebugger::_HandleImageDebugInfoChanged(image_id imageID) argument
1951 ImageHandler* imageHandler = fImageHandlers->Lookup(imageID);
1979 ->Lookup(imageID);
2027 TeamDebugger::_HandleImageFileChanged(image_id imageID) argument
[all...]

Completed in 135 milliseconds

12