OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LoadNativeBridge
(Results
1 - 16
of
16
) sorted by null
/system/core/libnativebridge/tests/
ReSetupNativeBridge_test.cpp
23
LoadNativeBridge
("", nullptr);
25
LoadNativeBridge
("", nullptr);
NativeBridgeVersion_test.cpp
28
ASSERT_TRUE(
LoadNativeBridge
(kNativeBridgeLibrary, nullptr));
ValidNameNativeBridge_test.cpp
27
// Now check what happens on
LoadNativeBridge
.
29
LoadNativeBridge
(kTestName, nullptr);
InvalidCharsNativeBridge_test.cpp
26
LoadNativeBridge
(kTestName, nullptr);
PreInitializeNativeBridgeFail1_test.cpp
33
ASSERT_TRUE(
LoadNativeBridge
(kNativeBridgeLibrary, nullptr));
NativeBridge2Signal_test.cpp
28
ASSERT_TRUE(
LoadNativeBridge
(kNativeBridgeLibrary2, nullptr));
CodeCacheCreate_test.cpp
34
ASSERT_TRUE(
LoadNativeBridge
(kNativeBridgeLibrary, nullptr));
CodeCacheExists_test.cpp
37
ASSERT_TRUE(
LoadNativeBridge
(kNativeBridgeLibrary, nullptr));
CodeCacheStatFail_test.cpp
38
ASSERT_TRUE(
LoadNativeBridge
(kNativeBridgeLibrary, nullptr));
CompleteFlow_test.cpp
25
ASSERT_TRUE(
LoadNativeBridge
(kNativeBridgeLibrary, nullptr));
PreInitializeNativeBridge_test.cpp
34
ASSERT_TRUE(
LoadNativeBridge
(kNativeBridgeLibrary, nullptr));
/art/runtime/
native_bridge_art_interface.h
29
bool
LoadNativeBridge
(std::string& native_bridge_library_filename);
native_bridge_art_interface.cc
91
bool
LoadNativeBridge
(std::string& native_bridge_library_filename) {
94
return android::
LoadNativeBridge
(native_bridge_library_filename.c_str(),
runtime.cc
[
all
...]
/system/core/include/nativebridge/
native_bridge.h
38
bool
LoadNativeBridge
(const char* native_bridge_library_filename,
57
//
LoadNativeBridge
.
61
//
LoadNativeBridge
& InitializeNativeBridge.
74
// successful
LoadNativeBridge
() and before closing it, that is, as long as NativeBridgeAvailable()
/system/core/libnativebridge/
native_bridge.cc
84
// Pointer to the callbacks. Available as soon as
LoadNativeBridge
succeeds, but only initialized
87
// Callbacks provided by the environment to the bridge. Passed to
LoadNativeBridge
.
175
bool
LoadNativeBridge
(const char* nb_library_filename,
177
// We expect only one place that calls
LoadNativeBridge
: Runtime::Init. At that point we are not
183
ALOGW("Called
LoadNativeBridge
for an already set up native bridge. State is %s.",
Completed in 2967 milliseconds