Lines Matching defs:depth

1486 // depth - pre-checked as non-negative
1490 JvmtiEnv::GetFrameLocation(JavaThread* java_thread, jint depth, jmethodID* method_ptr, jlocation* location_ptr) {
1495 err = get_frame_location(java_thread, depth, method_ptr, location_ptr);
1498 VM_GetFrameLocation op(this, java_thread, depth, method_ptr, location_ptr);
1509 // depth - pre-checked as non-negative
1511 JvmtiEnv::NotifyFramePop(JavaThread* java_thread, jint depth) {
1528 vframe *vf = vframeFor(java_thread, depth);
1539 int frame_number = state->count_frames() - depth;
1783 // depth - pre-checked as non-negative
1786 JvmtiEnv::GetLocalObject(JavaThread* java_thread, jint depth, jint slot, jobject* value_ptr) {
1792 VM_GetOrSetLocal op(java_thread, current_thread, depth, slot);
1806 // depth - pre-checked as non-negative
1809 JvmtiEnv::GetLocalInstance(JavaThread* java_thread, jint depth, jobject* value_ptr){
1815 VM_GetReceiver op(java_thread, current_thread, depth);
1830 // depth - pre-checked as non-negative
1833 JvmtiEnv::GetLocalInt(JavaThread* java_thread, jint depth, jint slot, jint* value_ptr) {
1838 VM_GetOrSetLocal op(java_thread, depth, slot, T_INT);
1848 // depth - pre-checked as non-negative
1851 JvmtiEnv::GetLocalLong(JavaThread* java_thread, jint depth, jint slot, jlong* value_ptr) {
1856 VM_GetOrSetLocal op(java_thread, depth, slot, T_LONG);
1866 // depth - pre-checked as non-negative
1869 JvmtiEnv::GetLocalFloat(JavaThread* java_thread, jint depth, jint slot, jfloat* value_ptr) {
1874 VM_GetOrSetLocal op(java_thread, depth, slot, T_FLOAT);
1884 // depth - pre-checked as non-negative
1887 JvmtiEnv::GetLocalDouble(JavaThread* java_thread, jint depth, jint slot, jdouble* value_ptr) {
1892 VM_GetOrSetLocal op(java_thread, depth, slot, T_DOUBLE);
1902 // depth - pre-checked as non-negative
1904 JvmtiEnv::SetLocalObject(JavaThread* java_thread, jint depth, jint slot, jobject value) {
1910 VM_GetOrSetLocal op(java_thread, depth, slot, T_OBJECT, val);
1919 // depth - pre-checked as non-negative
1921 JvmtiEnv::SetLocalInt(JavaThread* java_thread, jint depth, jint slot, jint value) {
1927 VM_GetOrSetLocal op(java_thread, depth, slot, T_INT, val);
1936 // depth - pre-checked as non-negative
1938 JvmtiEnv::SetLocalLong(JavaThread* java_thread, jint depth, jint slot, jlong value) {
1944 VM_GetOrSetLocal op(java_thread, depth, slot, T_LONG, val);
1953 // depth - pre-checked as non-negative
1955 JvmtiEnv::SetLocalFloat(JavaThread* java_thread, jint depth, jint slot, jfloat value) {
1961 VM_GetOrSetLocal op(java_thread, depth, slot, T_FLOAT, val);
1970 // depth - pre-checked as non-negative
1972 JvmtiEnv::SetLocalDouble(JavaThread* java_thread, jint depth, jint slot, jdouble value) {
1978 VM_GetOrSetLocal op(java_thread, depth, slot, T_DOUBLE, val);