Searched defs:result (Results 476 - 500 of 605) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallingContext.java103 private Object result; field in class:UnmarshallingContext
189 * receives the result.
444 result = null;
565 * Gets the result of the unmarshalling
571 if(!aborted) return result;
581 result = null;
1070 state.getContext().result = o;
1102 state.getContext().result = e;
/openjdk7/jdk/src/solaris/native/java/lang/
H A DUNIXProcess_md.c364 ssize_t result; local
365 RESTARTABLE(write(fd, buf, count), result); local
366 return result;
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c242 jbyteArray result = NULL; local
251 result = (*env)->NewByteArray(env, len);
252 if (result != NULL) {
253 (*env)->SetByteArrayRegion(env, result, 0, len, (jbyte*)buf);
256 return result;
624 struct dirent64* result; local
627 char name_extra[PATH_MAX + 1 - sizeof result->d_name];
635 res = readdir64_r(dirp, ptr, &result);
640 if (result == NULL) {
769 jbyteArray result local
796 jbyteArray result = NULL; local
889 jbyteArray result = NULL; local
934 jbyteArray result = NULL; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXToolkit.c658 int32_t result; local
683 result = poll( pollFds, 2, (int32_t) timeout );
685 PRINT("%d of %d, res: %d\n", (int)(poll_wakeup_time-poll_sleep_time), (int)timeout, result);
688 if (result == 0) {
/openjdk7/jdk/src/windows/native/com/sun/management/
H A DOperatingSystem_md.c69 jlong result = 0; // initialization to avoid warning local
70 set_high(&result, h);
71 set_low(&result, l);
72 return result;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_List.cpp428 MsgRouting result = mrDoDefault; local
432 result = mrConsume;
439 return (result == mrConsume) ? result : compResult;
554 jint result = 0; local
562 result = l->GetMaxWidth();
567 return result;
763 jboolean result = JNI_FALSE; local
771 result = l->IsItemSelected(index);
778 return result;
[all...]
H A Dawt_TextComponent.cpp492 jstring result = NULL; local
504 result = env->NewString(jc, 0);
510 result = JNU_NewStringPlatform(env, buf);
517 if (result != NULL)
519 jstring globalRef = (jstring)env->NewGlobalRef(result);
520 env->DeleteLocalRef(result);
566 jint result = 0; local
576 result = c->getJavaSelPos(start);
581 return result;
590 jint result local
[all...]
H A Dawt_Toolkit.h80 int result = m_env->PushLocalFrame(size); local
81 if (result < 0) {
492 // called by PreloadThread or as result
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java1131 String result = getenvInChild(pb);
1133 result = removeMacExpectedVars(result);
1135 equal(result, expected);
2186 public String result () throws Throwable { method in class:Basic.StreamAccumulator
2239 out = outAccumulator.result();
2240 err = errAccumulator.result();
/openjdk7/jdk/src/share/instrument/
H A DJPLISAgent.c383 jboolean result; local
392 result = initializeFallbackError(jnienv);
393 jplis_assert(result);
398 if ( result ) {
399 result = createInstrumentationImpl(jnienv, agent);
400 jplis_assert(result);
408 if ( result ) {
409 result = setLivePhaseEventHandlers(agent);
410 jplis_assert(result);
416 if ( result ) {
[all...]
/openjdk7/jdk/src/share/native/common/
H A Djni_util.c199 jvalue result; local
207 result.i = 0;
225 result.l = (*env)->CallStaticObjectMethodV(env, clazz, mid, args);
228 result.z = (*env)->CallStaticBooleanMethodV(env, clazz, mid, args);
231 result.b = (*env)->CallStaticByteMethodV(env, clazz, mid, args);
234 result.c = (*env)->CallStaticCharMethodV(env, clazz, mid, args);
237 result.s = (*env)->CallStaticShortMethodV(env, clazz, mid, args);
240 result.i = (*env)->CallStaticIntMethodV(env, clazz, mid, args);
243 result.j = (*env)->CallStaticLongMethodV(env, clazz, mid, args);
246 result
273 jvalue result; local
295 jvalue result; local
395 jstring result; local
419 char *result; local
454 jstring result; local
484 char *result; local
526 jstring result; local
555 char *result; local
717 jstring result; local
770 char *result = nativeGetStringPlatformChars(env, jstr, isCopy); local
927 jint result = (*env)->IsInstanceOf(env, object, cls); local
1071 jvalue result; local
1199 jvalue result; local
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.c1214 jzentry *result; local
1219 result = newEntry(zip, &zip->entries[n], ACCESS_SEQUENTIAL);
1221 return result;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngget.c327 png_fixed_point result; local
328 if (ppm <= PNG_UINT_31_MAX && png_muldiv(&result, (png_int_32)ppm, 127,
330 return result;
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A DLCMS.c361 jint result = -1; local
367 result = sizeof(cmsICCHeader);
370 result = cmsReadRawTag(sProf.pf, sig.cms, NULL, 0);
377 return result;
511 void* result = NULL; local
516 result = (*env)->GetByteArrayElements (env, *pDataObject, 0);
519 result = (*env)->GetShortArrayElements (env, *pDataObject, 0);
522 result = (*env)->GetIntArrayElements (env, *pDataObject, 0);
525 result = (*env)->GetDoubleArrayElements (env, *pDataObject, 0);
529 return result;
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java1141 int result = 17;
1143 result = 37 * result + font.hashCode();
1146 result = 37 * result + frc.hashCode();
1148 return result;
1609 * @param result the result to return upon successful completion
1612 * result value upon completion
1615 public static <V> Future<V> submit(Runnable task, V result) { argument
[all...]
/openjdk7/jdk/test/java/util/Map/
H A DBasicSerialization.java100 Map<K, V> result = (Map<K, V>)cloneMethod.invoke(map, new Object[]{});
101 return result;
111 Map<K, V> result = (Map<K, V>)copyConstructor.newInstance(new Object[]{map});
113 return result;
214 private static Map<IntegerEnum, String> fillMap(Map<IntegerEnum, String> result) { argument
216 result.put(KEYS[each], VALUES[each]);
219 return result;
/openjdk7/jdk/src/share/native/sun/security/jgss/wrapper/
H A DGSSLibStub.c243 jobjectArray result; local
253 result = getJavaOIDArray(env, nameTypes);
259 return result;
572 jint type, void *result) {
585 major = (*ftab->inquireCred)(&minor, credHdl, result, NULL, NULL, NULL);
587 major = (*ftab->inquireCred)(&minor, credHdl, NULL, result, NULL, NULL);
589 major = (*ftab->inquireCred)(&minor, credHdl, NULL, NULL, result, NULL);
1031 jlong result[6]; local
1054 result[0] = (jlong) srcName;
1055 result[
571 inquireCred(JNIEnv *env, jobject jobj, gss_cred_id_t pCred, jint type, void *result) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java388 final int analyzeFirstCharacter(RangeToken result, int options) { argument
393 if ((ret = this.getChild(i).analyzeFirstCharacter(result, options)) != FC_CONTINUE)
408 ret2 = this.getChild(i).analyzeFirstCharacter(result, options);
417 int ret3 = this.getChild(0).analyzeFirstCharacter(result, options);
420 int ret4 = this.getChild(1).analyzeFirstCharacter(result, options);
426 this.getChild(0).analyzeFirstCharacter(result, options);
435 result.addRange(ch, ch);
438 result.addRange(ch, ch);
440 result.addRange(ch, ch);
448 result
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp271 // return result
867 objArrayHandle result(THREAD, r);
870 result->obj_at_put(i, str());
873 return result();
915 instanceKlassHandle result = parser.parseClassFile(h_name, local
924 h = result;
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.cpp625 oop result = recorded_oop_at(argument_index(i)); local
626 if (result == NULL) { // Explicit context argument can be compressed
629 result = ctxk_encoded_as_null(type(), argument(ctxkj+1));
633 return result;
1121 Klass* result = find_finalizable_subclass(k); local
1122 if (result != NULL) return result;
1301 // Pack the result array with the good news.
1408 // Keep track of whether m is also part of the result set.
1412 mfill++; // keep m0 as marray[0], the first result
1449 Klass* result = find_finalizable_subclass(search_at); local
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp883 JavaValue result(T_VOID);
884 JavaCalls::call_special(&result, thread_oop,
1057 // in the meantime with a definitive result.
1112 // some result.
1144 // the compilation result and then clears the queued_for_compile
1148 // will update in that order. As a result, the only combinations of
1154 // Because we first check the queue bits then check the result bits,
1157 // result then check queued bit), we could get the result bit before
1315 nmethod* result local
1322 nmethod* result = method->code(); local
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp179 As a result if we call at_single_stepping_point() we refetch opcode
687 // If the low three bits in the xor result aren't clear, that means
824 // a result of a PopFrame request.
831 // the result all we need to do is skip across the bytecode
1781 // Now store the result on the stack
1892 // Now store the result
1953 oop result = NULL; local
1957 result = (oop) THREAD->tlab().allocate(obj_size);
1959 if (result == NULL) {
1969 result
2182 oop result = cache->f1_as_instance(); local
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DgenCollectedHeap.cpp926 bool result = ((HeapWord*)p) < _gens[_n_gens - 1]->reserved().start(); local
927 assert(result == _gens[0]->is_in_reserved(p),
928 err_msg("incorrect test - result=%d, p=" PTR_FORMAT, result, (void*)p));
929 return result;
1071 size_t result = 0; local
1074 result += _gens[i]->tlab_capacity();
1077 return result;
1081 size_t result = 0; local
1084 result
1396 HeapWord* result = NULL; local
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp69 // '#' top, result of conflict merge
676 // Return result of merging cts1 and cts2.
678 CellTypeState result; local
683 result._state = _state | cts._state;
686 if (!result.is_info_top()) {
687 assert((result.can_be_address() || result.can_be_reference()),
692 if (result.is_reference()) {
693 result = CellTypeState::make_slot_ref(slot);
695 result
[all...]
H A Doop.inline.hpp206 uint64_t result = pd >> shift; local
207 assert((result & CONST64(0xffffffff00000000)) == 0, "narrow oop overflow");
208 assert(decode_heap_oop(result) == v, "reversibility");
209 return (narrowOop)result;
220 oop result = (oop)(void*)((uintptr_t)base + ((uintptr_t)v << shift)); local
221 return result;
227 oop result = unsafe_decode_heap_oop_not_null(v); local
228 assert(check_obj_alignment(result), err_msg("address not aligned: " PTR_FORMAT, (void*) result));
229 return result;
[all...]

Completed in 136 milliseconds

<<11121314151617181920>>