Searched defs:cif (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DCIF.java53 final NativeBuffer cif; field in class:CIF
58 private CIF(final NativeBuffer cif, Coder returnCoder, Coder... argCoders) { argument
59 this.cif = cif;
H A DInvoke.java43 final CIF cif; field in class:Invoke.FunCall
45 FunCall(long fxnPtr, CIF cif) { argument
47 this.cif = cif;
71 invoke(cif.cif.bufferPtr, fxnPtr, retValPtr, argBuf.buffer.bufferPtr);
H A DSubclassing.java40 static native boolean addMethod(long cls, String name, Method jMethod, CIF cif, long cifPtr, String objCEncodedType); argument
105 CIF cif = new MsgSend(runtime, selName, returnCoder, argCoders).funCall.cif;
115 boolean addedM = Subclassing.addMethod(classPtr, selName, method, cif, cif.cif.bufferPtr, encType.toString());
140 private static void invokeFromJNI(ID obj, Method method, CIF cif, long result, long args){ argument
152 argObjects[i] = cif.argCoders[i + 2].pop(obj.runtime, argAddr);
163 if(!(cif.returnCoder instanceof VoidCoder))
164 cif
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.hpp38 ffi_cif* cif() const { function in class:SignatureHandler
43 return cif()->nargs;
47 return (ffi_type**) (cif() + 1);
70 SignatureHandlerGeneratorBase(methodHandle method, ffi_cif *cif) argument
71 : NativeSignatureIterator(method), _cif(cif) {
75 ffi_cif *cif() const { function in class:SignatureHandlerGeneratorBase
102 _cb->set_insts_end((address) (cif() + 1));
120 _dst = (intptr_t *) (cif() + 1);
130 return (SignatureHandler *) cif();

Completed in 32 milliseconds