Home
last modified time | relevance | path

Searched refs:current_thread (Results 1 – 3 of 3) sorted by relevance

/external/valgrind/exp-bbv/
Dbbv_main.c72 static Int current_thread=0; variable
157 if (bbv_thread[current_thread].dyn_instr > interval_size) { in handle_overflow()
162 if (bbv_thread[current_thread].bbtrace_fp == NULL) { in handle_overflow()
163 bbv_thread[current_thread].bbtrace_fp=open_tracefile(current_thread); in handle_overflow()
168 VG_(fprintf)(bbv_thread[current_thread].bbtrace_fp, "T"); in handle_overflow()
172 if ( bb_elem->inst_counter[current_thread] != 0 ) { in handle_overflow()
173 VG_(fprintf)(bbv_thread[current_thread].bbtrace_fp, ":%d:%d ", in handle_overflow()
175 bb_elem->inst_counter[current_thread]); in handle_overflow()
176 bb_elem->inst_counter[current_thread] = 0; in handle_overflow()
180 VG_(fprintf)(bbv_thread[current_thread].bbtrace_fp, "\n"); in handle_overflow()
[all …]
/external/jetty/src/java/org/eclipse/jetty/server/handler/
DContextHandler.java697 Thread current_thread = null; in doStart() local
705 current_thread = Thread.currentThread(); in doStart()
706 old_classloader = current_thread.getContextClassLoader(); in doStart()
707 current_thread.setContextClassLoader(_classLoader); in doStart()
731 current_thread.setContextClassLoader(old_classloader); in doStart()
801 Thread current_thread = null; in doStop() local
810 current_thread = Thread.currentThread(); in doStop()
811 old_classloader = current_thread.getContextClassLoader(); in doStop()
812 current_thread.setContextClassLoader(_classLoader); in doStop()
847 current_thread.setContextClassLoader(old_classloader); in doStop()
[all …]
/external/lldb/source/Commands/
DCommandObjectThread.cpp735 Thread *current_thread = process->GetThreadList().GetSelectedThread().get(); in DoExecute() local
736 if (current_thread == NULL) in DoExecute()
746 if (thread == current_thread) in DoExecute()