Searched defs:flag (Results 126 - 139 of 139) sorted by relevance

123456

/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c32 * worry about choosing the right JVM based on command line flag, jar
177 /* Values for vmdesc.flag */
187 int flag; member in struct:vmdesc
204 /* flag which if set suppresses error messages from the launcher */
333 /* Override class path if -jar flag was specified */
732 if ((knownVMs[0].flag == VM_IF_SERVER_CLASS) &&
749 while (knownVMs[jvmidx].flag == VM_ALIASED_TO) {
778 switch (knownVMs[jvmidx].flag) {
1705 if ((knownVMs[0].flag == VM_KNOWN) ||
1706 (knownVMs[0].flag
[all...]
/openjdk7/jdk/src/share/bin/
H A Djava.c125 /* Values for vmdesc.flag */
138 int flag; member in struct:vmdesc
281 /* Override class path if -jar flag was specified */
540 if ((knownVMs[0].flag == VM_IF_SERVER_CLASS) &&
555 while (knownVMs[jvmidx].flag == VM_ALIASED_TO) {
582 switch (knownVMs[jvmidx].flag) {
1486 if ((knownVMs[0].flag == VM_KNOWN) ||
1487 (knownVMs[0].flag == VM_IF_SERVER_CLASS)) {
1493 if (knownVMs[i].flag == VM_KNOWN) {
1500 if (knownVMs[i].flag
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp907 JVM_ENTRY(jboolean, jmm_SetBoolAttribute(JNIEnv *env, jmmBoolAttribute att, jboolean flag))
910 return MemoryService::set_verbose(flag != 0);
912 return ClassLoadingService::set_verbose(flag != 0);
914 return ThreadService::set_thread_monitoring_contention(flag != 0);
916 return ThreadService::set_thread_cpu_time_enabled(flag != 0);
918 return ThreadService::set_thread_allocated_memory_enabled(flag != 0);
973 // last flag entry is always NULL, so subtract 1
977 Flag* flag = &Flag::flags[i]; local
979 if (flag->is_unlocked() || flag
1619 Flag* flag = &Flag::flags[i]; variable
1643 add_global_entry(JNIEnv* env, Handle name, jmmVMGlobal *global, Flag *flag, TRAPS) argument
1740 Flag* flag = Flag::find_flag(str, strlen(str)); variable
1757 Flag* flag = &Flag::flags[i]; variable
1777 Flag* flag = Flag::find_flag(name, strlen(name)); variable
[all...]
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java729 u.flag = FLAG_DATADESCR;
1148 if ((e.flag & FLAG_DATADESCR) != 0) {
1239 if ((e.flag & FLAG_DATADESCR) != 0)
1370 e.flag = 0;
1372 e.flag |= FLAG_EFS;
1799 int flag; field in class:ZipFileSystem.Entry
1882 flag = CENFLG(cen, pos);
1956 writeShort(os, flag); // general purpose bit flag
2037 flag
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java4145 private void errorNeedArgument(String flag) { argument
4146 Object[] source = {flag};
4148 rb.getString("Command.option.flag.needs.an.argument.")).format(source));
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp941 // Add flag to _strings list indicating we should check _rep_vars
2849 // Add flag to _strings list indicating we should check _rep_vars
3627 // Add flag to _strings list indicating we should check _rep_vars
3699 // Add flag to _strings list indicating we should check _rep_vars
3757 // Add flag to _strings list indicating we should check _rep_vars
3777 // Add flag to _strings list indicating we should check _rep_vars
3779 // Add flag to _strings list indicating we should check _rep_vars
4700 char* flag = get_ident_no_preproc(); local
4704 _AD.set_preproc_def(flag, def);
4714 char* flag local
4724 parse_err(int flag, const char *fmt, ...) argument
4813 char* flag = get_ident_no_preproc(); local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp203 * When a flag is eliminated, it can be added to this list in order to
204 * continue accepting this flag on the command-line, while issuing a warning
206 * limit, we flatly refuse to admit the existence of the flag. This allows
207 * a flag to die correctly over JDK releases using HSX.
211 JDK_Version obsoleted_in; // when the flag went away
255 // Returns true if the flag is obsolete and fits into the range specified
256 // for being ignored. In the case that the flag is ignored, the 'version'
257 // value is filled in with the version number when the flag became
264 // <flag>=xxx form
265 // [-|+]<flag> for
685 Flag* flag = Flag::find_flag(name, strlen(name)); local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.cpp960 Changed to commit it according to the flag 10/29/98*/
982 // Note: we need to check this flag inside the toolkit thread to synchronize access
983 // to the flag.
1664 void AwtToolkit::SetHeapCheck(long flag) { argument
1665 if (flag) {
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java462 int flag; /* flag for LRM/RLM, before/after */ field in class:BidiBase.Point
532 * Bit flag for level input.
877 /* flag to indicate that the map has been updated */
1407 /* both variables may carry the LEVEL_OVERRIDE flag to indicate the override status */
1567 /* keep the override flag in levels[i] but adjust the flags */
1942 * param flag: one of LRM_BEFORE, LRM_AFTER, RLM_BEFORE, RLM_AFTER
1944 private void addPoint(int pos, int flag) argument
1959 point.flag = flag;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java770 * @param flag a boolean value, true if the tree is editable
775 public void setEditable(boolean flag) { argument
778 this.editable = flag;
779 firePropertyChange(EDITABLE_PROPERTY, oldValue, flag);
784 (flag ? AccessibleState.EDITABLE : null));
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp634 JvmtiEnv::SetVerboseFlag(jvmtiVerboseFlag flag, jboolean value) { argument
635 switch (flag) {
1474 // Set pending step flag for this popframe and it is cleared when next
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp533 // Java threads use ThreadStackSize which default value can be changed with the flag -Xss
567 // Finally Windows XP added a new flag 'STACK_SIZE_PARAM_IS_A_RESERVATION'
571 // flag appears to work with _beginthredex() as well.
586 // without the flag.
2752 // print a warning if UseNUMAInterleaving flag is specified on command line
2777 if (use_numa_interleaving_specified) WARN("...Ignoring UseNUMAInterleaving flag.");
2913 // print a warning if any large page related flag is specified on command line
3069 // 1) the UseLargePagesIndividualAllocation flag is set (set by default on WS2003)
3079 warning("NUMA large page allocation failed, UseLargePages flag ignored");
3092 DWORD flag local
[all...]
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h1755 jvmtiVerboseFlag flag,
2516 jvmtiError SetVerboseFlag(jvmtiVerboseFlag flag, argument
2518 return functions->SetVerboseFlag(this, flag, value);
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dlcms2.h564 cmsUInt32Number flag; member in struct:__anon859
657 // A: Floating point -- With this flag we can differentiate 16 bits as float and as int
1233 // Use this flag to prevent changes being written to destination

Completed in 436 milliseconds

123456