Searched refs:ThreadFunctionInvocation (Results 1 – 6 of 6) sorted by relevance
36 struct ThreadFunctionInvocation { struct37 ThreadFunctionInvocation(ThreadFunction function, void* data) in ThreadFunctionInvocation() argument
148 …OwnPtr<ThreadFunctionInvocation> invocation = adoptPtr(static_cast<ThreadFunctionInvocation*>(arg)… in runThreadWithRegistration()164 …OwnPtr<ThreadFunctionInvocation> invocation = adoptPtr(new ThreadFunctionInvocation(entryPoint, da… in createThreadInternal()172 ThreadFunctionInvocation* unused = invocation.leakPtr(); in createThreadInternal()
196 …OwnPtr<ThreadFunctionInvocation> invocation = adoptPtr(static_cast<ThreadFunctionInvocation*>(para… in wtfThreadEntryPoint()211 …OwnPtr<ThreadFunctionInvocation> invocation = adoptPtr(new ThreadFunctionInvocation(entryPoint, da… in createThreadInternal()
610 'wtf/ThreadFunctionInvocation.h',
6728 LEAK: Deallocate instance of ThreadFunctionInvocation if thread creation fails6762 … Extract ThreadFunctionInvocation into separate file and share between Apple Windows and Android6766 called ThreadFunctionInvocation and ThreadData respectively, as part of6770 * JavaScriptCore.gypi: Added header wtf/ThreadFunctionInvocation.h.6771 * wtf/ThreadFunctionInvocation.h: Added.6772 (WTF::ThreadFunctionInvocation::ThreadFunctionInvocation):6773 …Pthreads.cpp: Removed Android-specific structure ThreadData; Instead, use ThreadFunctionInvocation.6776 * wtf/ThreadingWin.cpp: Moved structure ThreadFunctionInvocation to its own file so that6778 (WTF::wtfThreadEntryPoint): Use OwnPtr to hold passed instance of ThreadFunctionInvocation.
17926 …(WTF::ThreadFunctionInvocation::ThreadFunctionInvocation): Added a structure to wrap thread entry …