Home
last modified time | relevance | path

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

/frameworks/libs/native_bridge_support/android_api/
Dgen_proxy_libraries.py111 library_path = path_template % (self.android_tree_root,
115 p = subprocess.Popen([self.dwarf_reader, library_path],
119 return arch, library_path, p, tmp_output,
140 arch, library_path, p, _ = proc
142 raise Exception('Error while generating %s api for %s' % (arch, library_path))
/frameworks/libs/binary_translation/native_bridge/
Dnative_bridge.h163 bool (*isPathSupported)(const char* library_path);
Dnative_bridge.cc545 bool native_bridge_isPathSupported(const char* library_path) { in native_bridge_isPathSupported() argument
546 LOG_NB("native_bridge_isPathSupported(path=%s)", library_path); in native_bridge_isPathSupported()
547 return strstr(library_path, berberis::kSupportedLibraryPathSubstring) != nullptr; in native_bridge_isPathSupported()