Searched defs:mode (Results 1 - 25 of 209) sorted by relevance

123456789

/openjdk7/jdk/src/windows/native/sun/io/
H A DWin32ErrorMode.c35 (JNIEnv *env, jclass thisClass, jlong mode)
37 return (jlong)SetErrorMode((UINT)mode);
34 Java_sun_io_Win32ErrorMode_setErrorMode(JNIEnv *env, jclass thisClass, jlong mode) argument
/openjdk7/jdk/src/share/classes/sun/text/
H A DCollatorUtilities.java32 public static int toLegacyMode(NormalizerBase.Mode mode) { argument
33 // find the index of the legacy mode in the table;
38 if (legacyModeMap[legacyMode] == mode) {
45 public static NormalizerBase.Mode toNormalizerMode(int mode) { argument
49 normalizerMode = legacyModeMap[mode];
/openjdk7/langtools/test/tools/javac/enum/
H A DUserValue.java39 private UserValue(int mode) { argument
40 this.oldMode = mode;
/openjdk7/jdk/src/windows/classes/sun/io/
H A DWin32ErrorMode.java29 * Used to set the Windows error mode at VM initialization time.
31 * The error mode decides whether the system will handle specific types of serious errors
72 long mode = setErrorMode(0);
73 mode |= SEM_FAILCRITICALERRORS;
74 setErrorMode(mode);
80 private static native long setErrorMode(long mode); argument
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DTestCipherMode.java28 * Cipher object is initialized with a wrong mode, e.g. WRAP_MODE
66 private void checkMode(int mode) throws Exception { argument
67 c.init(mode, key);
69 switch (mode) {
/openjdk7/jdk/test/sun/security/mscapi/
H A DKeyStoreCompatibilityMode.java37 private static boolean mode; field in class:KeyStoreCompatibilityMode
53 mode = false;
55 mode = true;
104 if (!mode && keyStore != null && password != null) {
110 // When mode=false the exception is expected.
111 if (mode) {
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DParameterDescription.java44 public com.sun.org.omg.CORBA.ParameterMode mode = null; field in class:ParameterDescription
57 mode = _mode;
H A DAttributeDescription.java42 public com.sun.org.omg.CORBA.AttributeMode mode = null; field in class:AttributeDescription
55 mode = _mode;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DSelectBytecodesAction.java47 protected int mode() { method in class:SelectBytecodesAction
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DDiffGraphAction.java43 protected int mode() { method in class:DiffGraphAction
H A DSaveAsAction.java91 protected int mode() { method in class:SaveAsAction
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/
H A DMoveFilterDownAction.java47 protected int mode() { method in class:MoveFilterDownAction
H A DMoveFilterUpAction.java47 protected int mode() { method in class:MoveFilterUpAction
H A DRemoveFilterAction.java62 protected int mode() { method in class:RemoveFilterAction
/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DDOMImplementationLS.java77 * @param mode The <code>mode</code> argument is either
79 * <code>mode</code> is <code>MODE_SYNCHRONOUS</code> then the
81 * mode, if it's <code>MODE_ASYNCHRONOUS</code> then the
83 * mode.
100 * depending on the value of the <code>mode</code> argument.
110 * NOT_SUPPORTED_ERR: Raised if the requested mode or schema type is
113 public LSParser createLSParser(short mode, argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DWildcardLoader.java49 private final WildcardMode mode; field in class:WildcardLoader
51 public WildcardLoader(DomHandler dom, WildcardMode mode) { argument
53 this.mode = mode;
59 if(mode.allowTypedObject) {
64 if(mode.allowDom)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DSOAPSEIModel.java91 private void fillHeaders(Iterator<ParameterImpl> params, Set<QName> headers, Mode mode) { argument
94 ParameterBinding binding = (mode == Mode.IN)?param.getInBinding():param.getOutBinding();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DProviderEndpointModel.java62 * In which mode does this provider operate?
64 @NotNull final Service.Mode mode; field in class:ProviderEndpointModel
79 mode = getServiceMode(implementorClass);
98 if (mode == Service.Mode.PAYLOAD && datatype!=Source.class) {
113 ServiceMode mode = c.getAnnotation(ServiceMode.class);
114 return (mode == null) ? Service.Mode.PAYLOAD : mode.value();
/openjdk7/jdk/test/com/sun/crypto/provider/KeyAgreement/
H A DDHKeyAgreement2.java59 String mode = "USE_SKIP_DH_PARAMS";
71 mode = "GENERATE_DH_PARAMS";
74 keyAgree.run(mode);
78 private void run(String mode) throws Exception { argument
82 if (mode.equals("GENERATE_DH_PARAMS")) {
/openjdk7/jdk/test/java/nio/file/attribute/PosixFileAttributeView/
H A DBasic.java44 * Use view to update permission to the given mode and check that the
47 static void testPermissions(Path file, String mode) throws IOException { argument
48 System.out.format("change mode: %s\n", mode);
49 Set<PosixFilePermission> perms = PosixFilePermissions.fromString(mode);
88 * Create file with given mode and check that the file is created with a
89 * mode that is not less secure
92 String mode)
95 Set<PosixFilePermission> requested = PosixFilePermissions.fromString(mode);
98 System.out.format("create file with mode
91 createWithPermissions(Path file, String mode) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstatd/
H A DRemoteHostImpl.java63 public RemoteVm attachVm(int lvmid, String mode) argument
70 if (mode != null) {
71 sb.append("?mode=" + mode);
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/remote/
H A DRemoteHost.java56 RemoteVm attachVm(int vmid, String mode) throws RemoteException, argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUUDecoder.java47 * begin [mode] [filename]
87 * Represents UNIX(tm) mode bits. Generally three octal digits
96 public int mode; field in class:UUDecoder
194 mode = Integer.parseInt(r.substring(4,7));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DJInfo.java31 mode = m;
55 switch (mode) {
88 int mode = -1;
93 new JInfo(mode).usage();
95 mode = MODE_BOTH;
102 mode = MODE_FLAGS;
104 mode = MODE_SYSPROPS;
107 new JInfo(mode).usage();
109 mode = MODE_BOTH;
112 if (mode !
143 private int mode; field in class:JInfo
[all...]
/openjdk7/jaxp/src/org/xml/sax/ext/
H A DDeclHandler.java113 * @param mode A string representing the attribute defaulting mode
123 String mode,
120 attributeDecl(String eName, String aName, String type, String mode, String value) argument

Completed in 43 milliseconds

123456789