Searched refs:free (Results 1 - 25 of 34) sorted by relevance

12

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DAllocatedNativeObject.java5 * This code is free software; you can redistribute it and/or modify it
59 synchronized void free() { method in class:AllocatedNativeObject
H A DPollArrayWrapper.java5 * This code is free software; you can redistribute it and/or modify it
67 void free() { method in class:PollArrayWrapper
68 pollArray.free();
109 pollArray.free();
H A DIOVecWrapper.java5 * This code is free software; you can redistribute it and/or modify it
77 obj.free();
99 wrapper.vecArray.free();
H A DUtil.java6 * This code is free software; you can redistribute it and/or modify it
163 // buffer from the cache and free it.
166 free(buf);
189 free(buf);
204 free(buf);
211 private static void free(ByteBuffer buf) { method in class:Util
H A DAbstractPollSelectorImpl.java5 * This code is free software; you can redistribute it and/or modify it
101 pollWrapper.free();
/libcore/luni/src/main/native/
H A Djava_lang_StringToReal.cpp284 free(x);
286 free(y);
287 free(D);
288 free(D2);
432 free(x);
433 free(y);
434 free(D);
435 free(D2);
440 free(x);
441 free(
[all...]
/libcore/ojluni/src/main/java/java/sql/
H A DBlob.java5 * This code is free software; you can redistribute it and/or modify it
270 * it holds. The object is invalid once the <code>free</code>
273 * After <code>free</code> has been called, any attempt to invoke a
274 * method other than <code>free</code> will result in a <code>SQLException</code>
275 * being thrown. If <code>free</code> is called multiple times, the subsequent
276 * calls to <code>free</code> are treated as a no-op.
285 void free() throws SQLException; method in interface:Blob
H A DArray.java5 * This code is free software; you can redistribute it and/or modify it
349 * it holds. The object is invalid once the <code>free</code>
352 * After <code>free</code> has been called, any attempt to invoke a
353 * method other than <code>free</code> will result in a <code>SQLException</code>
354 * being thrown. If <code>free</code> is called multiple times, the subsequent
355 * calls to <code>free</code> are treated as a no-op.
364 void free() throws SQLException; method in interface:Array
H A DClob.java5 * This code is free software; you can redistribute it and/or modify it
313 * that it holds. The object is invalid once the <code>free</code> method
316 * After <code>free</code> has been called, any attempt to invoke a
317 * method other than <code>free</code> will result in a <code>SQLException</code>
318 * being thrown. If <code>free</code> is called multiple times, the subsequent
319 * calls to <code>free</code> are treated as a no-op.
328 void free() throws SQLException; method in interface:Clob
H A DSQLXML.java5 * This code is free software; you can redistribute it and/or modify it
173 * The state moves from readable to not readable once free() or any of the
177 * The state moves from writable to not writeable once free() or any of the
198 * After <code>free</code> has been called, any attempt to invoke a
199 * method other than <code>free</code> will result in a <code>SQLException</code>
200 * being thrown. If <code>free</code> is called multiple times, the subsequent
201 * calls to <code>free</code> are treated as a no-op.
207 void free() throws SQLException; method in interface:SQLXML
/libcore/luni/src/test/native/
H A Dlibcore_io_Memory_test.cpp55 free(dst);
56 free(src);
95 free(src);
121 free(dst);
/libcore/ojluni/src/main/native/
H A DMappedByteBuffer.c5 * This code is free software; you can redistribute it and/or modify it
61 free(vec);
71 free(vec);
H A DSocketInputStream.c5 * This code is free software; you can redistribute it and/or modify it
113 free(bufP);
151 free(bufP);
H A DSocketOutputStream.c5 * This code is free software; you can redistribute it and/or modify it
118 free(bufP);
127 free(bufP);
H A Dzip_util.c5 * This code is free software; you can redistribute it and/or modify it
231 free(zip->name);
232 free(zip);
243 /* First free any cached jzentry */
246 free(zip->name);
256 free(zip->cencache.data);
259 free(zip->comment);
261 free(zip);
339 free(zip->comment);
495 /* No free entrie
[all...]
H A DServerSocketChannelImpl.c5 * This code is free software; you can redistribute it and/or modify it
119 free((void *)sa);
130 free((void *)sa);
H A Dio_util.c5 * This code is free software; you can redistribute it and/or modify it
125 free(buf);
210 free(buf);
H A Djava_util_zip_Deflater.c5 * This code is free software; you can redistribute it and/or modify it
81 free(strm);
85 free(strm);
94 free(strm);
239 free((z_stream *)jlong_to_ptr(addr));
H A Djava_util_zip_Inflater.c5 * This code is free software; you can redistribute it and/or modify it
75 free(strm);
86 free(strm);
200 free(jlong_to_ptr(addr));
H A Dio_util_md.c5 * This code is free software; you can redistribute it and/or modify it
57 free(chars);
H A DUNIXProcess_md.c5 * This code is free software; you can redistribute it and/or modify it
508 free(errmsg);
937 free(c->clone_stack);
954 free(c->argv);
955 free(c->envv);
956 free(c);
H A DUnixFileSystem_md.c5 * This code is free software; you can redistribute it and/or modify it
346 free(ptr);
361 free(ptr);
/libcore/ojluni/src/main/java/java/util/concurrent/locks/
H A DReentrantLock.java4 * This code is free software; you can redistribute it and/or modify it
153 boolean free = false;
155 free = true;
159 return free;
361 * @return {@code true} if the lock was free and was acquired by the
434 * @return {@code true} if the lock was free and was acquired by the
H A DReentrantReadWriteLock.java4 * This code is free software; you can redistribute it and/or modify it
77 * in the queue with the write lock free, then those readers will be
81 * will block unless both the read lock and write lock are free (which
375 boolean free = exclusiveCount(nextc) == 0;
376 if (free)
379 return free;
440 // both read and write locks are now free.
1033 * @return {@code true} if the lock was free and was acquired
1112 * @return {@code true} if the lock was free and was acquired
/libcore/luni/src/main/java/java/nio/
H A DNioUtils.java49 dbb.memoryRef.free();

Completed in 1095 milliseconds

12