Searched refs:env (Results 526 - 550 of 1317) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotifBufferSizePropertyNameTest.java59 Map env = new HashMap(2);
62 env.put("jmx.remote.x.notification.buffer.size", String.valueOf(bufferSize));
63 test(env);
66 env.remove("jmx.remote.x.notification.buffer.size");
67 env.put("jmx.remote.x.buffer.size", String.valueOf(bufferSize));
68 test(env);
71 env.put("jmx.remote.x.notification.buffer.size", String.valueOf(bufferSize));
72 env.put("jmx.remote.x.buffer.size", String.valueOf(bufferSize*6));
73 test(env);
88 private static void test(Map env) throw argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DMain.java474 BatchEnvironment env = BatchEnvironment.create(out,
481 env.sourcePath.toString(),
482 env.binaryPath.toString()));
485 env.flags |= flags;
486 env.majorVersion = majorVersion;
487 env.minorVersion = minorVersion;
489 env.covFile = covFile;
491 env.setCharacterEncoding(encoding);
498 env.error(0, "warn.class.is.deprecated", "sun.tools.javac.Main");
505 env
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapReferralException.java97 * The referral context is created using <tt>env</tt> as its environment
102 * getReferralContext(env, null);
108 * @param env The possibly null environment to use when retrieving the
117 getReferralContext(Hashtable<?,?> env) argument
148 * @param env The possibly null environment properties to use when
157 getReferralContext(Hashtable<?,?> env, argument
/openjdk7/jdk/src/macosx/native/sun/font/
H A DAWTFont.h41 + (NSFont *) nsFontForJavaFont:(jobject)javaFont env:(JNIEnv *)env;
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DPropertiesUtilities.h32 + (NSString *) javaSystemPropertyForKey:(NSString *)key withEnv:(JNIEnv *)env;
/openjdk7/jdk/src/share/back/
H A DeventHelper.c129 static void saveEventInfoRefs(JNIEnv *env, EventInfo *evinfo);
130 static void tossEventInfoRefs(JNIEnv *env, EventInfo *evinfo);
281 writeSingleStepEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
283 (void)outStream_writeObjectRef(env, out, evinfo->thread);
288 writeBreakpointEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
290 (void)outStream_writeObjectRef(env, out, evinfo->thread);
295 writeFieldAccessEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
301 (void)outStream_writeObjectRef(env, out, evinfo->thread);
304 (void)outStream_writeObjectRef(env, out, evinfo->u.field_access.field_clazz);
306 (void)outStream_writeObjectTag(env, ou
311 writeFieldModificationEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
330 writeExceptionEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
341 writeThreadEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
347 writeMonitorEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
375 writeClassEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
398 writeVMDeathEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) argument
403 handleEventCommandSingle(JNIEnv *env, PacketOutputStream *out, EventCommandSingle *command) argument
452 handleUnloadCommandSingle(JNIEnv* env, PacketOutputStream *out, UnloadCommandSingle *command) argument
463 handleFrameEventCommandSingle(JNIEnv* env, PacketOutputStream *out, FrameEventCommandSingle *command) argument
498 handleReportEventCompositeCommand(JNIEnv *env, ReportEventCompositeCommand *recc) argument
560 handleReportInvokeDoneCommand(JNIEnv* env, ReportInvokeDoneCommand *command) argument
567 handleReportVMInitCommand(JNIEnv* env, ReportVMInitCommand *command) argument
593 handleSuspendThreadCommand(JNIEnv* env, SuspendThreadCommand *command) argument
604 handleCommand(JNIEnv *env, HelperCommand *command) argument
764 saveEventInfoRefs(JNIEnv *env, EventInfo *evinfo) argument
839 tossEventInfoRefs(JNIEnv *env, EventInfo *evinfo) argument
999 JNIEnv *env = getEnv(); local
1037 JNIEnv *env = getEnv(); local
1079 JNIEnv *env = getEnv(); local
1096 eventHelper_reportVMInit(JNIEnv *env, jbyte sessionID, jthread thread, jbyte suspendPolicy) argument
1113 JNIEnv *env = getEnv(); local
[all...]
/openjdk7/jdk/src/solaris/native/sun/net/sdp/
H A DSdpSupport.c54 static int create(JNIEnv* env) argument
70 JNU_ThrowIOException(env, "IPv6 not supported");
81 JNU_ThrowIOExceptionWithLastError(env, "socket");
89 Java_sun_net_sdp_SdpSupport_create0(JNIEnv *env, jclass cls) argument
91 return create(env);
99 Java_sun_net_sdp_SdpSupport_convert0(JNIEnv *env, jclass cls, int fd) argument
101 int s = create(env);
120 JNU_ThrowIOExceptionWithLastError(env, "dup2");
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DClassDeclarationImpl.java49 ClassDeclarationImpl(AptEnv env, ClassSymbol sym) { argument
50 super(env, sym);
62 t.tsym != env.symtab.objectType.tsym && !t.isErroneous();
63 t = env.jctypes.supertype(t)) {
78 if (sym == env.symtab.objectType.tsym) {
81 Type t = env.jctypes.supertype(sym.type);
82 return (ClassType) env.typeMaker.getType(t);
95 env.declMaker.getExecutableDeclaration(m));
H A DParameterDeclarationImpl.java49 ParameterDeclarationImpl(AptEnv env, VarSymbol sym) { argument
50 super(env, sym);
74 env == that.env;
84 return sym.owner.hashCode() + sym.name.hashCode() + env.hashCode();
91 return env.typeMaker.getType(sym.type);
/openjdk7/langtools/test/tools/apt/Compile/
H A DWarnAPF.java44 AnnotationProcessorEnvironment env; field in class:WarnAPF.WarnAP
45 WarnAP(AnnotationProcessorEnvironment env) { argument
46 this.env = env;
50 Messager messager = env.getMessager();
53 for(TypeDeclaration typeDecl : env.getSpecifiedTypeDeclarations()) {
98 AnnotationProcessorEnvironment env) {
99 return new WarnAP(env);
97 getProcessorFor(Set<AnnotationTypeDeclaration> atds, AnnotationProcessorEnvironment env) argument
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_site.h52 void site_write(JNIEnv *env, int flags, double cutoff);
54 void site_heapdump(JNIEnv *env);
/openjdk7/jdk/src/share/native/java/lang/
H A DFloat.c35 Java_java_lang_Float_intBitsToFloat(JNIEnv *env, jclass unused, jint v) argument
49 Java_java_lang_Float_floatToRawIntBits(JNIEnv *env, jclass unused, jfloat v) argument
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DUshort4444Argb.c53 jboolean RegisterUshort4444Argb(JNIEnv *env) argument
55 return RegisterPrimitives(env, Ushort4444ArgbPrimitives,
/openjdk7/jdk/src/share/classes/sun/tools/tree/
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 DForStatement.java60 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
61 checkLabel(env, ctx);
62 vset = reach(env, vset);
65 vset = init.checkBlockStatement(env, initctx, vset, exp);
72 cvars = cond.checkCondition(env, newctx, vset, exp);
73 cond = convert(env, newctx, Type.tBoolean, cond);
80 vset = body.check(env, newctx, cvars.vsTrue, exp);
83 vset = inc.check(env, newctx, vset, exp);
88 initctx.checkBackBranch(env, this, vsEntry, vset);
97 public Statement inline(Environment env, Contex argument
139 costInline(int thresh, Environment env, Context ctx) argument
159 code(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);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTView.m127 JNIEnv *env = [ThreadUtilities getJNIEnv];
128 (*env)->DeleteGlobalRef(env, m_cPlatformView);
133 JNIEnv *env = [ThreadUtilities getJNIEnvUncached];
135 JNFDeleteGlobalRef(env, fInputMethodLOCKABLE);
339 JNIEnv *env = [ThreadUtilities getJNIEnv];
364 jobject jEvent = JNFNewObject(env, jctor_NSEvent,
380 JNFCallVoidMethod(env, m_cPlatformView, jm_deliverMouseEvent, jEvent);
419 JNIEnv *env = [ThreadUtilities getJNIEnv];
423 characters = JNFNSToJavaString(env, [even
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/core/native/
H A DNativeObjectLifecycleManager.m37 (JNIEnv *env, jclass clazz, jlong ptr)
49 (JNIEnv *env, jclass clazz, jlong ptr)
61 (JNIEnv *env, jclass clazz, jlong ptr)
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A Dawt_Desktop.c98 (JNIEnv *env, jclass cls)
110 (JNIEnv *env, jobject obj, jbyteArray url_j)
119 url_c = (char*)(*env)->GetByteArrayElements(env, url_j, NULL);
122 (*env)->ReleaseByteArrayElements(env, url_j, (signed char*)url_c, 0);
97 Java_sun_awt_X11_XDesktopPeer_init(JNIEnv *env, jclass cls) argument
109 Java_sun_awt_X11_XDesktopPeer_gnome_1url_1show(JNIEnv *env, jobject obj, jbyteArray url_j) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAnnotationTypeElementDocImpl.java48 public AnnotationTypeElementDocImpl(DocEnv env, MethodSymbol sym) { argument
49 super(env, sym);
52 public AnnotationTypeElementDocImpl(DocEnv env, MethodSymbol sym, argument
54 super(env, sym, doc, tree, lineMap);
71 return env.legacyDoclet;
89 : new AnnotationValueImpl(env, sym.defaultValue);
H A DParameterImpl.java44 private final DocEnv env; field in class:ParameterImpl
51 ParameterImpl(DocEnv env, VarSymbol sym) { argument
52 this.env = env;
54 this.type = TypeMaker.getType(env, sym.type, false);
101 res[i++] = new AnnotationDescImpl(env, a);
/openjdk7/jdk/src/share/javavm/export/
H A Djawt.h92 * Java_MyCanvas_paint(JNIEnv* env, jobject canvas, jobject graphics)
103 * result = JAWT_GetAWT(env, &awt);
107 * ds = awt.GetDrawingSurface(env, canvas);
190 JNIEnv* env; member in struct:jawt_DrawingSurface
253 (JNIEnv* env, jobject target);
263 void (JNICALL *Lock)(JNIEnv* env);
268 void (JNICALL *Unlock)(JNIEnv* env);
280 jobject (JNICALL *GetComponent)(JNIEnv* env, void* platformInfo);
289 jboolean JNICALL JAWT_GetAWT(JNIEnv* env, JAWT* awt);
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DPlatform.c37 JNIEXPORT jboolean JNICALL Java_com_sun_media_sound_Platform_nIsBigEndian(JNIEnv *env, jclass clss) { argument
46 JNIEXPORT jboolean JNICALL Java_com_sun_media_sound_Platform_nIsSigned8(JNIEnv *env, jclass clss) { argument
59 JNIEXPORT jstring JNICALL Java_com_sun_media_sound_Platform_nGetExtraLibraries(JNIEnv *env, jclass clss) { argument
60 return (*env)->NewStringUTF(env, EXTRA_SOUND_JNI_LIBS);
69 (JNIEnv *env, jclass clazz, jint feature) {
68 Java_com_sun_media_sound_Platform_nGetLibraryForFeature(JNIEnv *env, jclass clazz, jint feature) argument
/openjdk7/jdk/src/windows/native/sun/net/dns/
H A DResolverConfigurationImpl.c229 Java_sun_net_dns_ResolverConfigurationImpl_init0(JNIEnv *env, jclass cls) argument
231 searchlistID = (*env)->GetStaticFieldID(env, cls, "os_searchlist",
233 nameserversID = (*env)->GetStaticFieldID(env, cls, "os_nameservers",
243 Java_sun_net_dns_ResolverConfigurationImpl_loadDNSconfig0(JNIEnv *env, jclass cls) argument
257 obj = (*env)->NewStringUTF(env, searchlist);
258 (*env)->SetStaticObjectField(env, cl
271 Java_sun_net_dns_ResolverConfigurationImpl_notifyAddrChange0(JNIEnv *env, jclass cls) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousSocketChannelImpl.c62 Java_sun_nio_ch_WindowsAsynchronousSocketChannelImpl_initIDs(JNIEnv* env, jclass this) { argument
70 JNU_ThrowIOExceptionWithLastError(env, "socket failed");
83 JNU_ThrowIOExceptionWithLastError(env, "WSAIoctl failed");
88 Java_sun_nio_ch_WindowsAsynchronousSocketChannelImpl_connect0(JNIEnv* env, jclass this, argument
98 if (NET_InetAddressToSockaddr(env, iao, port, (struct sockaddr *)&sa, &sa_len, preferIPv6) != 0) {
116 JNU_ThrowIOExceptionWithLastError(env, "ConnectEx failed");
123 Java_sun_nio_ch_WindowsAsynchronousSocketChannelImpl_updateConnectContext(JNIEnv* env, jclass this, argument
132 Java_sun_nio_ch_WindowsAsynchronousSocketChannelImpl_shutdown0(JNIEnv *env, jclass cl, argument
137 JNU_ThrowIOExceptionWithLastError(env, "shutdown failed");
143 Java_sun_nio_ch_WindowsAsynchronousSocketChannelImpl_closesocket0(JNIEnv* env, jclas argument
153 Java_sun_nio_ch_WindowsAsynchronousSocketChannelImpl_read0(JNIEnv* env, jclass this, jlong socket, jint count, jlong address, jlong ov) argument
186 Java_sun_nio_ch_WindowsAsynchronousSocketChannelImpl_write0(JNIEnv* env, jclass this, jlong socket, jint count, jlong address, jlong ov) argument
[all...]

Completed in 63 milliseconds

<<21222324252627282930>>