Home
last modified time | relevance | path

Searched refs:ProcessThread (Results 1 – 25 of 571) sorted by relevance

12345678910>>...23

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/services/monitoring/system/diagnosticts/
H A DProcessThreadCollection.cs35 public ProcessThread this[int index] {
42 public int Add(ProcessThread thread) { in Add()
56 public int IndexOf(ProcessThread thread) { in IndexOf()
63 public bool Contains(ProcessThread thread) { in Contains()
70 public void Remove(ProcessThread thread) { in Remove()
117 …public int BinarySearch(ProcessThread item, System.Collections.Generic.IComparer<ProcessThread> co… in BinarySearch()
135 public void CopyTo(ProcessThread[] array) in CopyTo()
153 public ProcessThread Find(Predicate<ProcessThread> match) in Find()
159 … public System.Collections.Generic.List<ProcessThread> FindAll(Predicate<ProcessThread> match) in FindAll()
183 public ProcessThread FindLast(Predicate<ProcessThread> match) in FindLast()
[all …]
/dports/audio/ardour6/Ardour-6.8.0/libs/ardour/
H A Dprocess_thread.cc43 ProcessThread::init () in init()
49 ProcessThread::ProcessThread () in ProcessThread() function in ProcessThread
54 ProcessThread::~ProcessThread () in ~ProcessThread()
59 ProcessThread::get_buffers () in get_buffers()
68 ProcessThread::drop_buffers () in drop_buffers()
171 ProcessThread::get_mix_buffers (ChanCount count) in get_mix_buffers()
185 ProcessThread::gain_automation_buffer() in gain_automation_buffer()
196 ProcessThread::trim_automation_buffer() in trim_automation_buffer()
207 ProcessThread::send_gain_automation_buffer() in send_gain_automation_buffer()
218 ProcessThread::scratch_automation_buffer() in scratch_automation_buffer()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.Process/src/System/Diagnostics/
H A DProcessThreadCollection.cs25 public ProcessThreadCollection(ProcessThread[] processThreads) in ProcessThreadCollection()
33 public ProcessThread this[int index]
35 get { return (ProcessThread)InnerList[index]; }
41 public int Add(ProcessThread thread) in Add()
49 public void Insert(int index, ProcessThread thread) in Insert()
57 public int IndexOf(ProcessThread thread) in IndexOf()
65 public bool Contains(ProcessThread thread) in Contains()
73 public void Remove(ProcessThread thread) in Remove()
81 public void CopyTo(ProcessThread[] array, int index) in CopyTo()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.Process/tests/
H A DProcessCollectionTests.cs67 ProcessThread[] tArray = _process.Threads.Cast<ProcessThread>().ToArray(); in TestThreadCollectionBehavior()
85 ProcessThread[] threadArray = new ProcessThread[threadCollection.Count + 1]; in TestThreadCollectionBehavior()
104 threadCollection.Add(default(ProcessThread)); in TestThreadCollectionBehavior()
105 … Assert.Equal(threadCollection.Count - 1, threadCollection.IndexOf(default(ProcessThread))); in TestThreadCollectionBehavior()
107 threadCollection.Add(default(ProcessThread)); in TestThreadCollectionBehavior()
109 Assert.Equal(default(ProcessThread), threadCollection[threadCollection.Count - 1]); in TestThreadCollectionBehavior()
111 threadCollection.Remove(default(ProcessThread)); in TestThreadCollectionBehavior()
112 threadCollection.Remove(default(ProcessThread)); in TestThreadCollectionBehavior()
113 Assert.False(threadCollection.Contains(default(ProcessThread))); in TestThreadCollectionBehavior()
128 threadArray = new ProcessThread[threadCollection.Count]; in TestThreadCollectionBehavior()
[all …]
H A DProcessThreadTests.cs24 ProcessThread thread = threadCollection[0]; in TestCommonPriorityAndTimeProperties()
81 ProcessThread thread = threads[0]; in TestStartTimeProperty_OSX()
111 foreach (ProcessThread t in threads.Cast<ProcessThread>()) in TestStartTimeProperty()
132 …Assert.Contains(p.Threads.Cast<ProcessThread>(), t => t.StartTime.ToUniversalTime() >= curTime - a… in TestStartTimeProperty()
164 ProcessThread thread = _process.Threads[0]; in TestPriorityLevelProperty()
205 ProcessThread thread = _process.Threads[0]; in TestThreadStateProperty()
/dports/biology/bbmap/bbmap/current/stream/
H A DSamReadStreamer.java89 ArrayList<ProcessThread> alpt=new ArrayList<ProcessThread>(threads); in spawnThreads()
91 alpt.add(new ProcessThread(i, alpt)); in spawnThreads()
96 for(ProcessThread pt : alpt){ in spawnThreads()
111 private class ProcessThread extends Thread { class in SamReadStreamer
114 ProcessThread(final int tid_, ArrayList<ProcessThread> alpt_){ in ProcessThread() method in SamReadStreamer.ProcessThread
142 for(ProcessThread pt : alpt){ in processBytes()
233 ArrayList<ProcessThread> alpt;
H A DSamLineStreamer.java89 ArrayList<ProcessThread> alpt=new ArrayList<ProcessThread>(threads); in spawnThreads()
91 alpt.add(new ProcessThread(i, alpt)); in spawnThreads()
96 for(ProcessThread pt : alpt){ in spawnThreads()
111 private class ProcessThread extends Thread { class in SamLineStreamer
114 ProcessThread(final int tid_, ArrayList<ProcessThread> alpt_){ in ProcessThread() method in SamLineStreamer.ProcessThread
142 for(ProcessThread pt : alpt){ in processBytes()
228 ArrayList<ProcessThread> alpt;
/dports/biology/bbmap/bbmap/current/var2/
H A DVcfLoader.java37 ArrayList<ProcessThread> alpt=loader.spawnThreads(false, false); in loadVarFile()
44 ArrayList<ProcessThread> alpt=loader.spawnThreads(loadCoverage, extendedInfo); in loadVcfFile()
50 private ArrayList<ProcessThread> spawnThreads(boolean loadCoverage, boolean extendedInfo){ in spawnThreads()
59 ArrayList<ProcessThread> alpt=new ArrayList<ProcessThread>(threads); in spawnThreads()
61 alpt.add(new ProcessThread(i, alpt, loadCoverage, extendedInfo)); in spawnThreads()
66 for(ProcessThread pt : alpt){ in spawnThreads()
75 private void waitForFinish(ArrayList<ProcessThread> alpt){ in waitForFinish()
78 for(ProcessThread pt : alpt){ in waitForFinish()
151 private class ProcessThread extends Thread{ class in VcfLoader
153ProcessThread(int tid_, ArrayList<ProcessThread> alpt_, boolean loadCoverage_, boolean extendedInf… in ProcessThread() method in VcfLoader.ProcessThread
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.Process/ref/
H A DSystem.Diagnostics.Process.cs187 public partial class ProcessThread : System.ComponentModel.Component class
189 internal ProcessThread() { } in ProcessThread() method in System.Diagnostics.ProcessThread
209 public ProcessThreadCollection(System.Diagnostics.ProcessThread[] processThreads) { } in ProcessThreadCollection()
210 public System.Diagnostics.ProcessThread this[int index] { get { throw null; } }
211 public int Add(System.Diagnostics.ProcessThread thread) { throw null; } in Add()
212 public bool Contains(System.Diagnostics.ProcessThread thread) { throw null; } in Contains()
213 public void CopyTo(System.Diagnostics.ProcessThread[] array, int index) { } in CopyTo()
214 public int IndexOf(System.Diagnostics.ProcessThread thread) { throw null; } in IndexOf()
215 public void Insert(int index, System.Diagnostics.ProcessThread thread) { } in Insert()
216 public void Remove(System.Diagnostics.ProcessThread thread) { } in Remove()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/management/jmxremote/bootstrap/
H A DJMXInterfaceBindingTest.java32 import jdk.testlibrary.ProcessThread;
85 List<ProcessThread> jvms = new ArrayList<>(addrs.size()); in runTests()
95 ProcessThread jvm = runJMXBindingTest(address, useSSL); in runTests()
101 for (ProcessThread pt: jvms) { in runTests()
129 private ProcessThread runJMXBindingTest(String address, boolean useSSL) { in runJMXBindingTest()
153ProcessThread jvm = new ProcessThread("JMX-Tester-" + address, JMXInterfaceBindingTest::isJMXAgent… in runJMXBindingTest()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/sun/management/jmxremote/bootstrap/
H A DJMXInterfaceBindingTest.java32 import jdk.test.lib.thread.ProcessThread;
85 List<ProcessThread> jvms = new ArrayList<>(addrs.size()); in runTests()
95 ProcessThread jvm = runJMXBindingTest(address, useSSL); in runTests()
101 for (ProcessThread pt: jvms) { in runTests()
129 private ProcessThread runJMXBindingTest(String address, boolean useSSL) { in runJMXBindingTest()
153ProcessThread jvm = new ProcessThread("JMX-Tester-" + address, JMXInterfaceBindingTest::isJMXAgent… in runJMXBindingTest()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/management/jmxremote/bootstrap/
H A DJMXInterfaceBindingTest.java32 import jdk.testlibrary.ProcessThread;
85 List<ProcessThread> jvms = new ArrayList<>(addrs.size()); in runTests()
95 ProcessThread jvm = runJMXBindingTest(address, useSSL); in runTests()
101 for (ProcessThread pt: jvms) { in runTests()
129 private ProcessThread runJMXBindingTest(String address, boolean useSSL) { in runJMXBindingTest()
153ProcessThread jvm = new ProcessThread("JMX-Tester-" + address, JMXInterfaceBindingTest::isJMXAgent… in runJMXBindingTest()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/com/sun/tools/attach/
H A DRunnerUtil.java31 import jdk.testlibrary.ProcessThread;
49 public static ProcessThread startApplication(String... additionalOpts) throws Throwable { in startApplication()
57ProcessThread pt = new ProcessThread("runApplication", (line) -> line.equals(Application.READY_MSG… in startApplication()
86 public static void stopApplication(ProcessThread processThread) throws Throwable { in stopApplication()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/com/sun/tools/attach/
H A DRunnerUtil.java29 import jdk.test.lib.thread.ProcessThread;
49 public static ProcessThread startApplication(String... additionalOpts) throws Throwable { in startApplication()
57ProcessThread pt = new ProcessThread("runApplication", (line) -> line.equals(Application.READY_MSG… in startApplication()
86 public static void stopApplication(ProcessThread processThread) throws Throwable { in stopApplication()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/com/sun/tools/attach/
H A DRunnerUtil.java29 import jdk.test.lib.thread.ProcessThread;
49 public static ProcessThread startApplication(String... additionalOpts) throws Throwable { in startApplication()
57ProcessThread pt = new ProcessThread("runApplication", (line) -> line.equals(Application.READY_MSG… in startApplication()
86 public static void stopApplication(ProcessThread processThread) throws Throwable { in stopApplication()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/com/sun/tools/attach/
H A DRunnerUtil.java29 import jdk.test.lib.thread.ProcessThread;
49 public static ProcessThread startApplication(String... additionalOpts) throws Throwable { in startApplication()
57ProcessThread pt = new ProcessThread("runApplication", (line) -> line.equals(Application.READY_MSG… in startApplication()
86 public static void stopApplication(ProcessThread processThread) throws Throwable { in stopApplication()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/com/sun/tools/attach/
H A DRunnerUtil.java29 import jdk.test.lib.thread.ProcessThread;
49 public static ProcessThread startApplication(String... additionalOpts) throws Throwable { in startApplication()
57ProcessThread pt = new ProcessThread("runApplication", (line) -> line.equals(Application.READY_MSG… in startApplication()
86 public static void stopApplication(ProcessThread processThread) throws Throwable { in stopApplication()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/com/sun/tools/attach/
H A DRunnerUtil.java29 import jdk.test.lib.thread.ProcessThread;
49 public static ProcessThread startApplication(String... additionalOpts) throws Throwable { in startApplication()
57ProcessThread pt = new ProcessThread("runApplication", (line) -> line.equals(Application.READY_MSG… in startApplication()
86 public static void stopApplication(ProcessThread processThread) throws Throwable { in stopApplication()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/com/sun/tools/attach/
H A DRunnerUtil.java31 import jdk.testlibrary.ProcessThread;
49 public static ProcessThread startApplication(String... additionalOpts) throws Throwable { in startApplication()
57ProcessThread pt = new ProcessThread("runApplication", (line) -> line.equals(Application.READY_MSG… in startApplication()
86 public static void stopApplication(ProcessThread processThread) throws Throwable { in stopApplication()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/com/sun/tools/attach/
H A DRunnerUtil.java29 import jdk.test.lib.thread.ProcessThread;
49 public static ProcessThread startApplication(String... additionalOpts) throws Throwable { in startApplication()
57ProcessThread pt = new ProcessThread("runApplication", (line) -> line.equals(Application.READY_MSG… in startApplication()
86 public static void stopApplication(ProcessThread processThread) throws Throwable { in stopApplication()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/lib/jdk/test/lib/thread/
H A DProcessThread.java37 public class ProcessThread extends TestThread { class
45 public ProcessThread(String threadName, String... cmd) { in ProcessThread() method in ProcessThread
55 public ProcessThread(String threadName, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
67 public ProcessThread(String threadName, Predicate<String> waitfor, String... cmd) { in ProcessThread() method in ProcessThread
78 public ProcessThread(String threadName, Predicate<String> waitfor, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/lib/testlibrary/jdk/testlibrary/
H A DProcessThread.java34 public class ProcessThread extends TestThread { class
42 public ProcessThread(String threadName, String... cmd) { in ProcessThread() method in ProcessThread
52 public ProcessThread(String threadName, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
64 public ProcessThread(String threadName, Predicate<String> waitfor, String... cmd) { in ProcessThread() method in ProcessThread
75 public ProcessThread(String threadName, Predicate<String> waitfor, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/lib/jdk/test/lib/thread/
H A DProcessThread.java37 public class ProcessThread extends TestThread { class
45 public ProcessThread(String threadName, String... cmd) { in ProcessThread() method in ProcessThread
55 public ProcessThread(String threadName, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
67 public ProcessThread(String threadName, Predicate<String> waitfor, String... cmd) { in ProcessThread() method in ProcessThread
78 public ProcessThread(String threadName, Predicate<String> waitfor, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/lib/jdk/test/lib/thread/
H A DProcessThread.java37 public class ProcessThread extends TestThread { class
45 public ProcessThread(String threadName, String... cmd) { in ProcessThread() method in ProcessThread
55 public ProcessThread(String threadName, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
67 public ProcessThread(String threadName, Predicate<String> waitfor, String... cmd) { in ProcessThread() method in ProcessThread
78 public ProcessThread(String threadName, Predicate<String> waitfor, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/lib/testlibrary/jdk/testlibrary/
H A DProcessThread.java34 public class ProcessThread extends TestThread { class
42 public ProcessThread(String threadName, String... cmd) { in ProcessThread() method in ProcessThread
52 public ProcessThread(String threadName, ProcessBuilder pb) { in ProcessThread() method in ProcessThread
64 public ProcessThread(String threadName, Predicate<String> waitfor, String... cmd) { in ProcessThread() method in ProcessThread
75 public ProcessThread(String threadName, Predicate<String> waitfor, ProcessBuilder pb) { in ProcessThread() method in ProcessThread

12345678910>>...23