OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:libc_handle
(Results
1 - 3
of
3
) sorted by null
/external/minijail/
libminijailpreload.c
24
static void *
libc_handle
;
variable
81
dlclose(
libc_handle
);
121
libc_handle
= dlopen("libc.so.6", RTLD_NOW);
123
if (!
libc_handle
) {
130
sym = dlsym(
libc_handle
, "__libc_start_main");
/external/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c
497
void*
libc_handle
= dlopen("libc.so", RTLD_NOW);
local
498
if (!
libc_handle
) {
505
dlsym(
libc_handle
, "getauxval");
512
dlclose(
libc_handle
);
[
all
...]
/ndk/sources/android/cpufeatures/
cpu-features.c
522
void*
libc_handle
= dlopen("libc.so", RTLD_NOW);
local
523
if (!
libc_handle
) {
530
dlsym(
libc_handle
, "getauxval");
537
dlclose(
libc_handle
);
[
all
...]
Completed in 4089 milliseconds