Lines Matching refs:sc
895 ScopedCheck sc(env, flags, __FUNCTION__); \
896 sc.Check(true, types, ##args)
900 sc.Check(false, type, _rc); \
903 sc.Check(false, "V")
1127 sc.CheckClassName(name); in DefineClass()
1133 sc.CheckClassName(name); in FindClass()
1326 sc.CheckStaticFieldID(c, fid); \
1331 sc.CheckInstanceFieldID(obj, fid); \
1336 sc.CheckStaticFieldID(c, fid); \
1340 sc.CheckFieldType(java_type_value, fid, _type[0], true); \
1346 sc.CheckInstanceFieldID(obj, fid); \
1350 sc.CheckFieldType(java_type_value, fid, _type[0], false); \
1371 sc.CheckSig(mid, _retsig, false); \
1372 sc.CheckVirtualMethod(obj, mid); \
1384 sc.CheckSig(mid, _retsig, false); \
1385 sc.CheckVirtualMethod(obj, mid); \
1394 sc.CheckSig(mid, _retsig, false); \
1395 sc.CheckVirtualMethod(obj, mid); \
1405 sc.CheckSig(mid, _retsig, false); \
1406 sc.CheckVirtualMethod(obj, mid); \
1418 sc.CheckSig(mid, _retsig, false); \
1419 sc.CheckVirtualMethod(obj, mid); \
1428 sc.CheckSig(mid, _retsig, false); \
1429 sc.CheckVirtualMethod(obj, mid); \
1438 sc.CheckSig(mid, _retsig, true); \
1439 sc.CheckStaticMethod(c, mid); \
1450 sc.CheckSig(mid, _retsig, true); \
1451 sc.CheckStaticMethod(c, mid); \
1459 sc.CheckSig(mid, _retsig, true); \
1460 sc.CheckStaticMethod(c, mid); \
1493 if (sc.ForceCopy() && result != nullptr) { in GetStringChars()
1494 mirror::String* s = sc.soa().Decode<mirror::String*>(java_string); in GetStringChars()
1506 sc.CheckNonNull(chars); in ReleaseStringChars()
1507 if (sc.ForceCopy()) { in ReleaseStringChars()
1528 if (sc.ForceCopy() && result != nullptr) { in GetStringUTFChars()
1539 if (sc.ForceCopy()) { in ReleaseStringUTFChars()
1584 ForceCopyGetChecker(ScopedCheck& sc, jboolean* isCopy) { in ForceCopyGetChecker()
1585 force_copy = sc.ForceCopy(); in ForceCopyGetChecker()
1608 …_ctype* result = ForceCopyGetChecker(sc, isCopy).Check(env, array, isCopy, baseEnv(env)->Get##_jna…
1615 sc.CheckNonNull(elems); \
1616 if (sc.ForceCopy()) { \
1665 if (!sc.CheckInstance(ScopedCheck::kObject, obj)) { in MonitorEnter()
1673 if (!sc.CheckInstance(ScopedCheck::kObject, obj)) { in MonitorExit()
1699 if (sc.ForceCopy() && result != nullptr) { in GetPrimitiveArrayCritical()
1707 sc.CheckNonNull(carray); in ReleasePrimitiveArrayCritical()
1708 if (sc.ForceCopy()) { in ReleasePrimitiveArrayCritical()
1718 if (sc.ForceCopy() && result != nullptr) { in GetStringCritical()
1719 mirror::String* s = sc.soa().Decode<mirror::String*>(java_string); in GetStringCritical()
1731 sc.CheckNonNull(carray); in ReleaseStringCritical()
1732 if (sc.ForceCopy()) { in ReleaseStringCritical()
2028 ScopedCheck sc(vm, false, __FUNCTION__); in DestroyJavaVM() local
2029 sc.Check(true, "v", vm); in DestroyJavaVM()
2034 ScopedCheck sc(vm, false, __FUNCTION__); in AttachCurrentThread() local
2035 sc.Check(true, "vpp", vm, p_env, thr_args); in AttachCurrentThread()
2040 ScopedCheck sc(vm, false, __FUNCTION__); in AttachCurrentThreadAsDaemon() local
2041 sc.Check(true, "vpp", vm, p_env, thr_args); in AttachCurrentThreadAsDaemon()
2046 ScopedCheck sc(vm, true, __FUNCTION__); in DetachCurrentThread() local
2047 sc.Check(true, "v", vm); in DetachCurrentThread()
2052 ScopedCheck sc(vm, true, __FUNCTION__); in GetEnv() local
2053 sc.Check(true, "vpI", vm); in GetEnv()