Searched refs:usage (Results 76 - 100 of 227) sorted by relevance

12345678910

/openjdk10/jdk/src/java.base/share/classes/sun/security/x509/
H A DExtendedKeyUsageExtension.java45 * indicated in the key usage extension field. This field is defined
68 * usage of the key is restricted by the certification authority to
73 * If a certificate contains both a critical key usage field and a
74 * critical extended key usage field, then both fields MUST be
195 ObjectIdentifier usage = seq.getOID();
196 keyUsages.addElement(usage);
205 String usage = " ";
209 usage += "\n ";
214 usage += result;
216 usage
[all...]
/openjdk10/common/bin/
H A Didea.sh27 usage() { function
28 echo "usage: $0 [-h|--help] [-v|--verbose] [-o|--output <path>] [modules]+"
43 usage
56 usage
/openjdk10/hotspot/test/gc/cms/
H A DTestMBeanCMS.java28 * @summary CMS Old Gen's collection usage is zero after GC which is incorrect
40 // 6581734 states that memory pool usage via the mbean is wrong
91 long usage = pool.getCollectionUsage().getUsed();
92 System.out.println(name + ": usage after GC = " + usage);
94 if (usage > 0) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DNode.java218 * Head of usage list. The elements of the usage list in order are {@link #usage0},
456 * @return whether or not {@code usage} was in the usage list
460 // For large graphs, usage removal is performance critical.
461 // Furthermore, it is critical that this method maintains the invariant that the usage list
676 Node usage = extraUsages[i];
677 replaceAtUsage(other, toBeDeleted, usage);
683 private void replaceAtUsage(Node other, Node toBeDeleted, Node usage) { argument
684 boolean result = usage
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.aarch64/src/org/graalvm/compiler/replacements/aarch64/
H A DAArch64ReadNode.java83 ValueNode usage = (ValueNode) readNode.getUsageAt(0);
84 boolean isSigned = usage instanceof SignExtendNode;
89 Stamp stamp = usage.stamp();
98 usage.replaceAtUsagesAndDelete(readNode);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DValueNode.java184 for (Node usage : usages()) {
185 if (usage != node && usage instanceof ValueNode && nodeValueMap.hasOperand(usage)) {
H A DVirtualState.java45 public abstract void apply(Node usage, T node); argument
H A DAbstractMergeNode.java179 for (Node usage : phi.usages()) {
180 if (!(usage instanceof VirtualState) && !merge.isPhiAtMerge(usage)) {
226 for (Node usage : phi.usages()) {
227 if (usage != returnNode && !(usage instanceof FrameState)) {
/openjdk10/hotspot/src/share/vm/services/
H A DmemoryManager.hpp109 // We keep memory usage of all memory pools
139 void set_before_gc_usage(int pool_index, MemoryUsage usage) { argument
141 set_gc_usage(pool_index, usage, true /* before gc */);
143 void set_after_gc_usage(int pool_index, MemoryUsage usage) { argument
145 set_gc_usage(pool_index, usage, false /* after gc */);
/openjdk10/jdk/make/non-build-utils/src/build/tools/commentchecker/
H A DCommentChecker.java184 System.err.println("usage: java CommentChecker [-] file.java ...");
/openjdk10/jdk/src/jdk.management/solaris/native/libmanagement_ext/
H A DUnixOperatingSystem.c126 uint_t *usage; local
142 usage = cpu_stat.cpu_sysinfo.cpu;
143 c_idle = usage[CPU_IDLE];
146 c_total += usage[i];
220 // Get the percentage of "recent cpu usage" from all the lwp:s in the JVM:s
/openjdk10/jdk/test/sun/util/calendar/zi/
H A DMain.java53 usage();
73 usage();
88 usage();
151 void usage() { method in class:Main
/openjdk10/jdk/src/java.desktop/windows/native/common/
H A Dawt_makecube.cpp52 void usage(char *errmsg) function
55 fprintf(stderr, "usage: %s [-cmapsize N] [-cubesize N]\n", programname);
68 usage("Internal error: system palette conflict");
85 usage("Internal error: ran out of system palette entries");
102 usage("Internal error: more than cmapsize static colors defined");
119 usage("no argument to -cmapsize");
123 usage("colormap size must be between 2 and 256");
127 usage("no argument to -cubesize");
134 usage("cube size must by a power of 2 <= 32");
139 usage("unknow
[all...]
/openjdk10/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/console/internal/
H A DConsoleRunner.java42 usage();
86 private static void usage() { method in class:ConsoleRunner
/openjdk10/langtools/make/tools/propertiesparser/
H A DPropertiesParser.java75 usage();
110 private void usage() { method in class:PropertiesParser
111 info("usage:");
/openjdk10/jdk/src/java.base/macosx/native/libjava/
H A DProcessHandleImpl_macosx.c204 struct rusage usage; local
205 if (getrusage(RUSAGE_SELF, &usage) == 0) {
207 usage.ru_utime.tv_sec * 1000 * 1000 + usage.ru_utime.tv_usec +
208 usage.ru_stime.tv_sec * 1000 * 1000 + usage.ru_stime.tv_usec;
/openjdk10/jdk/src/jdk.jcmd/share/classes/sun/tools/jinfo/
H A DJInfo.java47 usage(1); // no arguments
67 usage(0);
77 usage(1);
93 usage(1);
121 usage(1);
245 // print usage message
246 private static void usage(int exit) { method in class:JInfo
/openjdk10/jdk/src/java.scripting/share/classes/com/sun/tools/script/shell/
H A DMain.java121 usage(EXIT_CMD_NO_PROPNAME);
126 usage(EXIT_SUCCESS);
130 usage(EXIT_CMD_NO_SCRIPT);
137 usage(EXIT_CMD_NO_ENCODING);
143 usage(EXIT_CMD_NO_FILE);
147 usage(EXIT_MULTIPLE_STDIN);
158 usage(EXIT_CMD_NO_LANG);
165 usage(EXIT_UNKNOWN_OPTION);
372 * Prints usage message and exits
375 private static void usage(in method in class:Main
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java246 usage = u;
252 usage = n;
257 final String usage; field in class:CommandProcessor.Command
260 void usage() { method in class:CommandProcessor.Command
261 out.println("Usage: " + usage);
394 usage();
414 usage();
421 usage();
444 usage();
465 usage();
1760 registerCommand(String cmd, String usage, final String func) argument
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/rmi/rmic/
H A DMain.java133 public void usage() { method in class:Main
134 error("rmic.usage", program);
162 usage();
256 usage();
262 usage();
270 usage();
277 usage();
285 usage();
292 usage();
300 usage();
[all...]
/openjdk10/jdk/src/jdk.compiler/share/classes/sun/tools/serialver/
H A DSerialVer.java127 usage();
135 usage();
142 usage();
178 usage();
210 public static void usage() { method in class:SerialVer
211 System.err.println(Res.getText("usage"));
/openjdk10/jdk/test/java/awt/Graphics2D/MTGraphicsAccessTest/
H A DMTGraphicsAccessTest.java132 public static void usage(String message) { method in class:MTGraphicsAccessTest
165 usage("Can't parse number of seconds: " + args[i]);
167 usage("Missing the 'seconds' argument for -time parameter");
170 usage(null);
172 usage("Unknown argument:" + args[i]);
/openjdk10/jdk/test/java/rmi/reliability/juicer/
H A DAppleUserImpl.java235 private static void usage() { method in class:AppleUserImpl
274 usage();
282 usage();
296 usage();
303 usage();
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/jgss/krb5/
H A DKrb5MechFactory.java112 int usage) throws GSSException {
120 (name, (usage != GSSCredential.ACCEPT_ONLY));
123 if (usage == GSSCredential.INITIATE_ONLY ||
124 usage == GSSCredential.INITIATE_AND_ACCEPT) {
129 } else if (usage == GSSCredential.ACCEPT_ONLY) {
137 "Unknown usage mode requested");
110 getCredentialElement(GSSNameSpi name, int initLifetime, int acceptLifetime, int usage) argument
/openjdk10/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DAppleUserImpl.java186 private static void usage() { method in class:AppleUserImpl
217 usage();
225 usage();
235 usage();
242 usage();

Completed in 304 milliseconds

12345678910