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.cpp116 bool (*is_debuggable)() = IsDebuggable,
169 bool (*is_debuggable)(), in GetLibrary() argument
174 if (!is_debuggable()) { in GetLibrary()
198 UNUSED(is_debuggable); in GetLibrary()
299 bool (*is_debuggable)(), in GetLibrary() argument
301 return JniInvocationImpl::GetLibrary(library, buffer, is_debuggable, get_library_system_property); in GetLibrary()
/libnativehelper/include/nativehelper/
DJniInvocation.h61 static const char* GetLibrary(const char* library, char* buffer, bool (*is_debuggable)(),