Searched defs:tc (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DDatagramSocketAdaptor.java349 public void setTrafficClass(int tc) throws SocketException { argument
350 setIntOption(StandardSocketOptions.IP_TOS, tc);
H A DSocketAdaptor.java421 public void setTrafficClass(int tc) throws SocketException { argument
422 setIntOption(StandardSocketOptions.IP_TOS, tc);
/libcore/ojluni/src/main/java/java/net/
H A DDatagramSocket.java1131 * <P> The tc <B>must</B> be in the range <code> 0 <= tc <=
1153 * for Internet Protocol v6 <code>tc</code> is the value that
1156 * @param tc an <code>int</code> value for the bitset.
1162 public synchronized void setTrafficClass(int tc) throws SocketException { argument
1163 if (tc < 0 || tc > 255)
1164 throw new IllegalArgumentException("tc is not in range 0 -- 255");
1168 getImpl().setOption(SocketOptions.IP_TOS, new Integer(tc));
H A DSocket.java1314 * <P> The tc <B>must</B> be in the range <code> 0 <= tc <=
1344 * For Internet Protocol v6 <code>tc</code> is the value that
1347 * @param tc an <code>int</code> value for the bitset.
1353 public void setTrafficClass(int tc) throws SocketException { argument
1354 if (tc < 0 || tc > 255)
1355 throw new IllegalArgumentException("tc is not in range 0 -- 255");
1359 getImpl().setOption(SocketOptions.IP_TOS, new Integer(tc));
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldClassTest.java56 static TestClass2 tc = new TestClass2(0); field in class:OldClassTest.TestClass1C
537 TempTestClass2<String> tc = new TempTestClass2<String>();
538 tv = tc.getClass().getTypeParameters();
/libcore/ojluni/src/main/native/
H A Dnet_util_md.c995 int *tc = (int *)result; local
996 *tc = -1;
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 858 milliseconds