HomeSort by relevance Sort by last modified time
    Searched defs:writers (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/Support/
RWMutex.h 89 unsigned readers, writers; member in class:llvm::sys::SmartRWMutex
91 explicit SmartRWMutex() : RWMutexImpl(), readers(0), writers(0) { }
120 assert(writers == 0 && "Writer lock already acquired!");
121 ++writers;
131 assert(writers == 1 && "Writer lock not acquired before release!");
132 --writers;
  /external/chromium_org/mojo/public/c/system/tests/
core_perftest.cc 172 std::vector<MessagePipeWriterThread*> writers; local
174 writers.push_back(new MessagePipeWriterThread(h0_, num_bytes));
186 writers[i]->Start();
193 // Close both handles to make writers and readers stop immediately.
201 writers[i]->Join();
211 num_writes += writers[i]->num_writes();
212 delete writers[i];
214 writers.clear();
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
vp8_multi_resolution_encoder.c 53 VpxVideoWriter *writers[kNumEncoders]; local
179 if (!(writers[i] = vpx_video_writer_open(argv[i+4], kContainerIVF, &info)))
249 vpx_video_writer_write_frame(writers[i], pkt[i]->data.frame.buf,
294 vpx_video_writer_close(writers[i]);
  /external/chromium_org/mojo/system/
message_pipe_dispatcher_unittest.cc 678 // Make writers.
679 ScopedVector<WriterThread> writers; local
681 writers.push_back(
692 // Start writers.
694 writers[i]->Start();
  /external/chromium_org/tools/grit/grit/
test_suite_all.py 44 import grit.format.policy_templates.writers.adm_writer_unittest namespace
45 import grit.format.policy_templates.writers.adml_writer_unittest namespace
46 import grit.format.policy_templates.writers.admx_writer_unittest namespace
47 import grit.format.policy_templates.writers.doc_writer_unittest namespace
48 import grit.format.policy_templates.writers.ios_plist_writer_unittest namespace
49 import grit.format.policy_templates.writers.json_writer_unittest namespace
50 import grit.format.policy_templates.writers.plist_strings_writer_unittest namespace
51 import grit.format.policy_templates.writers.plist_writer_unittest namespace
52 import grit.format.policy_templates.writers.reg_writer_unittest namespace
53 import grit.format.policy_templates.writers.template_writer_unittes namespace
54 import grit.format.policy_templates.writers.xml_writer_base_unittest namespace
    [all...]

Completed in 146 milliseconds