Searched defs:found (Results 51 - 67 of 67) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.cpp1070 bool found = false; local
1071 while (!found && !sfs.is_done()) {
1074 found = cur->id() == fr.id();
1076 assert(found, "frame to be deoptimized not found on target thread's stack");
H A Dframe.cpp649 bool found; local
652 found = os::dll_address_to_library_name(pc, buf, buflen, &offset);
653 if (found) {
669 found = os::dll_address_to_function_name(pc, buf, buflen, &offset);
671 if (found) {
1061 // frame. Consult ADLC for where parameter 0 is to be found. Then
1063 // register, both of which are saved in the local frame. If not found
H A Dthread.cpp433 assert(MinPriority <= priority && priority <= MaxPriority, "non-Java priority found");
1032 bool found = k != NULL && local
1035 if (found) {
1053 bool found = k != NULL && local
1056 if (found) {
2599 const char * found = strstr(DeoptimizeOnlyAt, buffer); local
2600 while (found != NULL) {
2601 if ((found[len] == ',' || found[len] == '\n' || found[le
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c615 Boolean found; local
624 found = False;
627 found = True;
635 return found;
2531 /* atom was found and removed: change property */
2535 /* atom was not found and not needed */
H A Dfontpath.c417 currLen, i, j, found, pathLen=0; local
449 found = 0;
452 found = 1;
456 if (!found) {
466 found = 0;
469 found = 1;
473 if (!found) {
755 int i, f, found, len=0; local
813 found = 0;
816 found
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java265 * @param found The type that was found.
268 Type typeError(DiagnosticPosition pos, Object problem, Type found, Type req) { argument
269 log.error(pos, "prob.found.req",
270 problem, found, req);
271 return types.createErrorType(found);
274 Type typeError(DiagnosticPosition pos, String problem, Type found, Type req, Object explanation) { argument
275 log.error(pos, "prob.found.req.1", problem, found, req, explanation);
276 return types.createErrorType(found);
285 typeTagError(DiagnosticPosition pos, Object required, Object found) argument
429 checkType(DiagnosticPosition pos, Type found, Type req) argument
433 checkType(DiagnosticPosition pos, Type found, Type req, String errKey) argument
497 checkCastable(DiagnosticPosition pos, Type found, Type req) argument
2762 final Type found; field in class:Check.ConversionWarner
2764 ConversionWarner(DiagnosticPosition pos, String uncheckedKey, Type found, Type expected) argument
2794 castWarner(DiagnosticPosition pos, Type found, Type expected) argument
2798 convertWarner(DiagnosticPosition pos, Type found, Type expected) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86_32.cpp1886 Label loop_entry, loop, found, continue_execution; local
1899 __ jccb(Assembler::equal, found);
1907 // entry found -> get offset
1908 __ bind(found);
2002 // entry found -> j = offset
3595 __ testptr(rdx, rdx); // check if a slot has been found
3596 __ jccb(Assembler::notZero, allocated); // if found, continue with that one
3646 Label found; local
3656 __ jcc(Assembler::equal, found); // if same object then stop searching
3670 __ bind(found);
[all...]
H A DtemplateTable_x86_64.cpp1920 Label loop_entry, loop, found, continue_execution; local
1935 __ jcc(Assembler::equal, found);
1943 // entry found -> get offset
1944 __ bind(found);
2044 // entry found -> j = offset
3672 __ testptr(c_rarg1, c_rarg1); // check if a slot has been found
3673 __ jcc(Assembler::notZero, allocated); // if found, continue with that one
3733 Label found; local
3748 __ jcc(Assembler::equal, found);
3765 __ bind(found);
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.cpp1609 bool found = false; local
1613 found = true;
1617 if (!found) {
1709 assert(rpo_idx == -1 && bb_ct == _block.length(), "all block members found");
2296 return false; // already found a scale
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp2923 bool found = false; variable
2932 found = id->find_local_field(&fd);
2936 found = instanceKlass::cast(k)->find_field_from_offset(offset, false, &fd);
2938 assert(found, "bad fieldID passed into jni_ToReflectedField");
3975 return method; // wahoo, we found a prefixed version of the method, return it
3977 // found as non-native, so prefix is good, add it, probably just need more prefixes
3981 return NULL; // not found
4056 st.print("Method %s.%s%s not found", Klass::cast(h_k())->external_name(), meth_name, meth_sig);
H A Djvm.cpp179 // found the caller
708 // if not found. ClassNotFoundException is not thrown.
1478 bool found = false; local
1484 for (; !iter.done() && !found; iter.next()) {
1493 found = (k() == inner_klass);
1494 if (found && ooff != 0) {
1503 if (found && outer_klass.is_null()) {
1513 // If no inner class attribute found for this class.
H A DjvmtiExport.cpp1573 bool found = JvmtiEnv::get_field_descriptor(field_klass(), field, &fd); local
1574 // should be found (if not, leave as is)
1575 if (found) {
2192 // not found - try local path
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.cpp351 // rewritten will have been set if loader constraint error found
726 // be relaxed if a need for it is found.
1057 // found matching name; do linear search to find matching signature
1075 // not found
1078 assert(index == -1, err_msg("binary search should have found entry %d", index));
1089 assert(index == -1, err_msg("binary search should have found entry %d", index));
1358 // Lookup a jmethodID, NULL if not found. Do no blocking, no allocations, no handles
1456 // deoptimization. Returns the number of nmethods found.
1460 int found = 0; local
1476 found
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp330 static const char *unstable_chroot_error = "/proc file system not found.\n"
2026 bool found = false; local
2042 found = true;
2050 if (found && info->dlpi_name && info->dlpi_name[0]) {
4438 bool found = os::dll_address_to_library_name(handler, buf, buflen, &offset); local
4439 if (found) {
4596 tty->print_cr(" found:%s", get_signal_handler_name(thisHandler, buf, O_BUFLEN));
4602 tty->print_cr(" found:" PTR32_FORMAT, act.sa_flags);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp323 static const char *unstable_chroot_error = "/proc file system not found.\n"
1756 bool found = false; local
1772 found = true;
1780 if (found && info->dlpi_name && info->dlpi_name[0]) {
4252 bool found = os::dll_address_to_library_name(handler, buf, buflen, &offset); local
4253 if (found) {
4410 tty->print_cr(" found:%s", get_signal_handler_name(thisHandler, buf, O_BUFLEN));
4416 tty->print_cr(" found:" PTR32_FORMAT, act.sa_flags);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp579 long found = 0; local
581 while (found < *id_length && next < MAX_PROCESSOR_ID) {
586 (*id_array)[found] = next;
587 found += 1;
592 if (found < *id_length) {
600 *id_length = found ;
648 // Until we've found enough processors ....
1543 // Until a fix is found for this, T2 will NOT imply alternate signal
2403 bool found = os::dll_address_to_library_name(handler, buf, buflen, &offset); local
2404 if (found) {
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp691 // a) found a non-child window so terminate
692 // b) found real toplevel window (e.g. EmbeddedFrame
732 goto found;
758 goto found;
770 found:
3126 BOOL found = false; local
3131 found = true;
3133 return; /* if ideal case found return, else keep looking */
3137 if (found) {

Completed in 265 milliseconds

123