Searched refs:env (Results 501 - 525 of 1317) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/macosx/native/sun/awt/
H A DPrinterView.h38 - (id)initWithFrame:(NSRect)aRect withEnv:(JNIEnv*)env withPrinterJob:(jobject)printerJob;
42 - (void)releaseReferences:(JNIEnv*)env;
50 - (BOOL)cancelCheck:(JNIEnv*)env;
52 - (void)complete:(JNIEnv*)env;
/openjdk7/jdk/src/solaris/native/java/util/
H A Dlogging.c35 Java_java_util_logging_FileHandler_isSetUID(JNIEnv *env, jclass thisclass) { argument
H A DFileSystemPreferences.c39 Java_java_util_prefs_FileSystemPreferences_chmod(JNIEnv *env, argument
41 const char *fname = JNU_GetStringPlatformChars(env, java_fname, JNI_FALSE);
46 JNU_ReleaseStringPlatformChars(env, java_fname, fname);
62 Java_java_util_prefs_FileSystemPreferences_lockFile0(JNIEnv *env, argument
64 const char *fname = JNU_GetStringPlatformChars(env, java_fname, JNI_FALSE);
105 JNU_ReleaseStringPlatformChars(env, java_fname, fname);
106 javaResult = (*env)->NewIntArray(env,2);
107 (*env)->SetIntArrayRegion(env, javaResul
116 Java_java_util_prefs_FileSystemPreferences_unlockFile0(JNIEnv *env, jclass thisclass, jint fd) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_LoadLibrary.c53 static JNIEnv *env = NULL; local
58 if (env == NULL) {
59 env = (JNIEnv *)JNU_GetEnv(jvm, JNI_VERSION_1_2);
60 graphicsEnvClass = (*env)->FindClass(env,
65 headlessFn = (*env)->GetStaticMethodID(env,
70 isHeadless = (*env)->CallStaticBooleanMethod(env, graphicsEnvClass,
85 JNIEnv *env local
168 Java_sun_awt_motif_XsessionWMcommand(JNIEnv *env, jobject this, jobject frame, jstring jcommand) argument
198 Java_sun_awt_motif_XsessionWMcommand_New(JNIEnv *env, jobjectArray jargv) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/io/
H A DWin32ErrorMode.c35 (JNIEnv *env, jclass thisClass, jlong mode)
34 Java_sun_io_Win32ErrorMode_setErrorMode(JNIEnv *env, jclass thisClass, jlong mode) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DMaskBlit.h31 HRESULT D3DMaskBlit_MaskBlit(JNIEnv *env, D3DContext *d3dc,
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Clipboard.h59 static void LostOwnership(JNIEnv *env);
61 static void WmDrawClipboard(JNIEnv *env, WPARAM wparam, LPARAM lparam);
62 static void RegisterClipboardViewer(JNIEnv *env, jobject jclipboard);
63 static void UnregisterClipboardViewer(JNIEnv *env);
/openjdk7/jdk/test/com/sun/jndi/ldap/
H A DLdapTimeoutTest.java56 Hashtable env = new Hashtable(11);
57 env.put(Context.INITIAL_CONTEXT_FACTORY,
59 env.put(Context.PROVIDER_URL, "ldap://localhost:" +
62 env.put(Context.SECURITY_AUTHENTICATION,"simple");
64 env.put(Context.SECURITY_PRINCIPAL, "user");
65 env.put(Context.SECURITY_CREDENTIALS, "password");
67 env.put("com.sun.jndi.ldap.connect.timeout", "10");
68 env.put("com.sun.jndi.ldap.read.timeout", "3000");
72 new LdapTimeoutTest().ldapReadTimeoutTest(env, false);
73 new LdapTimeoutTest().ldapReadTimeoutTest(env, tru
84 ldapReadTimeoutTest(Hashtable env, boolean ssl) argument
113 simpleAuthConnectTest(Hashtable env) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTodo.java62 public void append(Env<AttrContext> env) { argument
63 add(env);
89 Env<AttrContext> env = contents.remove(0);
91 removeByFile(env);
92 return env;
102 for (Env<AttrContext> env: contents) {
103 addByFile(env);
109 private void addByFile(Env<AttrContext> env) { argument
110 JavaFileObject file = env.toplevel.sourcefile;
119 fq.fileContents.add(env);
122 removeByFile(Env<AttrContext> env) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAbstractTypeImpl.java44 protected final DocEnv env; field in class:AbstractTypeImpl
47 protected AbstractTypeImpl(DocEnv env, Type type) { argument
48 this.env = env;
H A DExecutableMemberDocImpl.java58 public ExecutableMemberDocImpl(DocEnv env, MethodSymbol sym, argument
60 super(env, sym, rawDocs, tree, lineMap);
67 public ExecutableMemberDocImpl(DocEnv env, MethodSymbol sym) { argument
68 this(env, sym, null, null, null);
105 && !env.legacyDoclet);
116 return containingClass().isIncluded() && env.shouldDocument(sym);
143 return env.legacyDoclet
157 ex = env.types.erasure(ex);
160 ClassDocImpl cdi = env.getClassDoc((ClassSymbol)ex.tsym);
172 return TypeMaker.getTypes(env, sy
[all...]
H A DWildcardTypeImpl.java45 WildcardTypeImpl(DocEnv env, Type.WildcardType type) { argument
46 super(env, type);
55 return TypeMaker.getTypes(env, getExtendsBounds((Type.WildcardType)type));
64 return TypeMaker.getTypes(env, getSuperBounds((Type.WildcardType)type));
72 return env.getClassDoc((ClassSymbol)env.types.erasure(type).tsym);
89 return wildcardTypeToString(env, (Type.WildcardType)type, true);
98 static String wildcardTypeToString(DocEnv env, argument
100 if (env.legacyDoclet) {
101 return TypeMaker.getTypeName(env
[all...]
/openjdk7/jdk/src/share/demo/jvmti/waiters/
H A DMonitor.hpp53 Monitor(jvmtiEnv *jvmti, JNIEnv *env, jobject object);
/openjdk7/jdk/src/share/native/java/nio/
H A DBits.c54 #define GETCRITICAL(bytes, env, obj) { \
55 bytes = (*env)->GetPrimitiveArrayCritical(env, obj, NULL); \
57 JNU_ThrowInternalError(env, "Unable to get array"); \
60 #define RELEASECRITICAL(bytes, env, obj, mode) { \
61 (*env)->ReleasePrimitiveArrayCritical(env, obj, bytes, mode); \
71 Java_java_nio_Bits_copyFromShortArray(JNIEnv *env, jobject this, jobject src, argument
88 GETCRITICAL(bytes, env, src);
97 RELEASECRITICAL(bytes, env, sr
106 Java_java_nio_Bits_copyToShortArray(JNIEnv *env, jobject this, jlong srcAddr, jobject dst, jlong dstPos, jlong length) argument
141 Java_java_nio_Bits_copyFromIntArray(JNIEnv *env, jobject this, jobject src, jlong srcPos, jlong dstAddr, jlong length) argument
176 Java_java_nio_Bits_copyToIntArray(JNIEnv *env, jobject this, jlong srcAddr, jobject dst, jlong dstPos, jlong length) argument
211 Java_java_nio_Bits_copyFromLongArray(JNIEnv *env, jobject this, jobject src, jlong srcPos, jlong dstAddr, jlong length) argument
246 Java_java_nio_Bits_copyToLongArray(JNIEnv *env, jobject this, jlong srcAddr, jobject dst, jlong dstPos, jlong length) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFinallyStatement.java71 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
72 vset = reach(env, vset);
87 vset = tryExpr.checkValue(env, ctx, vset, exp);
91 vset = tryDecl.checkBlockStatement(env, ctx, vset, exp);
93 env.error(where, "invalid.decl");
101 env.error(where, "invalid.expr");
102 vset = init.check(env, ctx, vset, exp);
110 env.error(where, "invalid.method.invoke", type);
117 ClassDefinition tryClass = env.getClassDefinition(type);
118 tryEnter = tryClass.matchMethod(env, sourceClas
196 inline(Environment env, Context ctx) argument
242 costInline(int thresh, Environment env, Context ctx) argument
261 code(Environment env, Context ctx, Assembler asm) argument
[all...]
H A DIncDecExpression.java52 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
53 vset = right.checkAssignOp(env, ctx, vset, exp, this);
58 env.error(where, "invalid.arg.type", right.type, opNames[op]);
62 updater = right.getUpdater(env, ctx); // Must be called after 'checkAssignOp'.
69 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
70 return checkValue(env, ctx, vset, exp);
76 public Expression inline(Environment env, Context ctx) { argument
77 return inlineValue(env, ctx);
79 public Expression inlineValue(Environment env, Context ctx) { argument
81 right = right.inlineValue(env, ct
88 costInline(int thresh, Environment env, Context ctx) argument
150 codeIncDec(Environment env, Context ctx, Assembler asm, boolean inc, boolean prefix, boolean valNeeded) argument
[all...]
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 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 DWhileStatement.java56 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
57 checkLabel(env, ctx);
64 cond.checkCondition(env, newctx, reach(env, vset), exp);
65 cond = convert(env, newctx, Type.tBoolean, cond);
67 vset = body.check(env, newctx, cvars.vsTrue, exp);
70 ctx.checkBackBranch(env, this, vsEntry, vset);
79 public Statement inline(Environment env, Context ctx) { argument
81 cond = cond.inlineValue(env, ctx);
83 body = body.inline(env, ct
91 costInline(int thresh, Environment env, Context ctx) argument
111 code(Environment env, Context ctx, Assembler asm) argument
[all...]
H A DUnaryExpression.java65 void selectType(Environment env, Context ctx, int tm) { argument
72 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
73 vset = right.checkValue(env, ctx, vset, exp);
76 selectType(env, ctx, tm);
78 env.error(where, "invalid.arg", opNames[op]);
144 public Expression inline(Environment env, Context ctx) { argument
145 return right.inline(env, ctx);
147 public Expression inlineValue(Environment env, Context ctx) { argument
148 right = right.inlineValue(env, ctx);
160 // env
179 costInline(int thresh, Environment env, Context ctx) argument
[all...]
/openjdk7/jdk/test/java/util/Locale/data/
H A Ddeflocale.sh38 env LC_ALL= LC_CTYPE= LC_MESSAGES= LANG=$line $1 $2 $3 $4 $5 $6 $7 $8 $9 PrintDefaultLocale
50 env LC_ALL= LC_CTYPE=$lcctype LC_MESSAGES=$lcmessages $1 $2 $3 $4 $5 $6 $7 $8 $9 PrintDefaultLocale
/openjdk7/jdk/test/javax/management/loading/LibraryLoader/jar_src/
H A DRandomGen.c9 JNIEXPORT jint JNICALL Java_UseNativeLib_getRandom(JNIEnv *env, jobject obj) { argument
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLMaskBlit.h31 void OGLMaskBlit_MaskBlit(JNIEnv *env, OGLContext *oglc,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/apt/
H A DAnnotationParser.java65 private final AnnotationProcessorEnvironment env; field in class:AnnotationParser
70 return env;
74 AnnotationParser(Set<AnnotationTypeDeclaration> atds, AnnotationProcessorEnvironment env) { argument
75 this.env = env;
76 errorListener = new ErrorReceiverImpl(env.getMessager(),env.getOptions().containsKey(Const.DEBUG_OPTION));
80 for( Map.Entry<String,String> me : env.getOptions().entrySet() ) {
103 ConfigReader configReader = new ConfigReader(env,env
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DEPollArrayWrapper.c75 Java_sun_nio_ch_EPollArrayWrapper_init(JNIEnv *env, jclass this) argument
80 Java_sun_nio_ch_EPollArrayWrapper_epollCreate(JNIEnv *env, jobject this) argument
88 JNU_ThrowIOExceptionWithLastError(env, "epoll_create failed");
94 Java_sun_nio_ch_EPollArrayWrapper_sizeofEPollEvent(JNIEnv* env, jclass this) argument
100 Java_sun_nio_ch_EPollArrayWrapper_offsetofData(JNIEnv* env, jclass this) argument
106 Java_sun_nio_ch_EPollArrayWrapper_epollCtl(JNIEnv *env, jobject this, jint epfd, argument
128 JNU_ThrowIOExceptionWithLastError(env, "epoll_ctl failed");
133 Java_sun_nio_ch_EPollArrayWrapper_epollWait(JNIEnv *env, jobject this, argument
147 JNU_ThrowIOExceptionWithLastError(env, "epoll_wait failed");
153 Java_sun_nio_ch_EPollArrayWrapper_interrupt(JNIEnv *env, jobjec argument
[all...]

Completed in 65 milliseconds

<<21222324252627282930>>