Lines Matching full:insns
2192 meth->insns = pDexCode->insns;
2208 assert(meth->insns == NULL);
2249 meth->insns = newCode->insns;
3494 assert(meth->insns == NULL);
4537 * Replace method->nativeFunc and method->insns with new values. This is
4541 * (1) (initial) nativeFunc = dvmResolveNativeMethod, insns = NULL
4542 * (2) (internal native) nativeFunc = <impl>, insns = NULL
4543 * (3) (JNI) nativeFunc = JNI call bridge, insns = <impl>
4549 * dvmResolveNativeMethod ignores the "insns" field we just need to make
4554 * in the call bridge, we could null out the "insns" field right before
4555 * the bridge tried to call through it. So, once "insns" is set, we do
4556 * not allow it to be cleared. A NULL value for the "insns" argument is
4560 const u2* insns)
4570 if (insns != NULL) {
4571 /* update both, ensuring that "insns" is observed first */
4572 method->insns = insns;