Searched refs:which (Results 101 - 125 of 160) sorted by relevance

1234567

/openjdk9/jdk/test/sun/security/tools/jarsigner/
H A Dec.sh30 JAVAC_CMD=`which javac`
H A DTimestampCheck.java469 " which is considered a security risk.")
533 static int which = 0; field in class:TimestampCheck
546 which++;
547 System.err.println("\n>> Test #" + which + ": " + Arrays.toString(extra));
/openjdk9/jdk/test/sun/security/tools/keytool/
H A DListKeychainStore.sh29 JAVAC_CMD=`which javac`
/openjdk9/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/
H A DContextFinder.java140 final URL targetTypeURL = which(targetType);
186 * javax.xml.bind.context.factory points to a class which has a
266 // extra check to avoid costly which operation if not logged
267 logger.log(Level.FINE, "loaded {0} from {1}", new Object[]{className, which(spi)});
519 static URL which(Class clazz, ClassLoader loader) { method in class:ContextFinder
533 * Convenience method for {@link #which(Class, ClassLoader)}.
535 * Equivalent to calling: which(clazz, clazz.getClassLoader())
542 static URL which(Class clazz) { method in class:ContextFinder
543 return which(clazz, getClassClassLoader(clazz));
/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXlibWrapper.java508 static native long XkbGetMap(long display, long which, long device_spec); argument
509 static native long XkbGetUpdatedMap(long display, long which, long xkb); argument
510 static native void XkbFreeKeyboard(long xkb, long which, boolean free_all); argument
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotConstantPool.java380 * entry denoted by {@code which}.
382 * @param which constant pool index or constant pool cache index
385 private String getNameOf(int which) { argument
386 return compilerToVM().lookupNameInPool(this, which);
404 * another entry denoted by {@code which}.
406 * @param which constant pool index or constant pool cache index
409 private String getSignatureOf(int which) { argument
410 return compilerToVM().lookupSignatureInPool(this, which);
/openjdk9/hotspot/src/share/vm/gc/parallel/
H A DpsScavenge.cpp136 virtual void do_it(GCTaskManager* manager, uint which);
139 void PSRefProcTaskProxy::do_it(GCTaskManager* manager, uint which) argument
142 PSPromotionManager::gc_thread_promotion_manager(which);
162 virtual void do_it(GCTaskManager* manager, uint which) argument
470 // A successful scavenge should restart the GC time limit count which is
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/addressing/policy/
H A DAddressingFeatureConfigurator.java122 throw LOGGER.logSevereException(new PolicyException(ModelerMessages.RUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(toJar(Which.which(AddressingFeature.class))), e));
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/
H A DInvoker.java125 System.err.println(WscompileMessages.WRAPPER_TASK_LOADING_INCORRECT_API(loadedVersion.getVersion(), Which.which(Service.class), targetVersion.getVersion()));
182 * and then return a class loader that can RI classes, which can see all those APIs.
/openjdk9/jdk/test/jdk/internal/jimage/
H A DJImageReadTest.java246 String which = (ndx >= 0) ? "java BasicImageReader" : "native JIMAGE_Resources";
247 System.out.printf("Missing Resource: %s found only via %s%n", s, which);
/openjdk9/jdk/src/java.desktop/share/native/libjavajpeg/
H A Djquant2.c118 * to 128Kb, which is a useful savings on PC-class machines.
211 boolean on_odd_row; /* flag to remember which row we are on */
220 * In this module the prescan simply updates the histogram, which has been
284 boxptr which = NULL; local
288 which = boxp;
292 return which;
304 boxptr which = NULL; local
308 which = boxp;
312 return which;
406 * after which, w
[all...]
/openjdk9/hotspot/src/share/vm/prims/
H A DmethodHandles.cpp53 * field which pointed at a bit of assembly code which performed
58 * pointer to its "LambdaForm", which embodies all details of the method
639 // which refers directly to JVM internals.
791 // Conversely, a member name which is only initialized from JVM internals
794 // which refers directly to JVM internals.
1153 static bool advertise_con_value(int which) { argument
1154 if (which < 0) return false;
1160 if (which < count) return ok; \
1166 if (which < coun
1176 JVM_ENTRY(jint, MHN_getNamedCon(JNIEnv *env, jobject igcls, jint which, jobjectArray box_jh)) argument
[all...]
H A DmethodHandles.hpp106 // Most sig-poly methods are intrinsics which do not require an
147 static int get_named_constant(int which, Handle name_box, TRAPS);
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DSecurityManager.java161 * subclasses of <code>java.security.BasicPermission</code>, which itself
163 * top-level class for permissions, which is
185 * (such as "read, write") specifies which actions are granted for the
205 * which permission it requires.
1390 * variables which tell if the cache is valid. If the underlying
1718 * @param which type of access, PUBLIC or DECLARED.
1726 * of 4 which is error-prone and cannot be enforced by the runtime.
1737 public void checkMemberAccess(Class<?> clazz, int which) { argument
1741 if (which != Member.PUBLIC) {
1798 * Returns the thread group into which t
[all...]
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A Daarch64_linkage.S29 # C++ routine which starts execution on the simulator. the ARM
/openjdk9/hotspot/src/share/vm/memory/
H A DmetaspaceShared.cpp415 void iterate_metaspace(Metaspace* space, int which) { argument
416 assert(which == RO || which == RW, "sanity");
417 _which = which;
814 // we should come here only if there are unverifiable classes, which
918 // Link any classes which got missed. This would happen if we have loaded classes that
/openjdk9/hotspot/test/testlibrary/jittester/
H A DMakefile25 JDK_HOME := $(shell dirname $(shell which java))/..
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/marshaller/
H A DSAX2DOMEx.java162 Which.which(document.getClass())));
/openjdk9/jdk/src/jdk.management/windows/native/libmanagement_ext/
H A DOperatingSystemImpl.c931 // Query once to initialize the counters which require at least two samples
1327 perfGetCPULoad(int which) { argument
1336 if (-1 == which) {
1339 if (which < multiCounterCPULoad->noOfCounters) {
1340 c = multiCounterCPULoad->counters[which];
/openjdk9/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DConstantPool.java876 // Primary key is memRef, which is transmitted as UDELTA5.
963 // Primary key is descriptor, which is transmitted as UDELTA5.
1016 // Primary key is args array length, which is transmitted as UDELTA5.
1304 int which = tagGroupTag - CONSTANT_GroupFirst;
1305 assert(indexByTagGroup[which] == null);
1332 indexByTagGroup[which] = new Index(tagName(tagGroupTag), cpMap);
1333 return indexByTagGroup[which];
1459 public MemberEntry getOverloadingForIndex(byte tag, ClassEntry classRef, String name, int which) { argument
1466 if (ord == which) return e;
/openjdk9/hotspot/src/share/vm/classfile/
H A DsystemDictionary.hpp94 // The order of these definitions is significant; it is the order in which
407 // Monotonically increasing counter which grows as classes are
560 static void add_resolution_error(const constantPoolHandle& pool, int which, Symbol* error,
563 static Symbol* find_resolution_error(const constantPoolHandle& pool, int which,
595 // Monotonically increasing counter which grows with
H A DsystemDictionary.cpp199 // in which case we have to check whether the pending exception is a ClassNotFoundException,
318 // where the placeholder entry is created which claims this
411 // which keeps the loader_data alive, as well as all instanceKlasses in
609 // which we will find below in the systemDictionary.
671 // This call uses find which checks protection domain already matches
683 // define via jvm/jni_DefineClass which will acquire the
1393 // restore_unshareable_info which calls ik->set_package()
1639 // which will require a token to perform the define class
1695 // which will throw LinkageError: duplicate class definition.
2426 void SystemDictionary::add_resolution_error(const constantPoolHandle& pool, int which, argument
2442 find_resolution_error(const constantPoolHandle& pool, int which, Symbol** message) argument
[all...]
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/
H A DSchemaGenerator.java199 String url = Which.which(JAXBContext.class);
/openjdk9/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java860 // of the table for the return key, which is to select the next line.
1425 // Instead of dragging, it selects which one to sort by
1728 JButton createButton(final int which, String label) { argument
1729 if (label == null) label = UIManager.getString(sDataPrefix + sButtonKinds[which] + sButtonData[0]);
1730 final int mnemonic = UIManager.getInt(sDataPrefix + sButtonKinds[which] + sButtonData[1]);
1731 final String tipText = UIManager.getString(sDataPrefix + sButtonKinds[which] + sButtonData[2]);
1735 b.addActionListener(getAction(which));
1739 AbstractAction getAction(final int which) { argument
1740 return fButtonActions[which];
1743 public void uninstallComponents(final JFileChooser fc) { //$ Metal (on which thi
[all...]
/openjdk9/jdk/src/java.desktop/unix/native/libawt_xawt/xawt/
H A DXlibWrapper.c576 (JNIEnv *env, jclass clazz, jlong display, jlong which, jlong device_spec)
580 (unsigned int) which,
584 (JNIEnv *env, jclass clazz, jlong display, jlong which, jlong xkb)
588 (unsigned int) which,
592 (JNIEnv *env, jclass clazz, jlong xkb, jlong which, jboolean free_all)
595 XkbFreeKeyboard(jlong_to_ptr(xkb), (unsigned int)which, free_all);
1282 // second, in which place in the keysymarray is XK_KP_7
575 Java_sun_awt_X11_XlibWrapper_XkbGetMap(JNIEnv *env, jclass clazz, jlong display, jlong which, jlong device_spec) argument
583 Java_sun_awt_X11_XlibWrapper_XkbGetUpdatedMap(JNIEnv *env, jclass clazz, jlong display, jlong which, jlong xkb) argument
591 Java_sun_awt_X11_XlibWrapper_XkbFreeKeyboard(JNIEnv *env, jclass clazz, jlong xkb, jlong which, jboolean free_all) argument

Completed in 318 milliseconds

1234567