Lines Matching refs:dlopen
44 had to call `dlopen` or `System.loadLibrary` on all transitive
90 The dlopen(3) RTLD_LOCAL flag used to be ignored but is implemented
92 so even calls to dlopen(3) that didn’t explicitly use RTLD_LOCAL will
95 to dlopen(3) (as opposed to being referenced by DT_NEEDED entries).
116 `dlopen("/this/directory/does/not/exist/libc.so", RTLD_NOW)` would
150 Note that in API level 23 and above dlopen(3) can open a library from
151 any zip file, not just an APK. Just give dlopen(3) a path of the form
167 System.loadLibrary(), DT_NEEDED entries, and direct calls to dlopen(3)
393 dlopen failed: "/data/data/com.example.bad/lib.so" has unsupported e_shentsize: 0x0 (expected 0x28)
401 ## Enable logging of dlopen/dlsym and library loading errors for apps (Available for API level >= 2…
407 adb shell setprop debug.ld.app.com.example.myapp dlerror,dlopen,dlsym
411 Any combination of `dlerror`, `dlopen`, and `dlsym` can be used. There's
412 no separate `dlclose` option: `dlopen` covers both loading and unloading
421 app-specific one. For example, to enable logging of all dlopen(3)
424 adb shell setprop debug.ld.all dlerror,dlopen