Searched refs:sec (Results 1 - 25 of 61) sorted by relevance

123

/openjdk9/jdk/test/sun/security/provider/PolicyFile/
H A DGrantAllPermToExtWhenNoPolicy.java45 SomeExtensionClass sec = new SomeExtensionClass();
47 sec.getUserName();
/openjdk9/jdk/make/
H A DUnpackSecurity.gmk33 SEC_FILES_ZIP := $(JDK_TOPDIR)/make/tools/crypto/sec-bin.zip
34 SEC_FILES_WIN_ZIP := $(JDK_TOPDIR)/make/tools/crypto/sec-windows-bin.zip
38 define unzip-sec-file
46 define unzip-native-sec-file
54 $(SUPPORT_OUTPUTDIR)/_the.sec-bin.unzipped: $(SEC_FILES_ZIP)
55 $(call unzip-sec-file)
57 # Trying to unzip both of the sec files at the same time may cause a race
59 $(SUPPORT_OUTPUTDIR)/_the.sec-windows-bin.unzipped: $(SEC_FILES_WIN_ZIP) \
60 | $(SUPPORT_OUTPUTDIR)/_the.sec-bin.unzipped
61 $(call unzip-sec
[all...]
/openjdk9/nashorn/samples/
H A Dsecondssince.js41 var sec = Instant.parse(readLine()). variable
43 print(sec);
/openjdk9/hotspot/src/os/posix/vm/
H A Dsemaphore_posix.hpp48 bool timedwait(unsigned int sec, int nsec) { argument
49 return timedwait(create_timespec(sec, nsec));
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DDumpExports.java53 SectionHeader sec = file.getHeader().getSectionHeader(i);
55 System.out.println(" Name = '" + sec.getName() + "'");
56 System.out.println(" VirtualSize = " + sec.getSize() + "/0x" +
57 Integer.toHexString(sec.getSize()));
58 System.out.println(" VirtualAddress = " + sec.getVirtualAddress() + "/0x" +
59 Integer.toHexString(sec.getVirtualAddress()));
60 System.out.println(" SizeOfRawData = " + sec.getSizeOfRawData() + "/0x" +
61 Integer.toHexString(sec.getSizeOfRawData()));
62 System.out.println(" PointerToRawData = " + sec.getPointerToRawData() + "/0x" +
63 Integer.toHexString(sec
[all...]
H A DTestDebugInfo.java53 DebugVC50Subsection sec = dir.getSubsection(i);
54 switch (sec.getSubsectionType()) {
60 case SST_ALIGN_SYM: System.out.println(" SST_ALIGN_SYM"); printSymbolTable(((DebugVC50SSAlignSym) sec).getSymbolIterator()); break;
64 case SST_GLOBAL_SYM: System.out.println(" SST_GLOBAL_SYM"); printSymbolTable(sec); break;
65 case SST_GLOBAL_PUB: System.out.println(" SST_GLOBAL_PUB"); printSymbolTable(sec); break;
66 case SST_GLOBAL_TYPES: System.out.println(" SST_GLOBAL_TYPES"); printTypeTable(sec); break;
75 case SST_STATIC_SYM: System.out.println(" SST_STATIC_SYM"); printSymbolTable(sec); break;
76 default: System.out.println(" (Unknown subsection type " + sec.getSubsectionType() + ")"); break;
113 private static void printSymbolTable(DebugVC50Subsection sec) { argument
114 DebugVC50SSSymbolBase sym = (DebugVC50SSSymbolBase) sec;
166 printTypeTable(DebugVC50Subsection sec) argument
[all...]
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/
H A DGotSymbol.java47 * @param sec section in which this symbol is "defined"
49 public GotSymbol(int offset, Kind type, Binding binding, ByteContainer sec, String name) { argument
50 super(offset, type, binding, sec, GOT_SIZE, name);
/openjdk9/hotspot/src/os/bsd/vm/
H A Dsemaphore_bsd.hpp53 bool timedwait(unsigned int sec, int nsec);
/openjdk9/jdk/test/javax/sound/midi/Transmitter/
H A Dbug6415669.java102 long sec = time % 60;
109 + ":" + (sec < 10 ? "0" : "") + sec
/openjdk9/jdk/src/java.desktop/unix/native/libawt/awt/
H A Dawt_Mlib.c167 double sec; local
170 sec = (((double) (numsec - 1)) - (double) interval.it_value.tv_sec) +
172 sec = sec/((double) ntimes);
173 printf("%f msec per update\n", sec * 1000.0);
/openjdk9/jdk/src/java.base/share/classes/java/net/
H A DNetworkInterface.java143 SecurityManager sec = System.getSecurityManager();
144 if (sec != null) {
146 sec.checkPermission(new NetPermission("getNetworkInformation"));
155 sec.checkConnect(addrs[j].getHostAddress(), -1);
179 SecurityManager sec = System.getSecurityManager();
182 if (sec != null) {
183 sec.checkConnect(bindings[j].getAddress().getHostAddress(), -1);
491 SecurityManager sec = System.getSecurityManager();
492 if (sec != null) {
494 sec
[all...]
H A DHttpURLConnection.java391 SecurityManager sec = System.getSecurityManager();
392 if (sec != null) {
394 sec.checkSetFactory();
/openjdk9/jdk/test/javax/sound/midi/Track/
H A Dbug6416024.java111 long sec = time % 60;
118 + ":" + (sec < 10 ? "0" : "") + sec
/openjdk9/jdk/test/javax/sound/midi/Sequence/
H A DGetMicrosecondLength.java49 for (int sec = 1; sec < 10; sec += 4) {
52 testSequence(sec, tempo, resolution);
75 System.out.print("Creating sequence: "+lengthInSeconds+"sec, "
78 System.out.print("Creating sequence: "+lengthInSeconds+"sec, "
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationDayTimeImpl.java167 float sec = (seconds==null)?0:seconds.floatValue();
171 sec;
/openjdk9/jdk/src/java.sql/share/classes/java/sql/
H A DDriverManager.java151 SecurityManager sec = System.getSecurityManager();
152 if (sec != null) {
153 sec.checkPermission(SET_LOG_PERMISSION);
384 SecurityManager sec = System.getSecurityManager();
385 if (sec != null) {
386 sec.checkPermission(DEREGISTER_DRIVER_PERMISSION);
501 SecurityManager sec = System.getSecurityManager();
502 if (sec != null) {
503 sec.checkPermission(SET_LOG_PERMISSION);
/openjdk9/jdk/test/javax/sound/sampled/Clip/
H A Dbug6251460.java56 long sec = time % 60;
63 + ":" + (sec < 10 ? "0" : "") + sec
/openjdk9/jdk/test/javax/sound/sampled/DirectAudio/
H A Dbug6400879.java46 static final long BLOCK_TIMEOUT = 5000; // 5 sec
63 delay(1000); // sleep for 1 sec
121 long sec = time % 60;
128 + ":" + (sec < 10 ? "0" : "") + sec
/openjdk9/make/
H A DZipSecurity.gmk34 # sec-bin.zip is used by builds where the corresponding sources are not available
65 ZIP := $(IMAGES_OUTPUTDIR)/sec-bin.zip))
67 TARGETS += $(IMAGES_OUTPUTDIR)/sec-bin.zip
74 # sec-windows-bin.zip is used by builds where the corresponding sources are not available
78 ZIP := $(IMAGES_OUTPUTDIR)/sec-windows-bin.zip))
80 TARGETS += $(IMAGES_OUTPUTDIR)/sec-windows-bin.zip
/openjdk9/jdk/test/sun/util/calendar/zi/
H A DTime.java288 long sec = Long.parseLong(ms) / 1000;
290 if (sec < 0) {
292 sec = -sec;
297 sign, sec/3600, (sec%3600)/60);
H A DGenDoc.java187 int deg, min, sec;
191 sec = location.getLatSec();
194 sec = -sec;
196 sec = -sec;
203 "&latsec=" + sec);
207 sec = location.getLongSec();
210 sec = -sec;
[all...]
/openjdk9/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/spi/
H A DSyncFactory.java639 SecurityManager sec = System.getSecurityManager();
640 if (sec != null) {
641 sec.checkPermission(SET_SYNCFACTORY_PERMISSION);
676 SecurityManager sec = System.getSecurityManager();
677 if (sec != null) {
678 sec.checkPermission(SET_SYNCFACTORY_PERMISSION);
726 SecurityManager sec = System.getSecurityManager();
727 if (sec != null) {
728 sec.checkPermission(SET_SYNCFACTORY_PERMISSION);
/openjdk9/jdk/test/java/time/tck/java/time/
H A DTCKLocalTime.java1640 int sec = 0;
1643 sec++;
1644 if (sec == 60) {
1646 sec = 0;
1654 assertEquals(t.getSecond(), sec);
1665 int sec = 0;
1672 final Object[] ret = new Object[] {i, hour, min, sec};
1674 sec += delta;
1676 if (sec >= 60) {
1678 sec
1700 test_plusSeconds_fromZero(int seconds, int hour, int min, int sec) argument
1813 test_plusNanos_fromZero(long nanoseconds, int hour, int min, int sec, int nanos) argument
2133 test_minusSeconds_fromZero(int seconds, int hour, int min, int sec) argument
2261 test_minusNanos_fromZero(long nanoseconds, int hour, int min, int sec, int nanos) argument
2711 time(int hour, int min, int sec, int nano) argument
[all...]
/openjdk9/jdk/test/javax/sound/midi/Synthesizer/
H A Dbug4685396.java204 long sec = time % 60;
211 + ":" + (sec < 10 ? "0" : "") + sec
/openjdk9/jdk/test/java/util/logging/
H A DClassLoaderLeakTest.java155 private static void waitAndGC(int sec) { argument
156 int cnt = sec;

Completed in 308 milliseconds

123