Lines Matching +defs:val +defs:access

439 static inline jlong convert_size_t_to_jlong(size_t val) {
441 NOT_LP64 (return (jlong)val;)
442 LP64_ONLY(return (jlong)MIN2(val, (size_t)max_jlong);)
1117 // If there is a security manager and protection domain, check the access
1129 // Whitelist certain access control contexts
1193 // Create an unprivileged access control object and call it's run function
1518 // the system could allow a spoof of an inner class to gain access rights.
1835 // Constant pool access //////////////////////////////////////////////////////////
3296 bool force_verify_field_access(klassOop current_class, klassOop field_class, AccessFlags access, bool classloader_only) {
3300 if ((current_class == field_class) || access.is_public()) {
3304 if (access.is_protected()) {
3311 return (!access.is_private() && instanceKlass::cast(current_class)->is_same_class_package(field_class));
3366 // subclass 'curr_klass' does not have access to no-arg constructor of 'initcb'
3524 JVM_ENTRY(void, JVM_SetArrayElement(JNIEnv *env, jobject arr, jint index, jobject val))
3527 oop box = JNIHandles::resolve(val);
3891 jboolean val = (dbuf->byte_at(off) != 0) ? JNI_TRUE : JNI_FALSE;
3892 o->bool_field_put(field_offset, val);
3906 jchar val = ((dbuf->byte_at(off + 0) & 0xFF) << 8)
3908 o->char_field_put(field_offset, val);
3915 jshort val = ((dbuf->byte_at(off + 0) & 0xFF) << 8)
3917 o->short_field_put(field_offset, val);
4016 jboolean val = o->bool_field(field_offset);
4017 dbuf->byte_at_put(off++, (val != 0) ? 1 : 0);
4027 jchar val = o->char_field(field_offset);
4028 dbuf->byte_at_put(off++, (val >> 8) & 0xFF);
4029 dbuf->byte_at_put(off++, (val >> 0) & 0xFF);
4035 jshort val = o->short_field(field_offset);
4036 dbuf->byte_at_put(off++, (val >> 8) & 0xFF);
4037 dbuf->byte_at_put(off++, (val >> 0) & 0xFF);
4043 jint val = o->int_field(field_offset);
4044 dbuf->byte_at_put(off++, (val >> 24) & 0xFF);
4045 dbuf->byte_at_put(off++, (val >> 16) & 0xFF);
4046 dbuf->byte_at_put(off++, (val >> 8) & 0xFF);
4047 dbuf->byte_at_put(off++, (val >> 0) & 0xFF);
4064 jlong val = o->long_field(field_offset);
4065 dbuf->byte_at_put(off++, (val >> 56) & 0xFF);
4066 dbuf->byte_at_put(off++, (val >> 48) & 0xFF);
4067 dbuf->byte_at_put(off++, (val >> 40) & 0xFF);
4068 dbuf->byte_at_put(off++, (val >> 32) & 0xFF);
4069 dbuf->byte_at_put(off++, (val >> 24) & 0xFF);
4070 dbuf->byte_at_put(off++, (val >> 16) & 0xFF);
4071 dbuf->byte_at_put(off++, (val >> 8) & 0xFF);
4072 dbuf->byte_at_put(off++, (val >> 0) & 0xFF);