Searched refs:release (Results 1 - 25 of 33) sorted by relevance

12

/libcore/luni/src/main/java/android/system/
H A DStructUtsname.java32 /** The OS release, such as "2.6.35-27-generic". */
33 public final String release; field in class:StructUtsname
44 public StructUtsname(String sysname, String nodename, String release, String version, String machine) { argument
47 this.release = release;
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileLockImpl.java50 public synchronized void release() throws IOException { method in class:FileLockImpl
56 ((FileChannelImpl)ch).release(this);
H A DFileDispatcher.java46 abstract void release(FileDescriptor fd, long pos, long size) method in class:FileDispatcher
H A DPollArrayWrapper.java65 void release(int i) { method in class:PollArrayWrapper
H A DPollSelectorImpl.java99 pollWrapper.release(0);
H A DAbstractPollSelectorImpl.java177 pollWrapper.release(i);
181 pollWrapper.release(i);
H A DDevPollSelectorImpl.java144 pollWrapper.release(fd0);
173 pollWrapper.release(fd);
H A DFileDispatcherImpl.java102 void release(FileDescriptor fd, long pos, long size) throws IOException { method in class:FileDispatcherImpl
H A DDevPollArrayWrapper.java123 // Used by release and updateRegistrations to track whether a file
200 void release(int fd) { method in class:DevPollArrayWrapper
/libcore/ojluni/src/main/java/java/nio/channels/
H A DFileLock.java39 * is released by invoking the {@link #release release} method, by closing the
258 public abstract void release() throws IOException; method in class:FileLock
261 * This method invokes the {@link #release} method. It was added
268 release();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DFileChannelLockingTest.java108 flock.release();
141 flock1.release();
153 flock1.release();
154 flock2.release();
186 tmpLock.release();
188 // Acquire another valid lock -- and don't release it yet
203 adjacentLock.release();
206 lock.release();
H A DFileLockTest.java51 public void release() throws IOException { method in class:FileLockTest.MockFileLock
165 fileLock.release();
170 * @tests java.nio.channels.FileLock#release()
180 fileLock.release();
186 // release after release
190 fileLock.release();
193 fileLock.release();
H A DFileChannelTest.java150 fileLock.release();
670 fileLock.release();
671 // After release file lock can be obtained again.
676 fileLock.release();
874 fileLock.release();
875 // after release file lock can be obtained again.
950 fileLock.release();
952 // After release file lock can be obtained again.
957 fileLock.release();
962 fileLock.release();
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DSemaphoreTest.java258 pleaseInterrupt.release();
290 pleaseInterrupt.release();
299 pleaseInterrupt.release();
312 s.release(2);
336 lock.release();
359 lock.release();
385 lock.release();
399 s.release(10);
407 * release(-N) throws IllegalArgumentException
414 s.release(
[all...]
H A DAbstractQueuedLongSynchronizerTest.java82 public void release() { method in class:AbstractQueuedLongSynchronizerTest.Mutex
83 release(LOCKED);
194 sync.release();
288 sync.release();
299 sync.release();
319 sync.release();
357 sync.release();
379 sync.release();
401 sync.release();
429 sync.release();
[all...]
H A DAbstractQueuedSynchronizerTest.java86 public void release() { method in class:AbstractQueuedSynchronizerTest.Mutex
87 release(LOCKED);
197 sync.release();
291 sync.release();
302 sync.release();
322 sync.release();
360 sync.release();
382 sync.release();
404 sync.release();
432 sync.release();
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DSemaphore.java15 * available, and then takes it. Each {@link #release} adds a permit,
35 * available.release();
115 * #acquire(int) acquire} and {@link #release(int) release} multiple
125 * a "release" method such as {@code release()}
271 * <li>Some other thread invokes the {@link #release} method for this
301 * some other thread invokes the {@link #release} method for this
356 * <li>Some other thread invokes the {@link #release} method for this
402 public void release() { method in class:Semaphore
588 public void release(int permits) { method in class:Semaphore
[all...]
/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DStampedLock.java17 * represent failure to acquire access. Lock release and conversion
25 * in method {@link #unlockWrite} to release the lock. Untimed and
32 * used in method {@link #unlockRead} to release the lock. Untimed
196 * but without it, the lock becomes highly unfair.) Method release
514 release(h);
534 release(h);
561 release(h);
569 release(h);
645 release(h);
683 release(
981 private void release(WNode h) { method in class:StampedLock
[all...]
H A DReentrantLock.java423 * Attempts to release this lock.
434 sync.release(1);
/libcore/luni/src/main/native/
H A DZipUtilities.cpp64 mDict.reset(dictionaryBytes.release());
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldThreadTest.java317 sem.release();
335 sem.release();
357 sem.release();
/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DOldFileChannelTest.java130 fileLock.release();
241 lock.release();
245 lock.release();
252 lockOne.release();
255 lockTwo.release();
256 lockOne.release();
/libcore/ojluni/src/main/native/
H A Dnet_util_md.c225 sysinfo.release[3] = '\0';
226 if (strcmp(sysinfo.release, "2.2") == 0) {
242 sysinfo.release[3] = '\0';
243 if (strcmp(sysinfo.release, "2.4") == 0) {
H A Djava_props_md.c462 sprops.os_version = strdup(name.release);
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatParser.java552 release(this.pointer);
563 private native void release(long 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

Completed in 789 milliseconds

12