Searched defs:result (Results 151 - 175 of 605) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibGroup.java244 public void getRootOid(Vector result) { argument
417 long[] result = null;
432 result = table.findNextHandlingNode(varbind,oid,pos+1,
441 result[depth] = arc;
442 return result;
451 // result = new SnmpOid(0);
452 // result.insert((int)arc);
453 result = new long[depth+2];
454 result[depth+1] = 0L;
455 result[dept
[all...]
H A DSnmpMibOid.java203 long[] result = null;
217 result = findNextHandlingNode(varbind,newOid,0,depth,handlers,
219 return result;
231 // SnmpOid result = null;
237 // result = new SnmpOid(0);
241 result = child.findNextHandlingNode(varbind,oid,pos+1,
250 result[depth] = index;
251 return result;
270 public void getRootOid(Vector<Integer> result) { argument
278 result
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.cpp37 char* result; local
42 if ((result = abi::__cxa_demangle(symbol, NULL, NULL, &status)) != NULL) {
43 jio_snprintf(buf, buflen, "%s", result);
45 ::free(result);
/openjdk7/hotspot/src/share/vm/adlc/
H A Darena.cpp104 void* result = _hwm; local
106 return result;
/openjdk7/jdk/make/tools/reorder/tools/
H A Dremove_mcount.c56 Elf_Scn *result = NULL; local
60 while ((result = elf_nextscn(elf, result)) != NULL) {
61 symHeader = elf32_getshdr(result);
66 return result;
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DSubclassing.java140 private static void invokeFromJNI(ID obj, Method method, CIF cif, long result, long args){ argument
164 cif.returnCoder.push(obj.runtime, result, retVal);
/openjdk7/hotspot/src/share/vm/prims/
H A Dwhitebox.cpp60 oop result = JNIHandles::resolve(obj); variable
61 const HeapRegion* hr = g1->heap_region_containing(result);
219 jint result = env->RegisterNatives(wbclass, methods, sizeof(methods)/sizeof(methods[0])); local
220 if (result == 0) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaCalls.hpp75 JavaValue* _result; // result value
79 JavaCallWrapper(methodHandle callee_method, Handle receiver, JavaValue* result, TRAPS);
88 JavaValue* result() const { return _result; } function in class:JavaCallWrapper
193 static void call_helper(JavaValue* result, methodHandle* method, JavaCallArguments* args, TRAPS);
201 static void call_special(JavaValue* result, KlassHandle klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
203 static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, TRAPS); // No args
204 static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, TRAPS);
205 static void call_special(JavaValue* result, Handle receiver, KlassHandle klass, Symbol* name, Symbol* signature, Handle arg1, Handle arg2, TRAPS);
211 static void call_virtual(JavaValue* result, KlassHandle spec_klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS);
213 static void call_virtual(JavaValue* result, Handl
[all...]
H A DjfieldIDWorkaround.hpp88 uintptr_t result = (uintptr_t) id >> address_shift; local
90 result &= small_offset_mask; // cut off the hash bits
92 return (intptr_t)result;
115 jfieldID result = (jfieldID) as_uint; local
121 verify_instance_jfieldID(k, result);
123 assert(raw_instance_offset(result) == (offset & large_offset_mask), "extract right offset");
124 return result;
140 jfieldID result = (jfieldID) id; local
141 assert(from_static_jfieldID(result) == id, "must produce the same static id");
142 return result;
148 JNIid* result = (JNIid*) id; local
[all...]
H A DjniHandles.hpp48 // Resolve handle into oop, result guaranteed not to be null
74 // result guaranteed not to be NULL.
185 oop result = (handle == NULL ? (oop)NULL : *(oop*)handle); local
186 assert(result != NULL || (handle == NULL || !CheckJNICalls || is_weak_global_handle(handle)), "Invalid value read from jni handle");
187 assert(result != badJNIHandle, "Pointing to zapped jni handle area");
188 return result;
194 oop result = *(oop*)handle;
195 if (result == NULL || result == badJNIHandle) return NULL;
196 return result;
202 oop result = *(oop*)handle; local
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp143 SharkValue *result = pop(); local
146 switch (result->basic_type()) {
159 assert(result->basic_type() == type, "type mismatch");
163 return result;
H A DsharkIntrinsics.cpp174 PHINode *phi = builder()->CreatePHI(a->getType(), "result");
178 // Push the result
268 Value *result = builder()->CreateCmpxchgInt(x, addr, e); local
270 // Push the result
274 builder()->CreateICmpEQ(result, e), SharkType::jint_type(), true),
H A DsharkNativeWrapper.cpp215 Value *result = builder()->CreateCall( local
292 // If the result was an oop then unbox it before
300 builder()->CreateICmpNE(result, ConstantPointerNull::get(box_type)),
304 Value *unboxed_result = builder()->CreateLoad(result);
308 PHINode *phi = builder()->CreatePHI(SharkType::oop_type(), "result");
311 result = phi;
328 result = builder()->CreateICmpNE(result, LLVMValue::jbyte_constant(0));
343 result = builder()->CreateIntCast(
344 result, SharkTyp
[all...]
/openjdk7/hotspot/test/compiler/6823354/
H A DTest6823354.java164 static void check(int value, int result, int expected) { argument
165 //System.out.println(value + ": " + result + ", " + expected);
166 if (result != expected)
167 throw new InternalError(value + " failed: " + result + " != " + expected);
170 static void check(long value, long result, long expected) { argument
171 //System.out.println(value + ": " + result + ", " + expected);
172 if (result != expected)
173 throw new InternalError(value + " failed: " + result + " != " + expected);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCHandler.java77 * @param result
78 * The parsing result of the child state.
88 protected abstract void onChildCompleted( Object result, int cookie, boolean needAttCheck ) throws SAXException; argument
131 public void revertToParentFromEnterElement( Object result, int cookie, argument
135 _parent.onChildCompleted(result,cookie,true);
138 public void revertToParentFromLeaveElement( Object result, int cookie, argument
148 _parent.onChildCompleted(result,cookie,true);
151 public void revertToParentFromEnterAttribute( Object result, int cookie, argument
155 _parent.onChildCompleted(result,cookie,true);
158 public void revertToParentFromLeaveAttribute( Object result, in argument
165 revertToParentFromText( Object result, int cookie, String text ) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DInternalizer.java174 * the result into the "result" map and the "scd" map.
186 Map<Element,List<Node>> result, SCDBasedBindingSet scdResult ) {
218 if (result.get(bindings) == null)
219 result.put(bindings, new ArrayList<Node>());
220 result.get(bindings).add(forest.get(systemId).getDocumentElement());
224 buildTargetNodeMap(value, forest.get(systemId).getDocumentElement(), inheritedSCD, result, scdResult);
354 // update the result map
358 if (result.get(bindings) == null)
359 result
184 buildTargetNodeMap( Element bindings, @NotNull Node inheritedTarget, @Nullable SCDBasedBindingSet.Target inheritedSCD, Map<Element,List<Node>> result, SCDBasedBindingSet scdResult ) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DBridgeAdapter.java85 public void marshal(Marshaller context, InMemory inMemory, Result result) throws JAXBException { argument
86 core.marshal(context,adaptM(context,inMemory),result);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/transform/
H A DEfficientStreamingTransformer.java53 * for certain cases. If source and result are of type stream, then
277 javax.xml.transform.Result result)
282 && (result instanceof StreamResult)) {
287 OutputStream os = ((StreamResult) result).getOutputStream();
347 && (result instanceof DOMResult))
358 (Document) ((DOMResult) result).getNode(),
370 && FastInfosetReflection.isFastInfosetResult(result))
378 // m_fiDOMDocumentSerializer.setOutputStream(result.getOutputStream())
381 FastInfosetReflection.FastInfosetResult_getOutputStream(result));
399 m_realTransformer.transform(source, result);
275 transform( javax.xml.transform.Source source, javax.xml.transform.Result result) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DSaxSerializer.java73 public SaxSerializer(SAXResult result) { argument
74 this(result.getHandler(),result.getLexicalHandler());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXmlUtil.java157 List<String> result = new ArrayList<String>();
160 result.add(tokenizer.nextToken());
162 return result;
225 T identityTransform(Source src, T result) throws TransformerException, SAXException, ParserConfigurationException, IOException { argument
231 th.setResult(result);
237 newTransformer().transform(src, result);
239 return result;
258 // Using static catalog may result in to sharing of the catalog by multiple apps running in a container
279 // Using static catalog may result in to sharing of the catalog by multiple apps running in a container
319 // Using static catalog may result i
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DFoolProofParserExtension.java59 private boolean post(QName tagName, XMLStreamReader xsr, boolean result) { argument
62 if(result) {
69 return result;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCHandler.java77 * @param result
78 * The parsing result of the child state.
88 protected abstract void onChildCompleted( Object result, int cookie, boolean needAttCheck ) throws SAXException; argument
131 public void revertToParentFromEnterElement( Object result, int cookie, argument
135 _parent.onChildCompleted(result,cookie,true);
138 public void revertToParentFromLeaveElement( Object result, int cookie, argument
148 _parent.onChildCompleted(result,cookie,true);
151 public void revertToParentFromEnterAttribute( Object result, int cookie, argument
155 _parent.onChildCompleted(result,cookie,true);
158 public void revertToParentFromLeaveAttribute( Object result, in argument
165 revertToParentFromText( Object result, int cookie, String text ) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_DrawingSurface.c129 int32_t result; local
182 result = adata->AwtColorMatch(r, g, b, adata);
184 return result;
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileChannelImpl.c130 jlong result = 0; local
133 result = lseek64(fd, 0, SEEK_CUR);
135 result = lseek64(fd, offset, SEEK_SET);
137 return handle(env, result, "Position failed");
146 jlong result = close(fd); local
147 if (result < 0) {
177 jlong result;
184 result = sendfilev64(dstFD, &sfv, 1, &numBytes);
191 if (result < 0) {
203 return result;
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DGnomeFileTypeDetector.c136 jbyteArray result = NULL; local
145 result = (*env)->NewByteArray(env, len);
146 if (result != NULL) {
147 (*env)->SetByteArrayRegion(env, result, 0, len, (jbyte*)mime);
154 return result;
196 jbyteArray result; local
198 result = (*env)->NewByteArray(env, len);
199 if (result != NULL) {
200 (*env)->SetByteArrayRegion(env, result, 0, len, (jbyte*)mime);
202 return result;
[all...]

Completed in 58 milliseconds

1234567891011>>