Home
last modified time | relevance | path

Searched refs:is_debuggable (Results 1 – 3 of 3) sorted by relevance

/libnativehelper/tests/
DJniInvocation_test.cpp46 auto is_debuggable = []() { return true; }; in TEST() local
54 JniInvocation::GetLibrary(NULL, buffer, is_debuggable, get_library_system_property); in TEST()
62 JniInvocation::GetLibrary(kTestNonNull, buffer, is_debuggable, get_library_system_property); in TEST()
75 auto is_debuggable = []() { return false; }; in TEST() local
78 const char* result = JniInvocation::GetLibrary(NULL, buffer, is_debuggable, nullptr); in TEST()
86 result = JniInvocation::GetLibrary(kTestNonNull, buffer, is_debuggable, nullptr); in TEST()
/libnativehelper/
DJniInvocation.cpp119 bool (*is_debuggable)() = IsDebuggable,
172 bool (*is_debuggable)(), in GetLibrary() argument
177 if (!is_debuggable()) { in GetLibrary()
201 UNUSED(is_debuggable); in GetLibrary()
318 bool (*is_debuggable)(), in GetLibrary() argument
320 return JniInvocationImpl::GetLibrary(library, buffer, is_debuggable, get_library_system_property); in GetLibrary()
/libnativehelper/include/nativehelper/
DJniInvocation.h69 static const char* GetLibrary(const char* library, char* buffer, bool (*is_debuggable)(),