Home
last modified time | relevance | path

Searched refs:ThreadFunctionInvocation (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
DThreadFunctionInvocation.h36 struct ThreadFunctionInvocation { struct
37 ThreadFunctionInvocation(ThreadFunction function, void* data) in ThreadFunctionInvocation() argument
DThreadingPthreads.cpp148 …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()
DThreadingWin.cpp196 …OwnPtr<ThreadFunctionInvocation> invocation = adoptPtr(static_cast<ThreadFunctionInvocation*>(para… in wtfThreadEntryPoint()
211 …OwnPtr<ThreadFunctionInvocation> invocation = adoptPtr(new ThreadFunctionInvocation(entryPoint, da… in createThreadInternal()
/external/webkit/Source/JavaScriptCore/
DJavaScriptCore.gypi610 'wtf/ThreadFunctionInvocation.h',
DChangeLog-2011-02-166728 LEAK: Deallocate instance of ThreadFunctionInvocation if thread creation fails
6762 … Extract ThreadFunctionInvocation into separate file and share between Apple Windows and Android
6766 called ThreadFunctionInvocation and ThreadData respectively, as part of
6770 * 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 that
6778 (WTF::wtfThreadEntryPoint): Use OwnPtr to hold passed instance of ThreadFunctionInvocation.
DChangeLog-2008-08-1017926 …(WTF::ThreadFunctionInvocation::ThreadFunctionInvocation): Added a structure to wrap thread entry …