/external/compiler-rt/test/asan/TestCases/Posix/ |
D | coverage-module-unloaded.cc | 33 void *handle2 = dlopen(argv[2], RTLD_LAZY); // %dynamiclib2 in main() local 34 assert(handle2); in main() 35 void (*bar2)() = (void (*)())dlsym(handle2, "bar"); in main() 42 dlclose(bar1 < bar2 ? handle1 : handle2); in main() 44 dlclose(bar1 < bar2 ? handle2 : handle1); in main()
|
/external/v8/test/mjsunit/ |
D | debug-toggle-mirror-cache.js | 34 var handle2 = debug.MakeMirror(123).handle(); variable 35 assertEquals(undefined, handle2); 36 assertThrows(function() { debug.LookupMirror(handle2) });
|
/external/curl/tests/libtest/ |
D | lib544.c | 73 CURL *handle2; in test() local 74 handle2 = curl_easy_duphandle(curl); in test() 77 curl = handle2; in test()
|
/external/libchrome/base/synchronization/ |
D | lock_unittest.cc | 199 PlatformThreadHandle handle2; in TEST() local 203 ASSERT_TRUE(PlatformThread::Create(0, &thread2, &handle2)); in TEST() 209 PlatformThread::Join(handle2); in TEST()
|
/external/sfntly/cpp/src/test/ |
D | lock_test.cc | 214 PlatformThreadHandle handle2 = kNullThreadHandle; in MutexFourThreads() local 218 EXPECT_TRUE(PlatformThread::Create(&thread2, &handle2)); in MutexFourThreads() 224 PlatformThread::Join(handle2); in MutexFourThreads()
|
/external/llvm/test/Transforms/LICM/ |
D | scalar_promote.ll | 80 %handle2 = alloca i8* 86 store i8* %tmp, i8** %handle2 91 %offsetx2 = load i8*, i8** %handle2 94 store i8* %newoffsetx2, i8** %handle2 99 ; Should have promoted 'handle2' accesses.
|
/external/libjpeg-turbo/ |
D | tjunittest.c | 416 tjhandle handle2=tjInitCompress(); in compTest() local 417 if(!handle2) _throwtj(); in compTest() 424 _tj(tjEncodeYUV3(handle2, srcBuf, w, 0, h, pf, yuvBuf, pad, subsamp, in compTest() 426 tjDestroy(handle2); in compTest() 478 tjhandle handle2=tjInitDecompress(); in _decompTest() local 479 if(!handle2) _throwtj(); in _decompTest() 497 _tj(tjDecodeYUV(handle2, yuvBuf, pad, subsamp, dstBuf, scaledWidth, 0, in _decompTest() 499 tjDestroy(handle2); in _decompTest()
|
/external/libchrome/base/trace_event/ |
D | trace_event_unittest.cc | 1467 TraceEventHandle handle2 = in TEST_F() local 1475 const TraceEvent* event2 = tracer->GetEventByHandle(handle2); in TEST_F() 1498 TraceEventHandle handle2 = in TEST_F() local 1506 const TraceEvent* event2 = tracer->GetEventByHandle(handle2); in TEST_F()
|
/external/webrtc/webrtc/video/ |
D | video_send_stream_tests.cc | 1161 test::FakeNativeHandle* handle2 = new test::FakeNativeHandle(); in TEST_F() local 1166 handle2, width, height, 2, 2, kVideoRotation_0)); in TEST_F()
|
/external/v8/test/cctest/ |
D | test-api.cc | 13545 CopyableObject handle2; in TEST() local 13546 handle2 = handle1; in TEST() 13547 CHECK(handle1 == handle2); in TEST() 13549 CopyableObject handle3(handle2); in TEST() 13611 v8::Persistent<v8::Object> handle1, handle2; in THREADED_TEST() local 13616 handle2.Reset(isolate, v8::Object::New(isolate)); in THREADED_TEST() 13624 handle2.Reset(); in THREADED_TEST() 13650 v8::Persistent<v8::Object> handle1, handle2; in THREADED_TEST() local 13654 handle2.Reset(isolate, v8::Object::New(isolate)); in THREADED_TEST() 13658 to_be_disposed.Reset(isolate, handle2); in THREADED_TEST() [all …]
|