Searched defs:release (Results 1 - 11 of 11) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DStructUtsname.java31 /** The OS release, such as "2.6.35-27-generic". */
32 public final String release; field in class:StructUtsname
40 StructUtsname(String sysname, String nodename, String release, String version, String machine) { argument
43 this.release = release;
/libcore/include/
H A DScopedLocalRef.h44 T release() __attribute__((warn_unused_result)) { function in class:ScopedLocalRef
H A DUniquePtr.h67 T* release() __attribute__((warn_unused_result)) { function in class:UniquePtr
113 T* release() __attribute__((warn_unused_result)) { function in class:UniquePtr
173 // Does release work?
178 rawC = c.release();
201 // Does release work?
205 rawC = c.release();
/libcore/luni/src/main/java/java/nio/channels/
H A DFileLock.java43 * explicit removal of the lock, using {@code release()}, or implicitly by
63 * will release all the locks held on that file -- even if there are other
180 * if the channel is already closed when an attempt to release
185 public abstract void release() throws IOException; method in class:FileLock
/libcore/luni/src/main/java/java/util/concurrent/
H A DSemaphore.java14 * available, and then takes it. Each {@link #release} adds a permit,
34 * available.release();
114 * #acquire(int) acquire} and {@link #release(int) release} multiple
119 * a "release" method such as {@code release()}
267 * <li>Some other thread invokes the {@link #release} method for this
297 * some other thread invokes the {@link #release} method for this
352 * <li>Some other thread invokes the {@link #release} method for this
398 public void release() { method in class:Semaphore
581 public void release(int permits) { method in class:Semaphore
[all...]
/libcore/luni/src/main/java/java/nio/
H A DFileChannelImpl.java149 public void release() throws IOException { method in class:FileChannelImpl.FileLockImpl
154 ((FileChannelImpl) channel()).release(this);
182 * Non-API method to release a given lock on a file channel. Assumes that
185 public void release(FileLock lock) throws IOException { method in class:FileChannelImpl
/libcore/luni/src/main/java/libcore/net/http/
H A DHttpEngine.java68 * the response is consumed. To release the connection when it is no longer
185 * release it when it is unneeded.
480 public final void release(boolean reusable) { method in class:HttpEngine
826 release(true);
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatParser.java552 release(this.pointer);
563 private native void release(int pointer); method in class:ExpatParser
798 * Don't release our native resources. We do so explicitly in
799 * {@link #handleExternalEntity} and we don't want to release the
/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java196 * unparks upon release. Assigned during enqueuing, adjusted
414 * propagation. (Note: For exclusive mode, release just amounts
419 * Ensure that a release propagates, even if there are other
423 * ensure that upon release, propagation continues.
544 * This node has already set status asking a release
803 * signalled by a release from some other thread. This can be used
826 * Attempts to set the state to reflect a release in exclusive
829 * <p>This method is always invoked by the thread performing release.
834 * @param arg the release argument. This value is always the one
835 * passed to a release metho
1006 public final boolean release(long arg) { method in class:AbstractQueuedLongSynchronizer
[all...]
H A DAbstractQueuedSynchronizer.java57 * held with respect to the current thread, method {@link #release}
159 * release parameters, and an internal FIFO wait queue. When this does
220 * public void unlock() { sync.release(1); }
236 * acquire and release methods.
425 * unparks upon release. Assigned during enqueuing, adjusted
643 * propagation. (Note: For exclusive mode, release just amounts
648 * Ensure that a release propagates, even if there are other
652 * ensure that upon release, propagation continues.
773 * This node has already set status asking a release
1032 * signalled by a release fro
1235 public final boolean release(int arg) { method in class:AbstractQueuedSynchronizer
[all...]
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp178 X509* release(size_t i) { function in class:X509Chain
219 * without triggering a warning by not using the result of release().
222 typeof (obj.release()) _dummy __attribute__((unused)) = obj.release()
724 return static_cast<jint>(reinterpret_cast<uintptr_t>(pkey.release()));
781 return pkey.release();
878 return static_cast<jint>(reinterpret_cast<uintptr_t>(pkey.release()));
1015 return static_cast<jint>(reinterpret_cast<uintptr_t>(pkey.release()));
1074 return static_cast<jint>(reinterpret_cast<uintptr_t>(pkey.release()));
1114 return static_cast<jint>(reinterpret_cast<uintptr_t>(pkey.release()));
[all...]

Completed in 417 milliseconds