/external/compiler-rt/test/tsan/ |
ignore_lib1.cc | 13 #ifndef LIB 23 std::string lib = std::string(dirname(argv[0])) + "/libignore_lib1.so"; local 24 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); 33 #else // #ifdef LIB 37 #endif // #ifdef LIB
|
ignore_lib3.cc | 11 #ifndef LIB 21 std::string lib = std::string(dirname(argv[0])) + "/libignore_lib3.so"; local 22 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); 27 #else // #ifdef LIB 32 #endif // #ifdef LIB
|
dl_iterate_phdr.cc | 42 void *lib = dlopen(path.c_str(), RTLD_NOW); local 43 if (!lib) { 47 dlclose(lib);
|
dlclose.cc | 24 void *lib; variable 29 dlclose(lib); 36 lib = dlopen((std::string(argv[0]) + std::string("-so.so")).c_str(), 38 if (lib == 0) { 42 void *f = dlsym(lib, "sofunc");
|
/ndk/tests/device/whole-static-libs/jni/ |
main.c | 21 void* lib = dlopen(buf, RTLD_NOW); local 22 if (lib == NULL) { 26 if (dlsym(lib, "foo2") == NULL) { 30 dlclose(lib);
|
/development/ndk/tests/dlclose-destruction/jni/ |
main.c | 9 void* lib = dlopen("libtest1.so", RTLD_NOW); local 12 if (lib == NULL) { 19 test_func = dlsym(lib, "test1_set"); 35 dlclose(lib);
|
/sdk/testapps/testProjectTest/lib/src/com/android/tests/testprojecttest/lib/ |
LibActivity.java | 1 package com.android.tests.testprojecttest.lib;
|
/development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/ |
CompatTabListener.java | 17 package com.example.android.tabcompat.lib;
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
asan-symbolize-sanity-test.cc | 27 void *lib = dlopen(path.c_str(), RTLD_NOW); local 28 if (!lib) { 32 fun_t *inc2 = (fun_t*)dlsym(lib, "inc2");
|
shared-lib-test.cc | 25 void *lib = dlopen(path.c_str(), RTLD_NOW); local 26 if (!lib) { 30 fun_t *inc = (fun_t*)dlsym(lib, "inc"); 38 // CHECK: {{ #1 0x.* in main .*shared-lib-test.cc:}}[[@LINE-4]]
|
/external/emma/core/java12/com/vladium/jcd/lib/ |
UDataInputStream.java | 9 package com.vladium.jcd.lib;
|
UDataOutputStream.java | 9 package com.vladium.jcd.lib;
|
/frameworks/base/libs/androidfw/tests/data/appaslib/ |
R.h | 22 namespace lib { namespace in namespace:appaslib::R 34 } // namespace lib
|
/frameworks/base/libs/androidfw/tests/data/lib/ |
R.h | 20 namespace lib { namespace 37 } // namespace lib
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
test_libc.py | 6 lib = CDLL(_ctypes_test.__file__) variable 10 lib.my_sqrt.argtypes = c_double, 11 lib.my_sqrt.restype = c_double 12 self.assertEqual(lib.my_sqrt(4.0), 2.0) 14 self.assertEqual(lib.my_sqrt(2.0), math.sqrt(2.0)) 18 lib.my_qsort.argtypes = c_void_p, c_size_t, c_size_t, comparefunc 19 lib.my_qsort.restype = None 25 lib.my_qsort(chars, len(chars)-1, sizeof(c_char), comparefunc(sort))
|
test_stringptr.py | 6 lib = CDLL(_ctypes_test.__file__) variable 45 strchr = lib.my_strchr
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
test_libc.py | 6 lib = CDLL(_ctypes_test.__file__) variable 10 lib.my_sqrt.argtypes = c_double, 11 lib.my_sqrt.restype = c_double 12 self.assertEqual(lib.my_sqrt(4.0), 2.0) 14 self.assertEqual(lib.my_sqrt(2.0), math.sqrt(2.0)) 18 lib.my_qsort.argtypes = c_void_p, c_size_t, c_size_t, comparefunc 19 lib.my_qsort.restype = None 25 lib.my_qsort(chars, len(chars)-1, sizeof(c_char), comparefunc(sort))
|
test_stringptr.py | 6 lib = CDLL(_ctypes_test.__file__) variable 45 strchr = lib.my_strchr
|
/prebuilts/misc/windows/sdl2/test/ |
testloadso.c | 31 void *lib = NULL; local 37 SDL_Log(" %s --hello <lib with puts()>\n", app); 56 lib = SDL_LoadObject(libname); 57 if (lib == NULL) { 62 fn = (fntype) SDL_LoadFunction(lib, symname); 78 SDL_UnloadObject(lib);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_libc.py | 6 lib = CDLL(_ctypes_test.__file__) variable 10 lib.my_sqrt.argtypes = c_double, 11 lib.my_sqrt.restype = c_double 12 self.assertEqual(lib.my_sqrt(4.0), 2.0) 14 self.assertEqual(lib.my_sqrt(2.0), math.sqrt(2.0)) 18 lib.my_qsort.argtypes = c_void_p, c_size_t, c_size_t, comparefunc 19 lib.my_qsort.restype = None 25 lib.my_qsort(chars, len(chars)-1, sizeof(c_char), comparefunc(sort))
|
test_stringptr.py | 6 lib = CDLL(_ctypes_test.__file__) variable 45 strchr = lib.my_strchr
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_libc.py | 6 lib = CDLL(_ctypes_test.__file__) variable 10 lib.my_sqrt.argtypes = c_double, 11 lib.my_sqrt.restype = c_double 12 self.assertEqual(lib.my_sqrt(4.0), 2.0) 14 self.assertEqual(lib.my_sqrt(2.0), math.sqrt(2.0)) 18 lib.my_qsort.argtypes = c_void_p, c_size_t, c_size_t, comparefunc 19 lib.my_qsort.restype = None 25 lib.my_qsort(chars, len(chars)-1, sizeof(c_char), comparefunc(sort))
|
test_stringptr.py | 6 lib = CDLL(_ctypes_test.__file__) variable 45 strchr = lib.my_strchr
|
/sdk/testapps/aidlTest/libWithAidl/src/com/android/tests/aidl/lib/ |
MyParcelable.java | 17 package com.android.tests.aidl.lib;
|
/system/core/metricsd/ |
c_metrics_library.cc | 28 MetricsLibrary* lib = new MetricsLibrary; local 29 return reinterpret_cast<CMetricsLibrary>(lib); 33 MetricsLibrary* lib = reinterpret_cast<MetricsLibrary*>(handle); local 34 delete lib; 38 MetricsLibrary* lib = reinterpret_cast<MetricsLibrary*>(handle); local 39 if (lib != NULL) 40 lib->Init(); 46 MetricsLibrary* lib = reinterpret_cast<MetricsLibrary*>(handle); local 47 if (lib == NULL) 49 return lib->SendToUMA(std::string(name), sample, min, max, nbuckets) 55 MetricsLibrary* lib = reinterpret_cast<MetricsLibrary*>(handle); local 63 MetricsLibrary* lib = reinterpret_cast<MetricsLibrary*>(handle); local 71 MetricsLibrary* lib = reinterpret_cast<MetricsLibrary*>(handle); local 78 MetricsLibrary* lib = reinterpret_cast<MetricsLibrary*>(handle); local [all...] |