Searched refs:imageInfo (Results 1 - 25 of 39) sorted by relevance

12

/haiku-fatelf/src/bin/
H A Dlistimage.c26 image_info imageInfo; local
41 while ((status = get_next_image_info(id, &cookie, &imageInfo)) == B_OK) {
43 imageInfo.id,
44 imageInfo.name,
45 imageInfo.text,
46 imageInfo.data,
47 imageInfo.sequence,
48 imageInfo.init_order);
/haiku-fatelf/src/apps/debugger/debug_info/
H A DDebuggerTeamDebugInfo.cpp35 DebuggerTeamDebugInfo::CreateImageDebugInfo(const ImageInfo& imageInfo, argument
39 = new(std::nothrow) DebuggerImageDebugInfo(imageInfo,
H A DSpecificTeamDebugInfo.h20 virtual status_t CreateImageDebugInfo(const ImageInfo& imageInfo,
H A DDebuggerTeamDebugInfo.h25 virtual status_t CreateImageDebugInfo(const ImageInfo& imageInfo,
H A DSpecificImageDebugInfo.cpp23 const ImageInfo& imageInfo, SpecificImageDebugInfo* info)
26 status_t error = interface->GetSymbolInfos(imageInfo.TeamID(),
27 imageInfo.ImageID(), symbols);
21 GetFunctionsFromSymbols( BObjectList<FunctionDebugInfo>& functions, DebuggerInterface* interface, const ImageInfo& imageInfo, SpecificImageDebugInfo* info) argument
H A DDebuggerImageDebugInfo.cpp20 DebuggerImageDebugInfo::DebuggerImageDebugInfo(const ImageInfo& imageInfo, argument
23 fImageInfo(imageInfo),
H A DDwarfTeamDebugInfo.cpp60 DwarfTeamDebugInfo::CreateImageDebugInfo(const ImageInfo& imageInfo, argument
81 imageInfo, fDebuggerInterface, fArchitecture, fFileManager,
H A DDwarfTeamDebugInfo.h32 virtual status_t CreateImageDebugInfo(const ImageInfo& imageInfo,
H A DImageDebugInfo.h34 ImageDebugInfo(const ImageInfo& imageInfo);
H A DDebuggerImageDebugInfo.h21 const ImageInfo& imageInfo,
H A DImageDebugInfo.cpp16 ImageDebugInfo::ImageDebugInfo(const ImageInfo& imageInfo) argument
18 fImageInfo(imageInfo)
H A DTeamDebugInfo.h55 status_t LoadImageDebugInfo(const ImageInfo& imageInfo,
H A DSpecificImageDebugInfo.h91 const ImageInfo& imageInfo,
H A DDwarfImageDebugInfo.h40 DwarfImageDebugInfo(const ImageInfo& imageInfo,
/haiku-fatelf/src/tools/elfsymbolpatcher/
H A DElfImage.cpp51 image_info imageInfo;
52 error = get_image_info(image, &imageInfo);
58 error = debug_create_file_symbol_iterator(imageInfo.name, &iterator);
86 *_address = (void*)((addr_t)foundAddress + (addr_t)imageInfo.text
188 image_info imageInfo; local
189 status_t error = get_image_info(image, &imageInfo);
192 fImage = imageInfo.id;
198 fTextAddress = (uint8*)imageInfo.text;
199 fDataAddress = (uint8*)imageInfo.data;
201 error = fFile.SetTo(imageInfo
[all...]
/haiku-fatelf/src/system/libroot/posix/
H A Ddlfcn.c81 image_info imageInfo; local
88 sStatus = get_image_info(image, &imageInfo);
93 info->dli_fbase = imageInfo.text;
/haiku-fatelf/src/apps/debugger/model/
H A DImage.cpp14 Image::Image(Team* team,const ImageInfo& imageInfo, LocatableFile* imageFile) argument
17 fInfo(imageInfo),
H A DImage.h31 Image(Team* team, const ImageInfo& imageInfo,
/haiku-fatelf/src/apps/debugger/debugger_interface/
H A DDebuggerInterface.cpp487 image_info imageInfo; local
489 while (get_next_image_info(fTeamID, &cookie, &imageInfo) == B_OK) {
490 ImageInfo* info = new(std::nothrow) ImageInfo(fTeamID, imageInfo.id,
491 imageInfo.name, imageInfo.type, (addr_t)imageInfo.text,
492 imageInfo.text_size, (addr_t)imageInfo.data, imageInfo.data_size);
502 while (get_next_image_info(B_SYSTEM_TEAM, &cookie, &imageInfo)
[all...]
/haiku-fatelf/src/apps/debugger/jobs/
H A DLoadImageDebugInfoJob.cpp44 ImageInfo imageInfo(fImage->Info());
50 imageInfo, fImage->ImageFile(), debugInfo);
/haiku-fatelf/src/bin/debug/profile/
H A DTeam.h38 const image_info& imageInfo, team_id owner,
H A Dprofile.cpp242 status_t AddImage(team_id teamID, const image_info& imageInfo, int32 event) argument
246 status_t error = _GetSharedImage(teamID, imageInfo, &sharedImage);
254 fTeams.ItemAt(i)->AddImage(sharedImage, imageInfo, teamID,
261 return team->AddImage(sharedImage, imageInfo, teamID, event);
373 image_info imageInfo; local
375 while (get_next_image_info(teamID, &cookie, &imageInfo) == B_OK) {
378 status_t error = _GetSharedImage(teamID, imageInfo, &sharedImage);
383 error = team->AddImage(sharedImage, imageInfo, teamID, 0);
433 status_t _GetSharedImage(team_id teamID, const image_info& imageInfo, argument
437 ImageMap::iterator it = fImages.find(imageInfo
[all...]
/haiku-fatelf/src/system/kernel/
H A Delf.cpp116 image_info imageInfo; local
118 memset(&imageInfo, 0, sizeof(image_info));
119 imageInfo.id = image->id;
120 imageInfo.type = B_SYSTEM_IMAGE;
121 strlcpy(imageInfo.name, image->name, sizeof(imageInfo.name));
123 imageInfo.text = (void *)image->text_region.start;
124 imageInfo.text_size = image->text_region.size;
125 imageInfo.data = (void *)image->data_region.start;
126 imageInfo
2096 image_info imageInfo; local
[all...]
/haiku-fatelf/headers/private/kernel/
H A Duser_debugger.h267 void user_debug_image_created(const image_info *imageInfo);
268 void user_debug_image_deleted(const image_info *imageInfo);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dhaiku-nat.c318 haiku_add_image(team_debug_info *teamDebugInfo, image_info *imageInfo) argument
321 teamDebugInfo, imageInfo->id);
325 if (image && image->info.id == imageInfo->id)
332 image->info.id = imageInfo->id;
333 strncpy(image->info.name, imageInfo->name, sizeof(image->info.name));
337 strncpy(image->info.path, imageInfo->name, sizeof(image->info.path));
339 image->info.text_address = (CORE_ADDR)imageInfo->text;
340 image->info.text_size = imageInfo->text_size;
341 image->info.data_address = (CORE_ADDR)imageInfo->data;
342 image->info.data_size = imageInfo
[all...]

Completed in 109 milliseconds

12