HomeSort by relevance Sort by last modified time
    Searched refs:WriteBlock (Results 1 - 25 of 29) sorted by null

1 2

  /external/pdfium/fpdfsdk/
fsdk_filewriteadapter.cpp 16 bool FSDK_FileWriteAdapter::WriteBlock(const void* data, size_t size) {
17 return fileWriteStruct_->WriteBlock(fileWriteStruct_, data, size) != 0;
21 return WriteBlock(str.unterminated_c_str(), str.GetLength());
fsdk_filewriteadapter.h 19 bool WriteBlock(const void* data, size_t size) override;
fpdfppo_embeddertest.cpp 69 writer.WriteBlock = FakeBlockWriter;
84 writer.WriteBlock = FakeBlockWriter;
  /external/pdfium/core/fxge/win32/
cpsoutput.cpp 17 bool CPSOutput::WriteBlock(const void* str, size_t len) {
35 return WriteBlock(str.unterminated_c_str(), str.GetLength());
cpsoutput.h 21 bool WriteBlock(const void* str, size_t len) override;
cfx_psrenderer.cpp 209 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
242 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
279 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
341 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
425 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
503 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
529 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
576 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
638 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp());
683 m_pStream->WriteBlock(buf.str().c_str(), buf.tellp())
    [all...]
  /external/pdfium/public/
fpdf_save.h 25 // Method: WriteBlock
40 int (*WriteBlock)(struct FPDF_FILEWRITE_* pThis,
  /external/pdfium/core/fxcrt/
fx_stream.h 40 virtual bool WriteBlock(const void* pData, size_t size) = 0;
61 bool WriteBlock(const void* pData, size_t size) override;
65 virtual bool WriteBlock(const void* pData,
102 bool WriteBlock(const void* buffer,
105 bool WriteBlock(const void* buffer, size_t size) override;
fx_stream.cpp 35 bool WriteBlock(const void* buffer,
78 bool IFX_SeekableWriteStream::WriteBlock(const void* pData, size_t size) {
79 return WriteBlock(pData, GetSize(), size);
94 bool IFX_SeekableStream::WriteBlock(const void* buffer, size_t size) {
95 return WriteBlock(buffer, GetSize(), size);
99 return WriteBlock(str.unterminated_c_str(), str.GetLength());
cfx_seekablemultistream.h 30 bool WriteBlock(const void* pData, FX_FILESIZE offset, size_t size) override;
cfx_memorystream.h 28 bool WriteBlock(const void* buffer, FX_FILESIZE offset, size_t size) override;
cfx_seekablemultistream.cpp 80 bool CFX_SeekableMultiStream::WriteBlock(const void* pData,
cfx_memorystream.cpp 103 bool CFX_MemoryStream::WriteBlock(const void* buffer,
cfx_seekablestreamproxy.cpp 276 if (!m_pStream->WriteBlock(str.unterminated_c_str(), m_iPosition,
  /external/tensorflow/tensorflow/core/lib/io/
table_builder.h 84 void WriteBlock(BlockBuilder* block, BlockHandle* handle);
table_builder.cc 158 WriteBlock(&r->data_block, &r->pending_handle);
165 void TableBuilder::WriteBlock(BlockBuilder* block, BlockHandle* handle) {
234 WriteBlock(&meta_index_block, &metaindex_block_handle);
246 WriteBlock(&r->index_block, &index_block_handle);
  /device/linaro/bootloader/edk2/ArmPkg/Library/SemihostLib/
SemihostLib.c 121 SEMIHOST_FILE_READ_WRITE_BLOCK WriteBlock;
127 WriteBlock.Handle = FileHandle;
128 WriteBlock.Buffer = Buffer;
129 WriteBlock.Length = *Length;
131 *Length = Semihost_SYS_WRITE(&WriteBlock);
SemihostPrivate.h 101 IN OUT SEMIHOST_FILE_READ_WRITE_BLOCK *WriteBlock
164 #define Semihost_SYS_WRITE(WriteBlock) _Semihost_SYS_WRITE(0x05, WriteBlock)
188 #define Semihost_SYS_WRITE(WriteBlock) GccSemihostCall(0x05, (UINTN)(WriteBlock))
206 #define Semihost_SYS_WRITE(WriteBlock) (0)
  /external/tensorflow/tensorflow/contrib/ignite/kernels/igfs/
igfs_writable_file.cc 37 return client_->WriteBlock(resource_id_, (uint8_t *)data.data(), data.size());
igfs_client.h 72 Status WriteBlock(int64_t stream_id, const uint8_t *data, int32_t len) {
  /external/pdfium/core/fpdfapi/edit/
cpdf_creator.cpp 33 bool WriteBlock(const void* pBuf, size_t size) override;
69 return backing_file_->WriteBlock(buffer_.data(), nRemaining);
72 bool CFX_FileBufferArchive::WriteBlock(const void* pBuf, size_t size) {
99 return WriteBlock(&byte, 1);
105 return WriteBlock(buf, strlen(buf));
109 return WriteBlock(str.raw_str(), str.GetLength());
183 !m_Archive->WriteBlock(encryptor.GetData(), encryptor.GetSize())) {
248 !m_Archive->WriteBlock(encryptor.GetData(), encryptor.GetSize()) ||
447 if (!m_Archive->WriteBlock(buffer.data(), block_size))
560 if (!m_Archive->WriteBlock(str.c_str(), str.GetLength())
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_stream.cpp 160 return archive->WriteBlock(pAcc->GetData(), pAcc->GetSize()) &&
  /art/libelffile/dwarf/
debug_info_entry_writer.h 95 void WriteBlock(Attribute attrib, const uint8_t* ptr, size_t num_bytes) {
  /external/pdfium/fpdfsdk/fpdfxfa/
cpdfxfa_docenvironment.cpp 440 fileWrite->WriteBlock(content.c_str(), fileWrite->GetSize(),
496 fileWrite->WriteBlock(content.c_str(), fileWrite->GetSize(),
501 fileWrite->WriteBlock(pAcc->GetData(), fileWrite->GetSize(),
732 fileStream->WriteBlock(kContent, 0, strlen(kContent));
    [all...]
  /external/libaom/libaom/third_party/libwebm/mkvmuxer/
mkvmuxerutil.cc 35 uint64 WriteBlock(IMkvWriter* writer, const Frame* const frame, int64 timecode,
567 WriteBlock(writer, frame, relative_timecode,

Completed in 615 milliseconds

1 2