Searched refs:completed (Results 26 - 50 of 91) sorted by relevance

1234

/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DPERSIST_STORE.java63 * @param completed the completion status
65 public PERSIST_STORE(int minor, CompletionStatus completed) { argument
66 this("", minor, completed);
74 * @param completed the completion status
76 public PERSIST_STORE(String s, int minor, CompletionStatus completed) { argument
77 super(s, minor, completed);
H A DTRANSACTION_MODE.java66 * @param completed the completion status
68 public TRANSACTION_MODE(int minor, CompletionStatus completed) { argument
69 this("", minor, completed);
77 * @param completed the completion status
79 public TRANSACTION_MODE(String s, int minor, CompletionStatus completed) { argument
80 super(s, minor, completed);
H A DTRANSACTION_REQUIRED.java63 * @param completed the completion status
65 public TRANSACTION_REQUIRED(int minor, CompletionStatus completed) { argument
66 this("", minor, completed);
74 * @param completed the completion status
76 public TRANSACTION_REQUIRED(String s, int minor, CompletionStatus completed) { argument
77 super(s, minor, completed);
H A DTRANSACTION_ROLLEDBACK.java67 * @param completed the completion status
69 public TRANSACTION_ROLLEDBACK(int minor, CompletionStatus completed) { argument
70 this("", minor, completed);
78 * @param completed the completion status
80 public TRANSACTION_ROLLEDBACK(String s, int minor, CompletionStatus completed) { argument
81 super(s, minor, completed);
H A DTRANSACTION_UNAVAILABLE.java66 * @param completed the completion status
68 public TRANSACTION_UNAVAILABLE(int minor, CompletionStatus completed) { argument
69 this("", minor, completed);
77 * @param completed the completion status
80 CompletionStatus completed) {
81 super(s, minor, completed);
79 TRANSACTION_UNAVAILABLE(String s, int minor, CompletionStatus completed) argument
H A DTRANSIENT.java66 * @param completed the completion status
68 public TRANSIENT(int minor, CompletionStatus completed) { argument
69 this("", minor, completed);
77 * @param completed the completion status
79 public TRANSIENT(String s, int minor, CompletionStatus completed) { argument
80 super(s, minor, completed);
H A DUNKNOWN.java72 * @param completed the completion status
74 public UNKNOWN(int minor, CompletionStatus completed) { argument
75 this("", minor, completed);
83 * @param completed the completion status
85 public UNKNOWN(String s, int minor, CompletionStatus completed) { argument
86 super(s, minor, completed);
H A DSystemException.java63 public CompletionStatus completed; field in class:SystemException
71 * @param completed the completion status
73 protected SystemException(String reason, int minor, CompletionStatus completed) { argument
76 this.completed = completed;
105 switch (completed.value()) {
107 result += " completed: Yes";
110 result += " completed: No";
114 result += " completed: Maybe";
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DExternalClient.java40 private boolean completed = false; field in class:ExternalClient
95 if (completed) {
97 "EXTERNAL authentication already completed");
99 completed = true;
108 return completed;
118 if (completed) {
122 "EXTERNAL authentication Not completed");
133 if (completed) {
137 "EXTERNAL authentication not completed");
144 * completed (
[all...]
H A DPlainClient.java38 private boolean completed = false; field in class:PlainClient
93 * @throw IllegalStateException if authentication already completed
96 if (completed) {
98 "PLAIN authentication already completed");
100 completed = true;
132 * Determines whether this mechanism has completed.
135 * @return true if has completed; false otherwise;
138 return completed;
148 if (completed) {
152 throw new IllegalStateException("PLAIN authentication not completed");
[all...]
H A DCramMD5Base.java44 protected boolean completed = false; field in class:CramMD5Base
62 * Determines whether this mechanism has completed.
65 * @return true if has completed; false otherwise;
68 return completed;
78 if (completed) {
83 "CRAM-MD5 authentication not completed");
93 if (completed) {
98 "CRAM-MD5 authentication not completed");
105 * completed (i.e., when <tt>isComplete()</tt> returns true); otherwise, a
109 * @exception IllegalStateException if this authentication exchange has not completed
[all...]
H A DCramMD5Client.java92 if (completed) {
94 "CRAM-MD5 authentication already completed");
119 completed = true;
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DCompletionHandler.java33 * The {@link #completed completed} method is invoked when the I/O operation
48 * Invoked when an operation has completed.
55 void completed(V result, A attachment); method in interface:CompletionHandler
/openjdk7/jdk/test/java/lang/instrument/
H A DIsModifiableClassApp.java35 if (!IsModifiableClassAgent.completed) {
H A DIsModifiableClassAgent.java39 public static boolean completed = false; field in class:IsModifiableClassAgent
87 completed = true;
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapRequest.java43 private boolean completed = false; field in class:LdapRequest
85 completed = (ber.peekByte() == LdapClient.LDAP_REP_RESULT);
118 return completed;
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DCancellable.java45 private boolean completed; field in class:Cancellable
76 if (!completed) {
83 * Returns the exception thrown by the task or null if the task completed
102 completed = true;
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantLock/
H A DTimeoutLockLoops.java76 private volatile boolean completed; field in class:TimeoutLockLoops.ReentrantLockLoop
104 if (completed)
105 throw new Error("Some thread completed instead of timing out");
134 completed = true;
H A DCancelledLockLoops.java76 private int completed; field in class:CancelledLockLoops.ReentrantLockLoop
113 c = completed;
150 ++completed;
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java52 * boolean completed = false;
55 * completed = ...; // Perform blocking I/O operation
58 * end(completed);
61 * <p> The <tt>completed</tt> argument to the {@link #end end} method tells
62 * whether or not the I/O operation actually completed, that is, whether it had
184 * @param completed
185 * <tt>true</tt> if, and only if, the I/O operation completed
195 protected final void end(boolean completed) argument
204 if (!completed && !open)
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DGroupOfOne.java50 public void completed(AsynchronousSocketChannel ch, Void att) {
96 public void completed(Void result, Void att) {
102 public void completed(Integer bytesRead, Void att) {
H A DUnbounded.java49 public void completed(AsynchronousSocketChannel ch, Void att) {
88 public void completed(Integer bytesRead, AsynchronousSocketChannel ch) {
/openjdk7/jdk/src/share/sample/nio/chatserver/
H A DClientReader.java69 public void completed(Integer result, ByteBuffer buffer) {
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Base.java67 if (!completed) {
68 throw new IllegalStateException("GSSAPI authentication not completed");
92 if (!completed) {
93 throw new IllegalStateException("GSSAPI authentication not completed");
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinTask.java122 * of detail: {@link #isDone} is true if a task completed in any way
124 * {@link #isCompletedNormally} is true if a task completed without
209 * values until completed, upon which status holds value
249 * Tries to block a worker thread until completed or timed out.
327 * exec and records status if completed, but doesn't wait for
332 boolean completed;
334 completed = exec();
339 if (completed)
349 Thread t; ForkJoinWorkerThread w; int s; boolean completed;
355 completed
[all...]

Completed in 90 milliseconds

1234