Searched refs:mode (Results 151 - 175 of 310) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributeViews.java214 final void setMode(int mode) throws IOException { argument
218 chmod(file, mode);
222 fchmod(fd, mode);
286 private static final String MODE_NAME = "mode";
338 builder.add(MODE_NAME, attrs.mode());
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESWrapCipher.java38 * Note: only <code>ECB</code> mode and <code>NoPadding</code> padding
67 * mode, i.e. "ECB" and padding scheme, i.e. "NoPadding".
74 * Sets the mode of this cipher. Only "ECB" mode is accepted for this
77 * @param mode the cipher mode
79 * @exception NoSuchAlgorithmException if the requested cipher mode
82 protected void engineSetMode(String mode) argument
84 if (!mode.equalsIgnoreCase("ECB")) {
85 throw new NoSuchAlgorithmException(mode
[all...]
H A DDESedeWrapCipher.java39 * Note: only <code>CBC</code> mode and <code>NoPadding</code> padding
76 * mode, i.e. "CBC" and padding scheme, i.e. "NoPadding".
83 * Sets the mode of this cipher. Only "CBC" mode is accepted for this
86 * @param mode the cipher mode.
88 * @exception NoSuchAlgorithmException if the requested cipher mode
91 protected void engineSetMode(String mode) argument
93 if (!mode.equalsIgnoreCase("CBC")) {
94 throw new NoSuchAlgorithmException(mode
[all...]
H A DPBECipherCore.java79 * Sets the mode of this cipher. This algorithm can only be run in CBC
80 * mode.
82 * @param mode the cipher mode
84 * @exception NoSuchAlgorithmException if the requested cipher mode is
87 void setMode(String mode) throws NoSuchAlgorithmException { argument
88 cipher.setMode(mode);
200 * @param opmode the operation mode of this cipher (this is one of
414 * no padding has been requested (only in encryption mode), and the total
452 * no padding has been requested (only in encryption mode), an
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceVisitor.java700 WebParam.Mode mode = null;
702 mode = webParam.mode();
705 if (mode != null && mode==WebParam.Mode.IN)
707 } else if (mode != null && mode!=WebParam.Mode.IN) {
750 protected int getModeParameterCount(MethodDeclaration method, WebParam.Mode mode) { argument
758 if (isEquivalentModes(mode, webParam.mode()))
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dsun_awt_X11_GtkFileDialogPeer.c210 jstring jtitle, jint mode, jstring jdir, jstring jfile,
224 if (mode == java_awt_FileDialog_SAVE) {
236 /* Set multiple selection mode, that is allowed only in OPEN action */
257 if (mode == java_awt_FileDialog_SAVE) {
209 Java_sun_awt_X11_GtkFileDialogPeer_run(JNIEnv * env, jobject jpeer, jstring jtitle, jint mode, jstring jdir, jstring jfile, jobject jfilter, jboolean multiple, int x, int y) argument
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java991 // mode: 0=before [, 1=between [...], 2=after ]
993 int lastItem = 0, lastChar = 0, mode = 0;
1000 while (mode != 2 && !chars.atEnd()) {
1037 if (mode == 1) {
1042 mode = 1;
1115 if (mode == 0) {
1118 mode = 2;
1140 if (mode == 0) {
1163 mode = 2;
1177 mode
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp88 static void print_symbol(Symbol* h, Mode mode) { argument
91 if (mode == Suffix || mode == Substring || mode == Any) {
94 if (mode != Any) {
97 if (mode == Prefix || mode == Substring) {
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Signature.java105 // mode, one of M_* below
106 private int mode; field in class:P11Signature
117 // constant for signing mode
119 // constant for verification mode
253 if (mode == M_SIGN) {
301 if (mode == M_SIGN) {
367 mode = M_VERIFY;
389 mode = M_SIGN;
428 if (mode == M_SIGN) {
472 if (mode
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c293 const char* mode = (const char*)jlong_to_ptr(modeAddress); local
296 fp = fopen(path, mode);
322 jlong pathAddress, jint oflags, jint mode)
327 RESTARTABLE(open64(path, (int)oflags, (mode_t)mode), fd);
336 jlong pathAddress, jint oflags, jint mode)
346 RESTARTABLE((*my_openat64_func)(dfd, path, (int)oflags, (mode_t)mode), fd);
472 jlong pathAddress, jint mode)
477 RESTARTABLE(chmod(path, (mode_t)mode), err);
485 jint mode)
489 RESTARTABLE(fchmod((int)filedes, (mode_t)mode), er
321 Java_sun_nio_fs_UnixNativeDispatcher_open0(JNIEnv* env, jclass this, jlong pathAddress, jint oflags, jint mode) argument
335 Java_sun_nio_fs_UnixNativeDispatcher_openat0(JNIEnv* env, jclass this, jint dfd, jlong pathAddress, jint oflags, jint mode) argument
471 Java_sun_nio_fs_UnixNativeDispatcher_chmod0(JNIEnv* env, jclass this, jlong pathAddress, jint mode) argument
484 Java_sun_nio_fs_UnixNativeDispatcher_fchmod(JNIEnv* env, jclass this, jint filedes, jint mode) argument
654 Java_sun_nio_fs_UnixNativeDispatcher_mkdir0(JNIEnv* env, jclass this, jlong pathAddress, jint mode) argument
874 Java_sun_nio_fs_UnixNativeDispatcher_mknod0(JNIEnv* env, jclass this, jlong pathAddress, jint mode, jlong dev) argument
[all...]
H A DLinuxNativeDispatcher.c158 const char* mode = (const char*)jlong_to_ptr(modeAddress); local
161 fp = setmntent(path, mode);
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DNSApplicationAWT.m324 - (NSEvent *)nextEventMatchingMask:(NSUInteger)mask untilDate:(NSDate *)expiration inMode:(NSString *)mode dequeue:(BOOL)deqFlag {
325 if (mask == DRAGMASK && [((NSString *)kCFRunLoopDefaultMode) isEqual:mode]) {
329 NSEvent *event = [super nextEventMatchingMask:mask untilDate:expiration inMode:mode dequeue: deqFlag];
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLFuncs.h50 typedef void (GLAPIENTRY *glBeginType)(GLenum mode);
68 typedef void (GLAPIENTRY *glDrawArraysType)(GLenum mode, GLint first, GLsizei count);
69 typedef void (GLAPIENTRY *glDrawBufferType)(GLenum mode);
84 typedef void (GLAPIENTRY *glHintType)(GLenum target, GLenum mode);
91 typedef void (GLAPIENTRY *glMatrixModeType)(GLenum mode);
105 typedef void (GLAPIENTRY *glReadBufferType)(GLenum mode);
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLEngine.java130 * handshake in client or server mode, and so on). Once
132 * client/server mode, see below) will be used for
322 * #setUseClientMode(boolean)} configures the mode. Once the initial
463 * @throws IllegalStateException if the client/server mode
500 * @throws IllegalStateException if the client/server mode
582 * @throws IllegalStateException if the client/server mode
618 * @throws IllegalStateException if the client/server mode
655 * @throws IllegalStateException if the client/server mode
741 * @throws IllegalStateException if the client/server mode
1037 * @throws IllegalStateException if the client/server mode
1069 setUseClientMode(boolean mode) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DFileChannel.java121 * <a name="open-mode"></a> <p> At various points this class specifies that an
131 * was created with mode <tt>"r"</tt> and will be open for reading and writing
132 * if the instance was created with mode <tt>"rw"</tt>.
134 * <a name="append-mode"></a><p> A file channel that is open for writing may be in
135 * <i>append mode</i>, for example if it was obtained from a file-output stream
139 * the second parameter. In this mode each invocation of a relative write
377 * unless the channel is in append mode, in which case the position is
391 * unless the channel is in append mode, in which case the position is
405 * unless the channel is in append mode, in which case the position is
816 * Returns a string describing this file-mapping mode
914 map(MapMode mode, long position, long size) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DSaveAsAction.java91 protected int mode() { method in class:SaveAsAction
/openjdk7/jdk/src/share/back/
H A DthreadControl.c128 jvmtiEventMode mode; member in struct:DeferredEventMode
457 addDeferredEventMode(JNIEnv *env, jvmtiEventMode mode, EventIndex ei, jthread thread) argument
468 eventMode->mode = mode;
493 jvmtiEventMode mode, EventIndex ei, jthread thread)
497 /* record single step mode */
499 node->instructionStepMode = mode;
502 (gdata->jvmti, mode, eventIndex2jvmti(ei), thread);
519 eventMode->mode, eventMode->ei, eventMode->thread);
2418 jvmtiEventMode mode; local
492 threadSetEventNotificationMode(ThreadNode *node, jvmtiEventMode mode, EventIndex ei, jthread thread) argument
2432 threadControl_setEventMode(jvmtiEventMode mode, EventIndex ei, jthread thread) argument
[all...]
/openjdk7/jdk/src/windows/native/java/io/
H A DWin32FileSystem_md.c176 int mode; local
180 mode = 4;
183 mode = 2;
188 if (access(path, mode) == 0) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp108 #define for_each_visitor_mode(mode) \
109 for (LIR_OpVisitState::OprMode mode = LIR_OpVisitState::firstMode; mode < LIR_OpVisitState::numModes; mode = (LIR_OpVisitState::OprMode)(mode + 1))
318 Interval* split_child_at_op_id(Interval* interval, int op_id, LIR_OpVisitState::OprMode mode);
583 Interval* split_child_at_op_id(int op_id, LIR_OpVisitState::OprMode mode);
585 bool split_child_covers(int op_id, LIR_OpVisitState::OprMode mode);
625 bool covers(int op_id, LIR_OpVisitState::OprMode mode) const;
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DAttributeDescriptionHelper.java104 "mode",
128 value.mode = com.sun.org.omg.CORBA.AttributeModeHelper.read (istream);
139 com.sun.org.omg.CORBA.AttributeModeHelper.write (ostream, value.mode);
/openjdk7/hotspot/src/os/posix/launcher/
H A Dlauncher.script187 # use the new pretty GDB mode if emacs -version >= 22.1
213 echo Error: Internal error, unknown launch mode \"$MODE\"
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyAssertion.java317 * @param mode compatibility mode to be used
320 boolean isCompatibleWith(final PolicyAssertion assertion, PolicyIntersector.CompatibilityMode mode) { argument
324 result = this.getNestedPolicy().getAssertionSet().isCompatibleWith(assertion.getNestedPolicy().getAssertionSet(), mode);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestRSA.java144 public static void testKat(String alg, int mode, Key key, String in, String out, boolean result) throws Exception { argument
147 c.init(mode, key);
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DSSLEngineService.java342 protected static SSLEngine createSSLEngine(boolean mode) throws Exception { argument
362 ssle.setUseClientMode(mode);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dcoding.cpp535 // mode bits
541 byte* &meta_rp, int mode,
592 if ((mode & DISABLE_RUN) != 0) {
599 int disRun = mode | DISABLE_RUN;
624 tail->init(band_rp, band_limit, NO_META, mode, defc, N2, valueSink);
626 tail->init(band_rp, band_limit, meta_rp, mode, defc, N2, valueSink);
646 if ((mode & DISABLE_POP) != 0) {
781 assert((mode & DISABLE_POP) != 0);
790 assert((mode & DISABLE_POP) != 0);
540 init(byte* &band_rp, byte* band_limit, byte* &meta_rp, int mode, coding* defc, int N, intlist* valueSink) argument

Completed in 84 milliseconds

1234567891011>>