Symbol: DataBase
headers/private/debugger/model/ImageInfo.h
39
target_addr_t DataBase() const { return fDataBase; }
src/apps/debugger/user_interface/gui/team_window/ImageListView.cpp
125
value.SetTo(info.DataBase());
src/apps/debugger/user_interface/gui/team_window/ImageListView.cpp
128
value.SetTo(info.DataBase() + info.DataSize());
src/kits/debugger/controllers/DebugReportGenerator.cpp
348
target_addr_t dataBase = info.DataBase();
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
214
coreInfo->TextSize(), coreInfo->DataBase(), coreInfo->DataSize());
src/kits/debugger/elf/CoreFile.h
103
uint64 DataBase() const { return fDataBase; }
src/kits/debugger/model/Image.cpp
51
|| (address >= fInfo.DataBase()
src/kits/debugger/model/Image.cpp
52
&& address < fInfo.DataBase() + fInfo.DataSize());
src/system/kernel/debug/core_dump.cpp
1405
entry.ni_data_base = imageInfo->DataBase();
src/tests/system/kernel/device_manager/dma_resource_test.cpp
156
addr_t DataBase() const { return fContext.DataBase(); }
src/tests/system/kernel/device_manager/dma_resource_test.cpp
318
? fSuite.DataBase() : fSuite.PhysicalDataBase()) + address;
src/tests/system/kernel/device_manager/dma_resource_test.cpp
362
return source - fSuite.SecondPhysicalDataBase() + fSuite.DataBase();
src/tests/system/kernel/device_manager/dma_resource_test.cpp
364
return source - fSuite.PhysicalDataBase() + fSuite.DataBase();
src/tests/system/kernel/device_manager/dma_resource_test.cpp
383
return source - fSuite.DataBase() + fSuite.CompareBase();
src/tests/system/kernel/device_manager/dma_resource_test.cpp
399
memset((void*)fSuite.DataBase(), 0xcc, fSuite.Size());
src/tests/system/kernel/device_manager/dma_resource_test.cpp
458
uint8* data = (uint8*)fSuite.DataBase();
src/tests/system/kernel/device_manager/dma_resource_test.cpp
670
dprintf(" base: %p (physical: %p)\n", (void*)fSuite.DataBase(),