Lines Matching refs:global
349 std::string global("something"); in TEST_F() local
351 ASSERT_FALSE(elf.GetGlobalVariable(global, &offset)); in TEST_F()
362 std::string global("something"); in TEST_F() local
363 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)).WillOnce(::testing::Return(false)); in TEST_F()
365 ASSERT_FALSE(elf.GetGlobalVariable(global, &offset)); in TEST_F()
377 std::string global("something"); in TEST_F() local
378 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)) in TEST_F()
381 ASSERT_FALSE(elf.GetGlobalVariable(global, &offset)); in TEST_F()
393 std::string global("something"); in TEST_F() local
394 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)) in TEST_F()
397 ASSERT_TRUE(elf.GetGlobalVariable(global, &offset)); in TEST_F()
412 std::string global("something"); in TEST_F() local
413 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)).WillOnce(::testing::Return(false)); in TEST_F()
415 EXPECT_CALL(*gnu_interface, GetGlobalVariable(global, &offset)) in TEST_F()
418 ASSERT_TRUE(elf.GetGlobalVariable(global, &offset)); in TEST_F()
430 std::string global("something"); in TEST_F() local
431 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)) in TEST_F()
434 ASSERT_TRUE(elf.GetGlobalVariable(global, &offset)); in TEST_F()
449 std::string global("something"); in TEST_F() local
450 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)) in TEST_F()
453 ASSERT_TRUE(elf.GetGlobalVariable(global, &offset)); in TEST_F()
468 std::string global("something"); in TEST_F() local
469 EXPECT_CALL(*interface, GetGlobalVariable(global, &offset)) in TEST_F()
472 ASSERT_TRUE(elf.GetGlobalVariable(global, &offset)); in TEST_F()