Searched refs:how (Results 1 - 22 of 22) sorted by relevance

/openjdk10/jdk/test/java/util/Timer/
H A DDelayOverflow.java41 void scheduleNow(Timer timer, TimerTask task, int how) { argument
42 switch (how) {
56 fail(String.valueOf(how));
73 for (int how=0; how<4; how++) {
85 scheduleNow(timer, task, how);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DRangeImpl.java479 public short compareBoundaryPoints(short how, Range sourceRange) argument
505 if (how == START_TO_START) {
511 if (how == START_TO_END) {
517 if (how == END_TO_START) {
1065 * <code>how</code> argument.
1067 * @param how Specifies what type of traversal is being
1087 * copied or extracted nodes. If the <code>how</code>
1091 private DocumentFragment traverseContents( int how )
1115 return traverseSameContainer( how );
1127 return traverseCommonStartContainer( c, how );
[all...]
/openjdk10/jdk/test/java/util/concurrent/ScheduledThreadPoolExecutor/
H A DDelayOverflow.java59 Runnable r, int how) {
60 switch (how) {
74 fail(String.valueOf(how));
79 Runnable r, int how) {
80 switch (how) {
94 fail(String.valueOf(how));
58 scheduleNow(ScheduledThreadPoolExecutor pool, Runnable r, int how) argument
78 scheduleAtTheEndOfTime(ScheduledThreadPoolExecutor pool, Runnable r, int how) argument
/openjdk10/jdk/src/java.base/share/classes/java/lang/invoke/
H A DMethodTypeForm.java360 static Class<?> canonicalize(Class<?> t, int how) { argument
365 switch (how) {
376 switch (how) {
384 switch (how) {
412 static Class<?>[] canonicalizeAll(Class<?>[] ts, int how) { argument
415 Class<?> c = canonicalize(ts[i], how);
/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/ranges/
H A DRange.java295 * @param how A code representing the type of comparison, as defined
308 public short compareBoundaryPoints(short how, argument
/openjdk10/jdk/src/java.base/windows/native/libnio/ch/
H A DWindowsAsynchronousSocketChannelImpl.c128 jlong socket, jint how)
131 if (shutdown(s, how) == SOCKET_ERROR) {
127 Java_sun_nio_ch_WindowsAsynchronousSocketChannelImpl_shutdown0(JNIEnv *env, jclass cl, jlong socket, jint how) argument
H A DNet.c546 int how = (jhow == sun_nio_ch_Net_SHUT_RD) ? SD_RECEIVE : local
548 if (shutdown(fdval(env, fdo), how) == SOCKET_ERROR) {
/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dgzread.c107 If this is the first time in, allocate required memory. state->how will be
166 state->how = GZIP;
189 state->how = COPY;
196 data. If the gzip stream completes, state->how is reset to LOOK to look for
241 state->how = LOOK;
249 file depending on state->how. If state->how is LOOK, then a gzip header is
251 otherwise 0. gz_fetch() will leave state->how as COPY or GZIP unless the
259 switch(state->how) {
263 if (state->how
[all...]
H A Dgzguts.h188 /* values for gz_state how */
210 int how; /* 0: get header, 1: copy, 2: decompress */ member in struct:__anon795
H A Dgzlib.c106 state->how = LOOK; /* look for gzip header */
422 if (state->mode == GZ_READ && state->how == COPY &&
/openjdk10/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java98 // Wich method is used to create the MBean is indicated by "how"
101 for (CREATE how : CREATE.values()) {
102 failures+=test(mbs,n,how,caze.t,caze.where);
116 // how: How will the MBean be created/registered (which MBeanServer
122 private static int test(MBeanServer mbs, ObjectName name, CREATE how, argument
125 System.out.println("-------<"+how+"> / <"+t+"> / "+ where + "-------");
133 oi = how.create(t, where, mbs, name);
/openjdk10/jdk/test/java/lang/StackWalker/
H A DReflectionFrames.java789 public static StackInspector create(How how) throws Exception { argument
790 switch(how) {
795 default: throw new AssertionError(String.valueOf(how));
798 public static StackInspector reflect(How how) throws Exception { argument
800 .invoke(null, how);
802 public static StackInspector handle(How how) throws Exception { argument
807 return (StackInspector) mh.invoke(how);
/openjdk10/hotspot/src/share/vm/utilities/
H A DvmError.hpp195 NOT_PRODUCT(static void controlled_crash(int how);)
H A DvmError.cpp1636 // how can be one of:
1647 void VMError::controlled_crash(int how) { argument
1648 if (how == 0) return;
1651 NOT_DEBUG(if (how <= 2) how += 2);
1662 switch (how) {
1690 default: tty->print_cr("ERROR: %d: unexpected test_num value.", how);
/openjdk10/jdk/src/java.base/share/native/libjli/
H A Dparse_manifest.c72 if (entry->how == STORED) {
78 } else if (entry->how == DEFLATED) {
434 entry->how = CENHOW(p);
H A Dmanifest_info.h159 int how; /* compression method (if any) */ member in struct:zentry
/openjdk10/jdk/src/java.base/share/classes/java/util/concurrent/
H A DLinkedTransferQueue.java290 * (argument "how" is NOW), return empty-handed immediately.
644 /* Possible values for "how" argument in xfer method. */
656 * @param how NOW, ASYNC, SYNC, or TIMED
662 private E xfer(E e, boolean haveData, int how, long nanos) { argument
679 if (how == NOW) return e;
683 if (how == ASYNC) return e;
684 return awaitMatch(s, p, e, (how == TIMED), nanos);
/openjdk10/jdk/src/java.base/unix/native/libnio/ch/
H A DNet.c682 int how = (jhow == sun_nio_ch_Net_SHUT_RD) ? SHUT_RD : local
684 if ((shutdown(fdval(env, fdo), how) < 0) && (errno != ENOTCONN))
/openjdk10/jdk/src/java.base/share/classes/sun/nio/ch/
H A DNet.java468 static native void shutdown(FileDescriptor fd, int how) throws IOException; argument
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/ch/
H A DWindowsAsynchronousSocketChannelImpl.java716 // Notify the buffers how many bytes were taken
925 private static native void shutdown0(long socket, int how) throws IOException; argument
/openjdk10/hotspot/src/os/aix/vm/
H A Dos_aix.cpp2771 // "Randomly" selected value for how long we want to spin
2772 // before bailing out on suspending a thread, also how often
2888 bool set_thread_signal_mask(int how, const sigset_t* set, sigset_t* oset) { argument
2889 const int rc = ::pthread_sigmask(how, set, oset);
4126 // Warn explicity if EXTSHM=ON is used. That switch changes how
/openjdk10/nashorn/test/script/basic/
H A DJDK-8017084.js5852 how: 5821,

Completed in 234 milliseconds