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

1 2 3 4 5 6 7 8 91011>>

  /development/vndk/tools/sourcedr/sourcedr/tests/testdata/android_src/
example.c 4 "This line with dlopen shouldn't be found"
6 * This dlopen shouldn't be found
8 dlopen("dlopen");
9 handle = dlopen("libm.so.6", RTLD_LAZY);
  /external/compiler-rt/test/asan/TestCases/Linux/
asan_dlopen_test.cc 1 // Test that dlopen of dynamic runtime is prohibited.
11 dlopen(RT, RTLD_LAZY);
  /bionic/tests/libs/
dlopen_testlib_dlopen_from_ctor.cpp 20 void* handle = dlopen("libc.so", RTLD_NOW);
dlopen_b.cpp 9 // by dlopen.
10 void *handle = dlopen("libtest_dt_runpath_x.so", RTLD_NOW);
cfi_test_helper2.cpp 25 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_NOLOAD);
  /external/fio/os/windows/posix/include/
dlfcn.h 6 void *dlopen(const char *file, int mode);
  /external/libxml2/os400/dlfcn/
dlfcn.h 2 *** dlopen(), dlclose() dlsym(), dlerror() emulation for OS/400.
14 *** Flags for dlopen().
27 extern void * dlopen(const char * filename, int flag);
  /external/python/cpython2/PC/os2emx/
dlfcn.h 32 /* This library implements dlopen() - Unix-like dynamic linking
40 void *dlopen(char *filename, int flags);
  /external/skia/src/ports/
SkOSLibrary_posix.cpp 15 return dlopen(libraryName, RTLD_LAZY);
  /external/skqp/src/ports/
SkOSLibrary_posix.cpp 15 return dlopen(libraryName, RTLD_LAZY);
  /external/compiler-rt/test/msan/
dlerror.cc 9 void *p = dlopen("/bad/file/name", RTLD_NOW);
dlopen_executable.cc 12 void *p = dlopen(0, RTLD_NOW);
  /external/python/cpython2/Modules/_ctypes/
ctypes_dlfcn.h 16 #define ctypes_dlopen dlopen
  /external/python/cpython3/Modules/_ctypes/
ctypes_dlfcn.h 16 #define ctypes_dlopen dlopen
  /external/compiler-rt/test/tsan/
ignore_lib2.cc 19 dlopen(lib0.c_str(), RTLD_GLOBAL | RTLD_NOW);
20 dlopen(lib1.c_str(), RTLD_GLOBAL | RTLD_NOW);
  /external/compiler-rt/test/asan/TestCases/Posix/
coverage-module-unloaded.cc 28 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib1
33 void *handle2 = dlopen(argv[2], RTLD_LAZY); // %dynamiclib2
coverage-direct-activation.cc 51 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib
coverage-direct.cc 1 // Test for direct coverage writing with dlopen at coverage level 1 to 3.
75 void *handle1 = dlopen(argv[1], RTLD_LAZY);
  /bionic/tests/headers/posix/
dlfcn_h.c 41 FUNCTION(dlopen, void* (*f)(const char*, int));
  /development/vndk/tools/definition-tool/tests/testdata/test_elfdump/input/
main.c 10 void *handle = dlopen(argv[1], RTLD_NOW);
  /external/compiler-rt/test/tsan/Darwin/
dlopen.cc 2 // interceptors work automatically), dlopen'ing a TSanified library from a
14 // Launching a non-instrumented binary that dlopen's an instrumented library should fail.
29 void *handle = dlopen(argv[1], RTLD_NOW);
  /external/iproute2/include/
dlfcn.h 14 static inline void *dlopen(const char *file, int flag) function
  /external/swiftshader/src/Common/
SharedLibrary.hpp 90 return dlopen(path, RTLD_LAZY | RTLD_LOCAL);
97 return dlopen(path, RTLD_NOW | RTLD_LOCAL);
99 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL);
103 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); // Increment reference count
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue4029.c 10 // Write our own versions of dlopen/dlsym/dlclose so that we represent
15 return (uintptr_t)(dlopen(name, flags));
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/
main3.c 12 void* handle = dlopen(argv[1], RTLD_LAZY | RTLD_GLOBAL);

Completed in 601 milliseconds

1 2 3 4 5 6 7 8 91011>>