HomeSort by relevance Sort by last modified time
    Searched refs:RTLD_LAZY (Results 1 - 25 of 69) sorted by null

1 2 3

  /development/ndk/platforms/android-3/include/
dlfcn.h 42 RTLD_LAZY = 1,
  /external/bluetooth/glib/gmodule/
gmodule-dl.c 50 * The Perl sources say, RTLD_LAZY needs to be defined as (1),
54 * RTLD_LAZY - resolve undefined symbols as code from the dynamic library
62 #ifndef RTLD_LAZY
63 #define RTLD_LAZY 1
64 #endif /* RTLD_LAZY */
100 (bind_local ? 0 : RTLD_GLOBAL) | (bind_lazy ? RTLD_LAZY : RTLD_NOW));
116 handle = dlopen (NULL, RTLD_GLOBAL | RTLD_LAZY);
gmodule-os2.c 46 * The Perl sources say, RTLD_LAZY needs to be defined as (1),
50 * RTLD_LAZY - resolve undefined symbols as code from the dynamic library
61 #ifndef RTLD_LAZY
62 #define RTLD_LAZY 1
63 #endif /* RTLD_LAZY */
78 (bind_local ? 0 : RTLD_GLOBAL) | (bind_lazy ? RTLD_LAZY : RTLD_NOW));
gmodule-ar.c 123 (bind_local ? RTLD_LOCAL : RTLD_GLOBAL) | RTLD_MEMBER | (bind_lazy ? RTLD_LAZY : RTLD_NOW));
138 handle = dlopen (NULL, RTLD_GLOBAL | RTLD_LAZY);
gmodule-beos.c 37 #ifndef RTLD_LAZY
38 #define RTLD_LAZY 1
39 #endif /* RTLD_LAZY */
  /external/iproute2/include/
dlfcn.h 10 #define RTLD_LAZY 0
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
dlfcn.h 42 RTLD_LAZY = 1,
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
dlfcn.h 42 RTLD_LAZY = 1,
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
dlfcn.h 42 RTLD_LAZY = 1,
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
dlfcn.h 42 RTLD_LAZY = 1,
  /bionic/libc/include/
dlfcn.h 54 RTLD_LAZY = 1,
  /development/ndk/platforms/android-8/include/
dlfcn.h 54 RTLD_LAZY = 1,
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
dlfcn.h 54 RTLD_LAZY = 1,
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
dlfcn.h 54 RTLD_LAZY = 1,
  /external/chromium/base/
native_library_linux.cc 17 void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY);
  /external/iproute2/genl/
genl.c 68 dlh = dlopen(buf, RTLD_LAZY);
72 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /external/iproute2/tc/
tc.c 124 dlh = dlopen(buf, RTLD_LAZY);
129 dlh = BODY = dlopen(NULL, RTLD_LAZY);
178 dlh = dlopen(buf, RTLD_LAZY);
182 dlh = BODY = dlopen(NULL, RTLD_LAZY);
m_ipt.c 264 handle = dlopen(path, RTLD_LAZY);
268 handle = dlopen(path, RTLD_LAZY);
272 handle = dlopen(path, RTLD_LAZY);
277 handle = dlopen(path, RTLD_LAZY);
m_ematch.c 142 dlh = dlopen(buf, RTLD_LAZY);
146 dlh = body = dlopen(NULL, RTLD_LAZY);
m_pedit.c 90 dlh = dlopen(buf, RTLD_LAZY);
94 dlh = pBODY = dlopen(NULL, RTLD_LAZY);
  /external/openssl/crypto/
sparcv9cap.c 114 if ((h = dlopen("libdevinfo.so.1",RTLD_LAZY))) do
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
register.h 92 void *handle = dlopen(so_file.c_str(), RTLD_LAZY);
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
MobileApple80211.c 155 aeropuerto = dlopen(fname, RTLD_LAZY);
  /frameworks/opt/emoji/
EmojiFactory.cpp 76 void *handle = dlopen(library_name, RTLD_LAZY | RTLD_LOCAL);
  /external/elfutils/libebl/
eblopenbackend.c 226 void *h = dlopen (dsoname, RTLD_LAZY);
232 h = dlopen (dsoname, RTLD_LAZY);

Completed in 542 milliseconds

1 2 3