Searched refs:ok (Results 201 - 215 of 215) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java1939 int ok = 0;
1946 ok++;
1959 Object[] source = {ok, count-ok};
1961 "Import.command.completed.ok.entries.successfully.imported.fail.entries.failed.or.cancelled"));
3854 boolean[] ok = new boolean[9];
3872 ok[p] = true;
3874 KeyUsageExtension kue = new KeyUsageExtension(ok);
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp1972 assert(res == linear_search(this, pc_offset, approximate), "cache ok");
2032 assert(upper == linear_search(this, pc_offset, approximate), "search ok");
2036 assert(NULL == linear_search(this, pc_offset, approximate), "search ok");
2216 bool ok() { return _ok; } function in class:VerifyOopsClosure
2265 assert(voc.ok(), "embedded oops must be OK");
2337 bool ok() { return _ok; } function in class:DebugScavengeRoot
2356 if (!debug_scavenge_root.ok())
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.c1448 int ok = InflateFully(zip, entry, buf, &msg); local
1449 if (!ok) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp3912 Label next, next2, ok; local
3935 cmp_and_br_short(t3, 0, Assembler::lessEqual, Assembler::pn, ok);
3939 bind(ok);
4169 Label ok; local
4172 cmp_and_br_short(t1, t2, Assembler::equal, Assembler::pt, ok);
4176 bind(ok);
H A DsharedRuntime_sparc.cpp1062 Label ok, ok2; local
1063 __ brx(Assembler::equal, false, Assembler::pt, ok);
1068 __ bind(ok);
1533 // ought to be a way to do this where if alignment is ok we use ldd/std when possible
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java69 boolean ok = false;
102 ok = true;
H A DPackageReader.java156 boolean ok = false;
185 ok = true;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp850 LP64_ONLY(|| format == narrow_oop_operand), "format ok");
4432 // to make sure we will be ok no matter the size of the instruction we get placed into.
7082 Label ok; local
7083 jcc(Assembler::equal, ok);
7085 bind(ok);
8998 Label ok; local
9005 jcc(Assembler::equal, ok);
9009 bind(ok);
9783 Label next, ok; local
9800 jcc(Assembler::aboveEqual, ok);
10304 Label ok; local
10338 Label ok; local
10359 Label ok; local
[all...]
H A DsharedRuntime_x86_32.cpp155 Label ok; local
157 __ jccb(Assembler::equal, ok);
159 __ bind(ok);
H A DsharedRuntime_x86_64.cpp863 Label ok; local
876 __ jcc(Assembler::equal, ok);
879 __ bind(ok);
3210 // full sized move even for int should be ok
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp158 jfloat ok = 0.0f; local
159 return jint_cast(f) == jint_cast(ok);
169 jdouble ok = 0.0; local
170 return jlong_cast(d) == jlong_cast(ok);
H A Dc1_LinearScan.cpp639 // the entry block may have incoming values in registers, which is ok.
3303 bool ok = false; local
3310 ok = true;
3315 ok = true;
3321 assert(ok, "fixed intervals should never be live across an oopmap point");
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp1479 klassOop ok; local
1495 ok = i_cp->klass_at(ooff, CHECK_NULL);
1496 outer_klass = instanceKlassHandle(thread, ok);
1507 ok = i_cp->klass_at(encl_method_class_idx, CHECK_NULL);
1508 outer_klass = instanceKlassHandle(thread, ok);
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandleImpl.java850 Object ok = bccInvoker.invokeExact(vamh, new Object[]{hostClass, bcc});
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp2224 BOOL ok = GetTextExtentPoint32((HDC)printDC, wText, (int)strLen, &size);
2226 return ok ? size.cx : 0;

Completed in 250 milliseconds

123456789