Home
last modified time | relevance | path

Searched refs:NativeBridgeIsPathSupported (Results 1 – 6 of 6) sorted by relevance

/art/libnativebridge/tests/
DNativeBridge3IsPathSupported_test.cpp31 ASSERT_EQ(true, NativeBridgeIsPathSupported(nullptr)); in TEST_F()
/art/libnativeloader/
Dnative_loader_test.cpp92 virtual bool NativeBridgeIsPathSupported(const char*) = 0;
132 ON_CALL(*this, NativeBridgeIsPathSupported(_)).WillByDefault(Return(is_bridged_)); in MockPlatform()
162 MOCK_METHOD1(NativeBridgeIsPathSupported, bool(const char*));
255 bool NativeBridgeIsPathSupported(const char* path) { in NativeBridgeIsPathSupported() function
256 return mock->NativeBridgeIsPathSupported(path); in NativeBridgeIsPathSupported()
442 EXPECT_CALL(*mock, NativeBridgeIsPathSupported(_)).Times(testing::AnyNumber()); in SetExpectations()
Dnative_loader_namespace.cpp95 is_bridged = NativeBridgeIsPathSupported(search_paths.c_str()); in Create()
Dnative_loader.cpp359 is_bridged = NativeBridgeIsPathSupported(library_path_utf_chars.c_str()); in OpenNativeLibrary()
/art/libnativebridge/include/nativebridge/
Dnative_bridge.h147 bool NativeBridgeIsPathSupported(const char* path);
/art/libnativebridge/
Dnative_bridge.cc660 bool NativeBridgeIsPathSupported(const char* path) { in NativeBridgeIsPathSupported() function