HomeSort by relevance Sort by last modified time
    Searched full:writer (Results 1076 - 1100 of 2093) sorted by null

<<41424344454647484950>>

  /frameworks/base/core/java/android/view/
ViewRootImpl.java     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_pyio.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_pyio.py     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java 19 * <p>This class does not impose a reader or writer preference
28 * indefinitely postpone one or more reader or writer threads, but
35 * is released, either the longest-waiting single writer thread will
37 * waiting longer than all waiting writer threads, that group will be
42 * writer thread. The thread will not acquire the read lock until
43 * after the oldest currently waiting writer thread has acquired and
44 * released the write lock. Of course, if a waiting writer abandons
65 * <p>Additionally, a writer can acquire the read lock, but not
144 * more reader threads than writer threads, and entail operations with
230 * The lower one representing the exclusive (writer) lock hold count
    [all...]
  /prebuilts/tools/common/m2/internal/jdom/jdom/1.0/
jdom-1.0.jar 
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 623 // a WriteTransaction has a writer tag describing which body of code is doing
646 // writer lock, negotiated by the ReadTransaction and WriteTransaction
650 // All methods which require the reader/writer lock to be held either
657 // To prevent deadlock, the reader writer transaction lock must always
    [all...]
  /external/chromium_org/tools/telemetry/third_party/png/
png.py 57 Pure Python PNG Reader/Writer
70 A good place to start is the :class:`Reader` and :class:`Writer` classes.
156 :meth:`Writer.write_packed` method. It isn't usually a convenient
191 __all__ = ['Image', 'Reader', 'Writer', 'write_chunks', 'from_array']
273 """Check a palette argument (to the :class:`Writer` class) for validity.
316 class Writer:
457 # ``Writer(x, y, **info)`` works, where `info` is a dictionary
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 845 MCObjectWriter *Writer;
959 /// Emit the section contents using the given object writer.
999 MCObjectWriter &getWriter() const { return *Writer; }
1004 /// \p Writer is used for custom object writer (as the MCJIT does),
1070 // factored so that the streamer has direct access to the .o writer, it can
    [all...]
  /frameworks/base/test-runner/src/android/test/
InstrumentationTestRunner.java 547 PrintStream writer = new PrintStream(byteArrayOutputStream); local
549 StringResultPrinter resultPrinter = new StringResultPrinter(writer);
560 writer.println(String.format("Test run aborted due to unexpected exception: %s",
562 t.printStackTrace(writer);
572 writer.close();
654 public StringResultPrinter(PrintStream writer) {
655 super(writer);
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 95 PrintWriter writer = new PrintWriter(output); local
105 writer.println("GET https://" + host + path + " HTTP/1.1\r");
106 writer.println("Host: " + host + "\r");
107 writer.println("Connection: " +
110 writer.println("\r");
111 writer.flush();
170 writer.close();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
SerializedScriptValue.cpp 270 // Writer is responsible for serializing primitive types and storing
272 class Writer {
273 WTF_MAKE_NONCOPYABLE(Writer);
275 explicit Writer(v8::Isolate* isolate)
660 // If the writer is at odd position in the buffer, then one of
711 Serializer(Writer& writer, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, BlobDataHandleMap& blobDataHandles, v8::TryCatch& tryCatch, v8::Isolate* isolate)
712 : m_writer(writer)
    [all...]
  /external/robolectric/lib/main/
json-20080701.jar 
javassist-3.14.0-GA.jar 
  /external/libnfc-nxp/src/
phDal4Nfc.h 233 *<br><br>. Initializing read and writer threads.
279 *<br><br>.Terminates Reader and writer tasks.
321 * This interface enables writer thread in case their is no write requests pending and returns
322 * sucessfully.Once writer thread completes write operation, it notifies upper layer using callback
324 * \note writer thread notifies upper layer callback notified using windows messaging mechanism
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_io.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_io.py     [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.cc 81 class Writer : public Task {
83 Writer(Value* bookmarks,
421 new Writer(codec.Encode(profile_->GetBookmarkModel()),
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
drive.cc 14 #include "json/writer.h"
238 Json::FastWriter writer; local
239 std::string metadata = writer.write(value);
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 403 DocumentWriter* writer = loader.activeDocumentLoader()->beginWriting("image/svg+xml", "UTF-8"); local
404 writer->addData(data()->data(), data()->size());
405 loader.activeDocumentLoader()->endWriting(writer);
  /external/chromium_org/third_party/leveldatabase/src/db/
version_set.h 28 namespace log { class Writer; }
291 Status WriteSnapshot(log::Writer* log);
308 log::Writer* descriptor_log_;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
testutils.cc 136 size_t count, bool rtcp, uint32 rtp_ssrc, RtpDumpWriter* writer) {
137 if (!writer || count > GetTestPacketCount()) return false;
151 result &= (talk_base::SR_SUCCESS == writer->WritePacket(dump_packet));
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 76 ** * See the last two paragraphs under "The Writer Thread" for
81 ** There are three mutex used by the system: the "writer" mutex,
84 ** * It is illegal to block on the writer mutex when any other mutex
90 ** i.e. mutex's must be grabbed in the order "writer", "queue", "lock".
105 ** the mutex and signal the writer thread to wake up in case it happens
126 ** The writer thread:
129 ** a single writer thread running at a time.
131 ** Inside the writer thread is a loop that works like this:
512 ** writer thread after that point.
530 ** to an AsyncWrite structure allocated using sqlite3_malloc(). The writer
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_server.c 53 ** never be blocked by a writer and writers will not be
54 ** blocked by readers. There can still only be a single writer
56 ** that writer. This is a huge increase in concurrency.
  /external/chromium_org/tools/gn/
command_desc.cc 182 // Templatized writer for writing out different config value types.
208 DescValueWriter<T> writer; local
229 ConfigValuesToStream(iter.cur(), getter, writer, out);
  /external/libmtp/examples/
sendtr.c 58 fprintf(stderr, "-t <title> -a <artist> -A <Album artist> -w <writer or composer>\n");
223 pcomposer = prompt("Writer or Composer", composer, 80, 0);
290 printf("Writer or Composer: %s\n", pcomposer);

Completed in 950 milliseconds

<<41424344454647484950>>