Searched defs:env (Results 351 - 375 of 948) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBreakStatement.java54 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
55 reach(env, vset);
56 checkLabel(env, ctx);
60 env.error(where, "branch.to.uplevel", lbl);
65 env.error(where, "label.not.found", lbl);
67 env.error(where, "invalid.break");
80 public int costInline(int thresh, Environment env, Context ctx) { argument
87 public void code(Environment env, Context ctx, Assembler asm) { argument
90 codeFinally(env, ctx, asm, destctx, null);
H A DCastExpression.java51 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
52 type = left.toType(env, ctx);
53 vset = right.checkValue(env, ctx, vset, exp);
66 if (env.explicitCast(right.type, type)) {
71 env.error(where, "class.not.found", e.name, opNames[op]);
75 env.error(where, "invalid.cast", right.type, type);
93 public Expression inline(Environment env, Context ctx) { argument
94 return right.inline(env, ctx);
96 public Expression inlineValue(Environment env, Context ctx) { argument
97 return right.inlineValue(env, ct
101 costInline(int thresh, Environment env, Context ctx) argument
[all...]
H A DContinueStatement.java55 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
56 checkLabel(env, ctx);
57 reach(env, vset);
68 env.error(where, "branch.to.uplevel", lbl);
73 env.error(where, "invalid.continue");
77 env.error(where, "label.not.found", lbl);
79 env.error(where, "invalid.continue");
92 public int costInline(int thresh, Environment env, Context ctx) { argument
99 public void code(Environment env, Context ctx, Assembler asm) { argument
101 codeFinally(env, ct
[all...]
H A DEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
79 left.codeValue(env, ctx, asm);
84 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
98 right.codeValue(env, ctx, asm);
107 right.codeValue(env, ctx, asm);
H A DGreaterExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
86 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
H A DGreaterOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
86 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
H A DInlineMethodExpression.java54 public Expression inline(Environment env, Context ctx) { argument
55 body = body.inline(env, new Context(ctx, this));
68 public Expression inlineValue(Environment env, Context ctx) { argument
74 return inline(env, ctx);
91 public void code(Environment env, Context ctx, Assembler asm) { argument
93 super.code(env, ctx, asm);
95 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
97 body.code(env, newctx, asm);
H A DInlineNewInstanceExpression.java55 public Expression inline(Environment env, Context ctx) { argument
56 return inlineValue(env, ctx);
58 public Expression inlineValue(Environment env, Context ctx) { argument
62 newctx.declare(env, v);
63 body = body.inline(env, newctx);
83 public void code(Environment env, Context ctx, Assembler asm) { argument
84 codeCommon(env, ctx, asm, false);
86 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
87 codeCommon(env, ctx, asm, true);
89 private void codeCommon(Environment env, Contex argument
[all...]
H A DInlineReturnStatement.java65 public Statement inline(Environment env, Context ctx) { argument
67 expr = expr.inlineValue(env, ctx);
86 public int costInline(int thresh, Environment env, Context ctx) { argument
87 return 1 + ((expr != null) ? expr.costInline(thresh, env, ctx) : 0);
93 public void code(Environment env, Context ctx, Assembler asm) { argument
95 expr.codeValue(env, ctx, asm);
H A DIntegerExpression.java51 public boolean fitsType(Environment env, Context ctx, Type t) { argument
56 return super.fitsType(env, ctx, t);
66 return super.fitsType(env, ctx, t);
93 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
H A DLessExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
86 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
H A DLessOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
86 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
H A DNewArrayExpression.java58 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
59 type = right.toType(env, ctx);
66 env.error(where, "array.dim.missing");
71 env.error(dim.where, "invalid.array.dim");
73 vset = dim.checkValue(env, ctx, vset, exp);
74 args[i] = convert(env, ctx, Type.tInt, dim);
79 vset = init.checkInitializer(env, ctx, vset, type, exp);
80 init = convert(env, ctx, type, init);
96 public Expression inline(Environment env, Context ctx) { argument
105 return (e != null) ? e.inline(env, ct
107 inlineValue(Environment env, Context ctx) argument
121 codeValue(Environment env, Context ctx, Assembler asm) argument
[all...]
H A DNode.java67 public Expression convert(Environment env, Context ctx, Type t, Expression e) { argument
79 if (e.fitsType(env, ctx, t)) {
83 if (env.explicitCast(e.type, t)) {
84 env.error(where, "explicit.cast.needed", opNames[op], e.type, t);
88 env.error(where, "class.not.found", ee.name, opNames[op]);
92 env.error(where, "incompatible.type", opNames[op], e.type, t);
H A DNotEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
79 left.codeValue(env, ctx, asm);
84 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
98 right.codeValue(env, ctx, asm);
107 right.codeValue(env, ctx, asm);
H A DStringExpression.java59 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
H A DTypeExpression.java49 Type toType(Environment env, Context ctx) { argument
56 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
57 env.error(where, "invalid.term");
62 public Vset checkAmbigName(Environment env, Context ctx, Vset vset, Hashtable exp, argument
67 public Expression inline(Environment env, Context ctx) { argument
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A Dlauncher.c47 JNIEnv *env; local
79 res = (*create_vm)(&jvm, (void**)&env, &vm_args);
84 cls = (*env)->FindClass(env, argv[3]);
89 mid = (*env)->GetStaticMethodID(env, cls, "main",
94 jstr = (*env)->NewStringUTF(env, " from C!");
98 stringClass = (*env)->FindClass(env, "jav
[all...]
/openjdk7/jdk/src/share/native/sun/management/
H A DMemoryPoolImpl.c32 (JNIEnv *env, jobject pool)
34 jobject mgrs = jmm_interface->GetMemoryManagers(env, pool);
38 JNU_ThrowInternalError(env, "Memory Pool not found");
45 (JNIEnv *env, jobject pool)
47 jobject usage = jmm_interface->GetMemoryPoolUsage(env, pool);
51 JNU_ThrowInternalError(env, "Memory Pool not found");
58 (JNIEnv *env, jobject pool)
60 jobject usage = jmm_interface->GetPeakMemoryPoolUsage(env, pool);
64 JNU_ThrowInternalError(env, "Memory Pool not found");
71 (JNIEnv *env, jobjec
31 Java_sun_management_MemoryPoolImpl_getMemoryManagers0(JNIEnv *env, jobject pool) argument
44 Java_sun_management_MemoryPoolImpl_getUsage0(JNIEnv *env, jobject pool) argument
57 Java_sun_management_MemoryPoolImpl_getPeakUsage0(JNIEnv *env, jobject pool) argument
70 Java_sun_management_MemoryPoolImpl_setUsageThreshold0(JNIEnv *env, jobject pool, jlong current, jlong newThreshold) argument
90 Java_sun_management_MemoryPoolImpl_setCollectionThreshold0(JNIEnv *env, jobject pool, jlong current, jlong newThreshold) argument
114 Java_sun_management_MemoryPoolImpl_resetPeakUsage0(JNIEnv *env, jobject pool) argument
123 Java_sun_management_MemoryPoolImpl_setPoolUsageSensor(JNIEnv *env, jobject pool, jobject sensor) argument
131 Java_sun_management_MemoryPoolImpl_setPoolCollectionSensor(JNIEnv *env, jobject pool, jobject sensor) argument
139 Java_sun_management_MemoryPoolImpl_getCollectionUsage0(JNIEnv *env, jobject pool) argument
[all...]
/openjdk7/jdk/src/share/native/sun/misc/
H A DVersion.c35 static void setStaticIntField(JNIEnv* env, jclass cls, const char* name, jint value) argument
39 fid = (*env)->GetStaticFieldID(env, cls, name, "I");
41 (*env)->SetStaticIntField(env, cls, fid, value);
44 JNU_ThrowInternalError(env, errmsg);
48 static void setStaticBooleanField(JNIEnv* env, jclass cls, const char* name, jboolean value) argument
52 fid = (*env)->GetStaticFieldID(env, cls, name, "Z");
54 (*env)
61 setStaticStringField(JNIEnv* env, jclass cls, const char* name, jstring value) argument
78 Java_sun_misc_Version_getJvmVersionInfo(JNIEnv *env, jclass cls) argument
103 Java_sun_misc_Version_getJvmSpecialVersion(JNIEnv *env, jclass cls) argument
113 Java_sun_misc_Version_getJdkVersionInfo(JNIEnv *env, jclass cls) argument
127 Java_sun_misc_Version_getJdkSpecialVersion(JNIEnv *env, jclass cls) argument
[all...]
/openjdk7/jdk/src/share/native/sun/reflect/
H A DConstantPool.c30 (JNIEnv *env, jobject unused, jobject jcpool)
32 return JVM_ConstantPoolGetSize(env, unused, jcpool);
36 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
38 return JVM_ConstantPoolGetClassAt(env, unused, jcpool, index);
42 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
44 return JVM_ConstantPoolGetClassAtIfLoaded(env, unused, jcpool, index);
48 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
50 return JVM_ConstantPoolGetMethodAt(env, unused, jcpool, index);
54 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
56 return JVM_ConstantPoolGetMethodAtIfLoaded(env, unuse
29 Java_sun_reflect_ConstantPool_getSize0(JNIEnv *env, jobject unused, jobject jcpool) argument
35 Java_sun_reflect_ConstantPool_getClassAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
41 Java_sun_reflect_ConstantPool_getClassAtIfLoaded0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
47 Java_sun_reflect_ConstantPool_getMethodAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
53 Java_sun_reflect_ConstantPool_getMethodAtIfLoaded0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
59 Java_sun_reflect_ConstantPool_getFieldAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
65 Java_sun_reflect_ConstantPool_getFieldAtIfLoaded0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
71 Java_sun_reflect_ConstantPool_getMemberRefInfoAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
77 Java_sun_reflect_ConstantPool_getIntAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
83 Java_sun_reflect_ConstantPool_getLongAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
89 Java_sun_reflect_ConstantPool_getFloatAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
95 Java_sun_reflect_ConstantPool_getDoubleAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
101 Java_sun_reflect_ConstantPool_getStringAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
107 Java_sun_reflect_ConstantPool_getUTF8At0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_dual.c71 (JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jPart)
79 CK_FUNCTION_LIST_PTR ckpFunctions = getFunctionList(env, obj);
83 jByteArrayToCKByteArray(env, jPart, &ckpPart, &ckPartLength);
84 if ((*env)->ExceptionCheck(env)) { return NULL; }
87 if (ckAssertReturnValueOK(env, rv) != CK_ASSERT_OK) {
95 JNU_ThrowOutOfMemoryError(env, 0);
100 if (ckAssertReturnValueOK(env, rv) == CK_ASSERT_OK) {
101 jEncryptedPart = ckByteArrayToJByteArray(env, ckpEncryptedPart, ckEncryptedPartLength);
123 (JNIEnv *env, jobjec
70 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestEncryptUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jPart) argument
122 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptDigestUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jEncryptedPart) argument
174 Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignEncryptUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jPart) argument
226 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptVerifyUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jEncryptedPart) argument
275 Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetFunctionStatus(JNIEnv *env, jobject obj, jlong jSessionHandle) argument
300 Java_sun_security_pkcs11_wrapper_PKCS11_C_1CancelFunction(JNIEnv *env, jobject obj, jlong jSessionHandle) argument
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DRequest.java119 public abstract Environment env(); method in class:Request
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DPrintGenerator.java115 * @param env The compiler environment
121 public void generate(sun.rmi.rmic.BatchEnvironment env, ClassDefinition cdef, File destDir) { argument
123 BatchEnvironment ourEnv = (BatchEnvironment) env;
/openjdk7/hotspot/agent/src/os/bsd/
H A DStubDebuggerLocal.c28 #define CHECK_EXCEPTION_(value) if ((*env)->ExceptionOccurred(env)) { return value; }
29 #define CHECK_EXCEPTION if ((*env)->ExceptionOccurred(env)) { return;}
30 #define THROW_NEW_DEBUGGER_EXCEPTION_(str, value) { throw_new_debugger_exception(env, str); return value; }
31 #define THROW_NEW_DEBUGGER_EXCEPTION(str) { throw_new_debugger_exception(env, str); return;}
33 static void throw_new_debugger_exception(JNIEnv* env, const char* errMsg) { argument
34 (*env)->ThrowNew(env, (*env)
42 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_init0(JNIEnv *env, jclass cls) argument
46 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_getAddressSize(JNIEnv *env, jclass cls) argument
62 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__I(JNIEnv *env, jobject this_obj, jint jpid) argument
73 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv *env, jobject this_obj, jstring execName, jstring coreName) argument
83 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_detach0(JNIEnv *env, jobject this_obj) argument
92 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByName0(JNIEnv *env, jobject this_obj, jstring objectName, jstring symbolName) argument
102 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByAddress0(JNIEnv *env, jobject this_obj, jlong addr) argument
112 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_readBytesFromProcess0(JNIEnv *env, jobject this_obj, jlong addr, jlong numBytes) argument
117 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_getThreadIntegerRegisterSet0(JNIEnv *env, jobject this_obj, jint lwp_id) argument
[all...]

Completed in 65 milliseconds

<<11121314151617181920>>