Searched refs:task (Results 201 - 210 of 210) sorted by relevance

123456789

/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DUtil.java613 * Invokes the <code>task</code> on the EDT thread.
615 * @return result of the <code>task</code>
617 public static <T> T invokeOnEDT(final java.util.concurrent.Callable<T> task) throws Exception { argument
626 result.add(task.call());
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacProcessingEnvironment.java1124 JavacTaskImpl task = context.get(JavacTaskImpl.class);
1125 if (task != null) {
1126 next.put(JavacTaskImpl.class, task);
1127 task.updateContext(next);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp506 // Executes a task using worker threads.
507 virtual void execute(ProcessTask& task);
508 virtual void execute(EnqueueTask& task);
1428 Par_MarkFromRootsClosure(CMSConcMarkingTask* task, CMSCollector* collector,
H A DconcurrentMarkSweepGeneration.cpp683 // Parallel task queues; these are shared for the
3761 // "collector" is the CMS collector associated with this task terminator.
3767 void set_task(CMSConcMarkingTask* task) {
3768 _task = task;
3776 void set_task(CMSConcMarkingTask* task) {
3777 _task = task;
3872 // because we want terminating threads to yield only if the task
3956 // Note that under the current task protocol, the
4015 // Align down to a card boundary for the start of 0th task
4024 // Having claimed the nth task i
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp221 // claimed as a task.
740 // Otherwise the first task to enroll will trigger the start
1827 // Get/set the thread's current task
1828 CompileTask* task() { return _task; } function in class:CompilerThread
1829 void set_task(CompileTask* task) { _task = task; } argument
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp627 STEP(150, "(printing current compile task)" )
631 if (t->task()) {
634 t->task()->print_line_on_error(st, buf, sizeof(buf));
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java157 public void execute (Runnable task) { argument
158 task.run();
270 /* main server listener task */
482 /* per exchange task */
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosTest.java270 JavacTask task = tool.getTask(pw, fm, r, Collections.<String>emptyList(), null, files);
271 Iterable<? extends CompilationUnitTree> trees = task.parse();
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.cpp31 #include "runtime/task.hpp"
301 void task() { function in class:ChunkPoolCleaner
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp82 // It does use run_task() which sets _n_workers in the task.
3333 // This is the task used for parallel heap verification.
3346 AbstractGangTask("Parallel verify task"),
3423 G1ParVerifyTask task(this, vo);
3429 workers()->run_task(&task);
3431 if (task.failures()) {
4923 // This task calls set_n_termination() in par_non_clean_card_iterate_work()
4926 // This task also uses SubTasksDone in SharedHeap and G1CollectedHeap
5304 // Executes the given task using concurrent marking worker threads.
5305 virtual void execute(ProcessTask& task);
[all...]

Completed in 91 milliseconds

123456789