Home
last modified time | relevance | path

Searched refs:handle2 (Results 1 – 10 of 10) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Posix/
Dcoverage-module-unloaded.cc33 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/
Ddebug-toggle-mirror-cache.js34 var handle2 = debug.MakeMirror(123).handle(); variable
35 assertEquals(undefined, handle2);
36 assertThrows(function() { debug.LookupMirror(handle2) });
/external/curl/tests/libtest/
Dlib544.c73 CURL *handle2; in test() local
74 handle2 = curl_easy_duphandle(curl); in test()
77 curl = handle2; in test()
/external/libchrome/base/synchronization/
Dlock_unittest.cc199 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/
Dlock_test.cc214 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/
Dscalar_promote.ll80 %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/
Dtjunittest.c416 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/
Dtrace_event_unittest.cc1467 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/
Dvideo_send_stream_tests.cc1161 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/
Dtest-api.cc13545 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 …]