HomeSort by relevance Sort by last modified time
    Searched defs:Write (Results 76 - 100 of 374) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/content/browser/renderer_host/media/
audio_input_sync_writer.cc 47 // TODO(henrika): Combine into one method (including Write).
52 void AudioInputSyncWriter::Write(const media::AudioBus* data,
61 // This is the first time Write is called.
79 // Write audio parameters to shared memory.
  /external/chromium_org/crypto/
encryptor.cc 38 void Encryptor::Counter::Write(void* buf) {
74 counter_->Write(mask);
  /external/chromium_org/extensions/common/permissions/
settings_override_permission.cc 100 void SettingsOverrideAPIPermission::Write(IPC::Message* m) const {}
  /external/chromium_org/jingle/glue/
channel_socket_adapter.cc 64 int TransportChannelSocketAdapter::Write(
175 // Try to send the packet if there is a pending write.
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
dir_node.cc 50 Error DirNode::Write(const HandleAttr& attr,
fifo_char.cc 89 size_t FIFOChar::Write(const void* buf, size_t len) {
  /external/chromium_org/net/base/
mock_file_stream.cc 57 int MockFileStream::Write(IOBuffer* buf,
64 return FileStream::Write(buf, buf_len, wrapped_callback);
  /external/chromium_org/net/url_request/
url_fetcher_response_writer.cc 36 int URLFetcherStringWriter::Write(IOBuffer* buffer,
93 int URLFetcherFileWriter::Write(IOBuffer* buffer,
99 int result = file_stream_->Write(buffer, num_bytes,
  /external/chromium_org/ppapi/cpp/
tcp_socket.cc 126 int32_t TCPSocket::Write(const char* buffer,
130 return get_interface<PPB_TCPSocket_1_1>()->Write(
135 return get_interface<PPB_TCPSocket_1_0>()->Write(
  /external/chromium_org/ppapi/generators/
idl_outfile.py 24 # not write the output if the file already exists, and matches what will be
88 def Write(self, string):
90 raise RuntimeError('Could not write to closed file %s.' % self.filename)
125 outfile.write(outtext)
147 # Create the file and write to it
150 out.Write(item)
159 ErrOut.Log('Failed to write output %s.' % filename)
  /external/chromium_org/ppapi/proxy/
tcp_socket_private_resource.cc 85 int32_t TCPSocketPrivateResource::Write(
tcp_socket_resource.cc 98 int32_t TCPSocketResource::Write(const char* buffer,
  /external/chromium_org/ppapi/thunk/
ppb_file_io_thunk.cc 85 int32_t Write(PP_Resource file_io,
90 VLOG(4) << "PPB_FileIO::Write()";
94 return enter.SetResult(enter.object()->Write(offset,
148 &Write,
161 &Write,
ppb_tcp_socket_thunk.cc 93 int32_t Write(PP_Resource tcp_socket,
97 VLOG(4) << "PPB_TCPSocket::Write()";
101 return enter.SetResult(enter.object()->Write(buffer,
155 &Write,
168 &Write,
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSNew.py 211 # TODO(rspangler): Automatically write to disk for now; should delay until
213 self.Write()
216 def Write(self, writer=gyp.common.WriteOnDiff):
242 f.write('Microsoft Visual Studio Solution File, '
244 f.write('# %s\r\n' % self.version.Description())
253 f.write('Project("%s") = "%s", "%s", "%s"\r\n' % (
262 f.write('\tProjectSection(WebsiteProperties) = preProject\r\n'
269 f.write('\tProjectSection(SolutionItems) = preProject\r\n')
271 f.write('\t\t%s = %s\r\n' % (i, i))
272 f.write('\tEndProjectSection\r\n'
    [all...]
  /external/chromium_org/v8/src/
dateparser.cc 12 bool DateParser::DayComposer::Write(FixedArray* output) {
65 bool DateParser::TimeComposer::Write(FixedArray* output) {
93 bool DateParser::TimeZoneComposer::Write(FixedArray* output) {
  /external/chromium_org/webkit/browser/fileapi/
sandbox_file_stream_writer.cc 61 int SandboxFileStreamWriter::Write(
103 const int result = local_file_writer_->Write(
239 // Write() is not called yet, so there's nothing to flush.
  /external/lldb/tools/lldb-perf/lib/
Results.cpp 158 Results::Write (const char *out_path)
  /external/lzma/CPP/7zip/Common/
LimitedStreams.cpp 130 STDMETHODIMP CLimitedSequentialOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
149 result = _stream->Write(data, size, &size);
StreamBinder.cpp 37 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
46 STDMETHODIMP CSequentialOutStreamForBinder::Write(const void *data, UInt32 size, UInt32 *processedSize)
47 { return m_StreamBinder->Write(data, size, processedSize); }
120 HRESULT CStreamBinder::Write(const void *data, UInt32 size, UInt32 *processedSize)
  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 82 void RingBuffer::Write(const float* samples, int num_frames) {
  /external/zlib/src/contrib/delphi/
ZLib.pas 54 property OnProgress: TNotifyEvent read FOnProgress write FOnProgress;
61 TCompressionStream is write-only and strictly sequential. Reading from the
92 function Write(const Buffer; Count: Longint): Longint; override;
121 function Write(const Buffer; Count: Longint): Longint; override;
444 function TCompressionStream.Write(const Buffer; Count: Longint): Longint;
522 function TDecompressionStream.Write(const Buffer; Count: Longint): Longint;
  /art/compiler/sea_ir/code_gen/
code_gen.h 93 void Write(std::string file) {
  /art/runtime/base/unix_file/
fd_file.cc 104 int64_t FdFile::Write(const char* buf, int64_t byte_count, int64_t offset) {
139 ssize_t bytes_written = TEMP_FAILURE_RETRY(write(fd_, ptr, byte_count));
  /cts/tools/utils/cts/
tools.py 104 """Write the description as XML to the given writer."""
193 def Write(self, file_name):
194 """Write the test plan to the given file.

Completed in 674 milliseconds

1 2 34 5 6 7 8 91011>>