/external/ltp/testcases/realtime/stress/pi-tests/ |
D | testpi-3.c | 249 int startThread(Thread * thrd) in startThread() argument 255 printf("Start thread priority %d\n", thrd->priority); in startThread() 256 if (pthread_attr_init(&(thrd->attr)) != 0) { in startThread() 260 thrd->flags = 0; in startThread() 262 schedp.sched_priority = thrd->priority; in startThread() 263 policy = thrd->policy; in startThread() 265 if (pthread_attr_setschedpolicy(&(thrd->attr), policy) != 0) { in startThread() 268 if (pthread_attr_getschedpolicy(&(thrd->attr), &policy) != 0) { in startThread() 273 if (pthread_attr_setschedparam(&(thrd->attr), &schedp) != 0) { in startThread() 276 if (pthread_attr_getschedparam(&(thrd->attr), &schedp) != 0) { in startThread() [all …]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
D | CurrentContendedMonitorDebuggee.java | 48 DebuggeeThread thrd; field in CurrentContendedMonitorDebuggee 52 thrd = new DebuggeeThread(TESTED_THREAD, logWriter, synchronizer); in run() 55 thrd.start(); in run() 70 if (thrd.isAlive()) { in run() 72 thrd.interrupt(); in run()
|
D | InterruptTest.java | 80 Thread thrd = new RecvThread(); in testInterrupt001() local 81 thrd.start(); in testInterrupt001() 83 thrd.join(settings.getTimeout()); in testInterrupt001()
|
D | ThreadGroupDebuggee.java | 72 DebuggeeThread thrd = new DebuggeeThread(thrdGroup, TESTED_THREAD, in run() local 76 thrd.start(); in run() 84 while ( thrd.isAlive() ) { in run()
|
D | StopDebuggee.java | 75 DebuggeeThread thrd = new DebuggeeThread(TESTED_THREAD, in run() local 79 thrd.start(); in run() 88 while ( thrd.isAlive() ) { in run()
|
D | OwnedMonitorsStackDepthInfoDebuggee.java | 43 DebuggeeThread thrd = new DebuggeeThread(TESTED_THREAD, in run() local 47 thrd.start(); in run()
|
D | OwnedMonitorsDebuggee.java | 49 DebuggeeThread thrd = new DebuggeeThread(TESTED_THREAD, in run() local 53 thrd.start(); in run()
|
D | StatusDebuggee.java | 47 DebuggeeThread thrd = new DebuggeeThread(TESTED_THREAD, in run() local 51 thrd.start(); in run()
|
D | InterruptDebuggee.java | 51 DebuggeeThread thrd = new DebuggeeThread(TESTED_THREAD, in run() local 55 thrd.start(); in run()
|
D | ForceEarlyReturnDebuggee.java | 94 DebuggeeThread thrd = new DebuggeeThread(threadName); in run() local 96 thrd.start(); in run()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
D | DisposeDuringInvokeDebuggee.java | 73 DebuggeeThread thrd = new DebuggeeThread(); in run() local 79 thrd.start(); in run() 83 thrd.join(); in run()
|
D | AllThreadsDebuggee.java | 64 DebuggeeThread thrd = new DebuggeeThread(TESTED_THREAD, in run() local 68 thrd.start(); in run() 77 while ( thrd.isAlive() ) { in run()
|
D | HoldEventsDebuggee.java | 52 DebuggeeThread thrd = new DebuggeeThread(TESTED_THREAD, in run() local 57 thrd.start(); in run()
|
D | ReleaseEventsDebuggee.java | 52 DebuggeeThread thrd = new DebuggeeThread(TESTED_THREAD, in run() local 57 thrd.start(); in run()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
D | JDWPUnitDebuggeeProcessWrapper.java | 290 ProcessWaiter thrd = new ProcessWaiter(); in WaitForProcessExit() local 291 thrd.setDaemon(true); in WaitForProcessExit() 292 thrd.start(); in WaitForProcessExit() 294 thrd.join(settings.getTimeout()); in WaitForProcessExit() 299 if (thrd.isAlive()) { in WaitForProcessExit() 303 thrd.interrupt(); in WaitForProcessExit()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/ |
D | NameDebuggee.java | 59 DebuggeeThread thrd = new DebuggeeThread(thrdGroupChild, TESTED_THREAD, in run() local 63 thrd.start(); in run()
|
D | ChildrenDebuggee.java | 58 DebuggeeThread thrd = new DebuggeeThread(thrdGroupParent, TESTED_THREAD, in run() local 62 thrd.start(); in run()
|
/external/llvm-project/mlir/test/Dialect/GPU/ |
D | ops.mlir | 17 func @args(%blk : index, %thrd : index, %float : f32, %data : memref<?xf32,1>) { 20 threads(%tx, %ty, %tz) in (%block_x = %thrd, %block_y = %thrd, %block_z = %thrd) {
|
/external/python/cpython3/Programs/ |
D | _testembed.c | 263 unsigned long thrd = PyThread_start_new_thread(bpo20891_thread, &lock); in test_bpo20891() local 264 if (thrd == PYTHREAD_INVALID_THREAD_ID) { in test_bpo20891()
|