Searched refs:usage (Results 101 - 125 of 196) sorted by relevance

12345678

/openjdk7/jdk/src/share/demo/management/JTop/
H A DJTop.java33 * This source code is provided to illustrate the usage of a given feature
44 * by CPU usage.
168 // Column 1 shows the CPU usage
243 // It first gets the thread and CPU usage information as a
285 usage();
290 usage();
297 usage();
300 usage();
358 private static void usage() { method in class:JTop
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DKrb5MechFactory.java108 int usage) throws GSSException {
116 (name, (usage != GSSCredential.ACCEPT_ONLY));
119 if (usage == GSSCredential.INITIATE_ONLY ||
120 usage == GSSCredential.INITIATE_AND_ACCEPT) {
125 } else if (usage == GSSCredential.ACCEPT_ONLY) {
133 "Unknown usage mode requested");
106 getCredentialElement(GSSNameSpi name, int initLifetime, int acceptLifetime, int usage) argument
/openjdk7/jdk/test/java/rmi/reliability/juicer/
H A DAppleUserImpl.java231 private static void usage() { method in class:AppleUserImpl
270 usage();
278 usage();
292 usage();
299 usage();
/openjdk7/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();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DTestDebugger.java35 private static void usage() { method in class:TestDebugger
36 System.out.println("usage: java TestDebugger [pid]");
44 usage();
52 usage();
/openjdk7/hotspot/make/windows/
H A Dbuild.bat59 if "%4" == "" goto usage
60 if not "%7" == "" goto usage
66 goto usage
75 goto usage
92 goto usage
106 :usage label
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoMechFactory.java134 int usage) throws GSSException {
137 (name, (usage != GSSCredential.ACCEPT_ONLY));
143 acceptLifetime, null, usage));
132 getCredentialElement(GSSNameSpi name, int initLifetime, int acceptLifetime, int usage) argument
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DMain.java72 static void usage() { method in class:Main
126 usage();
167 usage();
/openjdk7/hotspot/agent/src/scripts/
H A Dstart-rmiregistry.bat29 if "%1" == "-help" goto usage
41 :usage label
42 @echo usage: start-rmiregistry
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DUnixOperatingSystem_md.c226 throw_internal_error(env, "Unable to get virtual memory usage");
270 struct rusage usage; local
271 if (getrusage(RUSAGE_SELF, &usage) != 0) {
276 usage.ru_utime.tv_sec * 1000 * 1000 + usage.ru_utime.tv_usec +
277 usage.ru_stime.tv_sec * 1000 * 1000 + usage.ru_stime.tv_usec;
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbApReq.java204 int usage)
218 usage);
231 int usage)
237 usage);
467 int usage)
489 new EncryptedData(key, temp, usage);
198 init(APOptions options, Credentials tgs_creds, Checksum cksum, EncryptionKey subKey, SeqNumber seqNumber, AuthorizationData authorizationData, int usage) argument
221 init(APOptions apOptions, Ticket ticket, EncryptionKey key, Realm crealm, PrincipalName cname, Checksum cksum, KerberosTime ctime, EncryptionKey subKey, SeqNumber seqNumber, AuthorizationData authorizationData, int usage) argument
457 createMessage(APOptions apOptions, Ticket ticket, EncryptionKey key, Realm crealm, PrincipalName cname, Checksum cksum, KerberosTime ctime, EncryptionKey subKey, SeqNumber seqNumber, AuthorizationData authorizationData, int usage) argument
H A DChecksum.java163 EncryptionKey key, int usage)
173 usage);
180 int usage)
189 usage);
162 Checksum(int new_cksumType, byte[] data, EncryptionKey key, int usage) argument
179 verifyKeyedChecksum(byte[] data, EncryptionKey key, int usage) argument
H A DEncryptedData.java128 int usage)
131 cipher = etypeEngine.encrypt(plaintext, key.getBytes(), usage);
166 EncryptionKey key, int usage)
177 plain = etypeEngine.decrypt(cipher, key.getBytes(), usage);
187 byte[] ivec, int usage)
191 plain = etypeEngine.decrypt(cipher, key.getBytes(), ivec, usage);
125 EncryptedData( EncryptionKey key, byte[] plaintext, int usage) argument
165 decrypt( EncryptionKey key, int usage) argument
/openjdk7/jdk/make/common/shared/
H A DDefs-windows.gmk135 # NOTE: Must end with / so that it could be empty, allowing PATH usage.
272 # SDK based builds will depend entirely on individual usage.
391 # NOTE: Must end with / so that it could be empty, allowing PATH usage.
402 # NOTE: Must end with / so that it could be empty, allowing PATH usage.
434 # NOTE: Must end with / so that it could be empty, allowing PATH usage.
654 $(ECHO) "Checking for /SAFESEH usage in: $1" && \
663 # Check for /NXCOMPAT usage
666 $(ECHO) "Checking for /NXCOMPAT usage in: $1" && \
675 # Check for /DYNAMICBASE usage
678 $(ECHO) "Checking for /DYNAMICBASE usage i
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DDumpExports.java28 private static void usage() { method in class:DumpExports
29 System.err.println("usage: java DumpExports [.dll name]");
35 usage();
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DGenerateBreakIteratorData.java155 usage();
193 private static void usage() { method in class:GenerateBreakIteratorData
/openjdk7/jdk/test/com/sun/management/GarbageCollectorMXBean/
H A DLastGCInfo.java70 Map usage = info.getMemoryUsageBeforeGc();
73 for (Iterator iter = usage.entrySet().iterator(); iter.hasNext(); ) {
88 // check if memory usage for all memory pools are returned
94 "memory usage for pool " + p.getName());
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DCksumType.java157 byte[] key, int usage) throws KrbCryptoException;
160 byte[] key, byte[] checksum, int usage) throws KrbCryptoException;
156 calculateKeyedChecksum(byte[] data, int size, byte[] key, int usage) argument
159 verifyKeyedChecksum(byte[] data, int size, byte[] key, byte[] checksum, int usage) argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMemoryPoolProxy.java114 MemoryUsage usage = pool.getUsage();
117 usage,
/openjdk7/jdk/src/share/classes/sun/management/
H A DMemoryImpl.java114 "Memory usage exceeds usage threshold",
115 "Memory usage exceeds collection usage threshold"
147 MemoryUsage usage,
163 usage,
145 createNotification(String notifType, String poolName, MemoryUsage usage, long count) argument
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DJ2DBench.java33 * This source code is provided to illustrate the usage of a given feature
104 public static void usage(int exitcode) { method in class:J2DBench
105 System.out.println("usage: java -jar J2DBench.jar "+
114 "[-usage | -help] "+
164 System.out.println(" -usage "+
165 "Print out this usage message");
231 } else if (arg.equalsIgnoreCase("-usage") ||
234 usage(0);
246 usage(1);
259 usage(
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryPool.cpp50 // initialize the max and init size of collection usage
55 // usage threshold supports both high and low threshold
57 // gc usage threshold supports only high threshold
144 MemoryUsage usage = get_memory_usage();
145 size_t peak_used = get_max_value(usage.used(), _peak_usage.used());
146 size_t peak_committed = get_max_value(usage.committed(), _peak_usage.committed());
147 size_t peak_max_size = get_max_value(usage.max_size(), _peak_usage.max_size());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/
H A DSchemaGenerator.java101 usage();
106 usage();
126 // print usage and abort.
129 usage();
223 private static void usage( ) { method in class:SchemaGenerator
/openjdk7/jdk/test/com/sun/jdi/
H A DExceptionEvents.java143 static void usage() throws Exception { method in class:ExceptionEvents
148 throw new IllegalArgumentException("see usage");
181 usage();
198 usage();
206 usage();
H A DMethodEntryExitEvents.java123 private void usage(String[] args) throws Exception { method in class:MethodEntryExitEvents
189 usage(args);
199 usage(args);
209 usage(args2);

Completed in 110 milliseconds

12345678