HomeSort by relevance Sort by last modified time
    Searched refs:GetGlobalVariable (Results 1 - 10 of 10) sorted by null

  /system/core/libunwindstack/tests/
ElfTest.cpp 350 MOCK_METHOD2(GetGlobalVariable, bool(const std::string&, uint64_t*));
400 ASSERT_FALSE(elf.GetGlobalVariable(global, &offset));
413 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)).WillOnce(::testing::Return(false));
415 ASSERT_FALSE(elf.GetGlobalVariable(global, &offset));
428 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset))
431 ASSERT_FALSE(elf.GetGlobalVariable(global, &offset));
447 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)).WillOnce(::testing::Return(false));
449 EXPECT_CALL(*gnu_interface, GetGlobalVariable(global, &offset))
452 ASSERT_TRUE(elf.GetGlobalVariable(global, &offset));
466 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)
    [all...]
ElfFake.cpp 46 bool ElfInterfaceFake::GetGlobalVariable(const std::string& global, uint64_t* offset) {
ElfFake.h 74 bool GetGlobalVariable(const std::string&, uint64_t*) override;
  /external/pdfium/fxjs/
cjs_globaldata.h 58 CJS_GlobalData_Element* GetGlobalVariable(const ByteString& sPropname);
cjs_globaldata.cpp 90 CJS_GlobalData_Element* CJS_GlobalData::GetGlobalVariable(
102 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) {
120 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) {
138 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) {
157 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) {
174 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) {
190 CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName);
  /system/core/libunwindstack/include/unwindstack/
ElfInterface.h 64 virtual bool GetGlobalVariable(const std::string& name, uint64_t* memory_address) = 0;
183 bool GetGlobalVariable(const std::string& name, uint64_t* memory_address) override {
212 bool GetGlobalVariable(const std::string& name, uint64_t* memory_address) override {
Elf.h 64 bool GetGlobalVariable(const std::string& name, uint64_t* memory_address);
  /system/core/libunwindstack/
Elf.cpp 111 bool Elf::GetGlobalVariable(const std::string& name, uint64_t* memory_address) {
116 if (!interface_->GetGlobalVariable(name, memory_address) &&
118 !gnu_debugdata_interface_->GetGlobalVariable(name, memory_address))) {
DexFiles.cpp 150 if (elf->GetGlobalVariable(dex_debug_name, &ptr) && ptr != 0) {
JitDebug.cpp 197 if (elf->GetGlobalVariable(descriptor_name, &descriptor_addr)) {

Completed in 190 milliseconds