Home
last modified time | relevance | path

Searched refs:setTLS (Results 1 – 2 of 2) sorted by relevance

/art/test/1909-per-agent-tls/src/art/
DTest1909.java36 public void setTLS(long jvmtienv, long ptr) { in setTLS() method in Test1909.ThreadHolder
37 Test1909.setTLS(jvmtienv, this.thr, ptr); in setTLS()
75 public void setTLS(long jvmtienv, long ptr) { in setTLS() method in Test1909.ThreadWaiter
76 Test1909.setTLS(jvmtienv, this.thr, ptr); in setTLS()
99 tc.setTLS(e1, 1); in run()
106 t1.setTLS(e1, 2); in run()
113 tc.setTLS(e2, 3); in run()
120 t1.setTLS(e2, 4); in run()
173 public static native void setTLS(long jvmtienv, Thread thr, long ptr); in setTLS() method in Test1909
/art/test/924-threads/src/art/
DTest924.java286 setTLS(t, 1); in doTLSNonLiveTests()
294 setTLS(t, 1); in doTLSNonLiveTests()
302 setTLS(Thread.currentThread(), 1); in doTLSLiveTests()
318 setTLS(Thread.currentThread(), 2); in doTLSLiveTests()
331 setTLS(Thread.currentThread(), 1); in doTLSLiveTests()
490 private static native void setTLS(Thread t, long l); in setTLS() method in Test924