HomeSort by relevance Sort by last modified time
    Searched refs:buf_len (Results 26 - 50 of 415) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/tools/quic/
quic_default_packet_writer.cc 20 size_t buf_len,
25 fd_, buffer, buf_len, self_address, peer_address);
quic_packet_writer_wrapper.cc 21 size_t buf_len,
24 return writer_->WritePacket(buffer, buf_len, self_address, peer_address);
quic_socket_utils.h 43 // Reads buf_len from the socket. If reading is successful, returns bytes
54 size_t buf_len,
59 // Writes buf_len to the socket. If writing is successful, sets the result's
65 size_t buf_len,
quic_default_packet_writer.h 26 size_t buf_len,
quic_packet_writer_wrapper.h 28 size_t buf_len,
  /external/chromium_org/net/udp/
datagram_server_socket.h 28 // |buf_len| is the maximum amount of data to read.
40 int buf_len,
46 // |buf_len| is the number of bytes to send
54 int buf_len,
udp_client_socket.cc 26 int buf_len,
28 return socket_.Read(buf, buf_len, callback);
32 int buf_len,
34 return socket_.Write(buf, buf_len, callback);
udp_socket_win.h 58 int Read(IOBuffer* buf, int buf_len, const CompletionCallback& callback);
63 int Write(IOBuffer* buf, int buf_len, const CompletionCallback& callback);
67 // |buf_len| is the maximum amount of data to read.
79 int buf_len,
85 // |buf_len| is the number of bytes to send
93 int buf_len,
196 int buf_len,
201 int InternalRecvFrom(IOBuffer* buf, int buf_len, IPEndPoint* address);
202 int InternalSendTo(IOBuffer* buf, int buf_len, const IPEndPoint* address);
udp_client_socket.h 28 virtual int Read(IOBuffer* buf, int buf_len,
30 virtual int Write(IOBuffer* buf, int buf_len,
udp_server_socket.cc 27 int buf_len,
30 return socket_.RecvFrom(buf, buf_len, address, callback);
34 int buf_len,
37 return socket_.SendTo(buf, buf_len, address, callback);
  /external/chromium_org/net/disk_cache/memory/
mem_entry_impl.cc 186 int MemEntryImpl::ReadData(int index, int offset, IOBuffer* buf, int buf_len,
191 CreateNetLogReadWriteDataCallback(index, offset, buf_len, false));
194 int result = InternalReadData(index, offset, buf, buf_len);
204 int MemEntryImpl::WriteData(int index, int offset, IOBuffer* buf, int buf_len,
209 CreateNetLogReadWriteDataCallback(index, offset, buf_len, truncate));
212 int result = InternalWriteData(index, offset, buf, buf_len, truncate);
222 int MemEntryImpl::ReadSparseData(int64 offset, IOBuffer* buf, int buf_len,
227 CreateNetLogSparseOperationCallback(offset, buf_len));
229 int result = InternalReadSparseData(offset, buf, buf_len);
235 int MemEntryImpl::WriteSparseData(int64 offset, IOBuffer* buf, int buf_len,
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_peap_common.c 17 u8 *buf, size_t buf_len)
60 extra[0] = buf_len & 0xff;
69 while (pos < buf_len) {
71 plen = buf_len - pos;
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
bio_enc.c 78 int buf_len; member in struct:enc_struct
116 ctx->buf_len=0;
154 if (ctx->buf_len > 0)
156 i=ctx->buf_len-ctx->buf_off;
163 if (ctx->buf_len == ctx->buf_off)
165 ctx->buf_len=0;
189 &(ctx->buf_len));
202 (unsigned char *)ctx->buf,&ctx->buf_len,
211 if(ctx->buf_len == 0) continue;
214 if (ctx->buf_len <= outl
    [all...]
  /external/openssl/crypto/evp/
bio_enc.c 78 int buf_len; member in struct:enc_struct
116 ctx->buf_len=0;
154 if (ctx->buf_len > 0)
156 i=ctx->buf_len-ctx->buf_off;
163 if (ctx->buf_len == ctx->buf_off)
165 ctx->buf_len=0;
189 &(ctx->buf_len));
202 (unsigned char *)ctx->buf,&ctx->buf_len,
211 if(ctx->buf_len == 0) continue;
214 if (ctx->buf_len <= outl
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
entry_impl_v3.cc 525 int EntryImplV3::ReadData(int index, int offset, IOBuffer* buf, int buf_len,
528 return ReadDataImpl(index, offset, buf, buf_len, callback);
535 if (offset >= entry_size || offset < 0 || !buf_len)
538 if (buf_len < 0)
544 background_queue_->ReadData(this, index, offset, buf, buf_len, callback);
548 int EntryImpl::ReadDataImpl(int index, int offset, IOBuffer* buf, int buf_len,
553 CreateNetLogReadWriteDataCallback(index, offset, buf_len, false));
556 int result = InternalReadData(index, offset, buf, buf_len, callback);
566 int EntryImplV3::WriteData(int index, int offset, IOBuffer* buf, int buf_len,
569 return WriteDataImpl(index, offset, buf, buf_len, callback, truncate)
776 DVLOG(2) << "Read from " << index << " at " << offset << " : " << buf_len; local
862 DVLOG(2) << "Write to " << index << " at " << offset << " : " << buf_len; local
    [all...]
entry_impl_v3.h 86 virtual int ReadData(int index, int offset, IOBuffer* buf, int buf_len,
88 virtual int WriteData(int index, int offset, IOBuffer* buf, int buf_len,
91 virtual int ReadSparseData(int64 offset, IOBuffer* buf, int buf_len,
93 virtual int WriteSparseData(int64 offset, IOBuffer* buf, int buf_len,
112 int buf_len, const CompletionCallback& callback);
113 int InternalWriteData(int index, int offset, IOBuffer* buf, int buf_len,
135 // Prepares the target file or buffer for a write of buf_len bytes at the
137 bool PrepareTarget(int index, int offset, int buf_len, bool truncate);
141 bool HandleTruncation(int index, int offset, int buf_len);
152 // Makes sure that the internal buffer can handle the a write of |buf_len|
    [all...]
entry_impl.h 45 int ReadDataImpl(int index, int offset, IOBuffer* buf, int buf_len,
47 int WriteDataImpl(int index, int offset, IOBuffer* buf, int buf_len,
49 int ReadSparseDataImpl(int64 offset, IOBuffer* buf, int buf_len,
51 int WriteSparseDataImpl(int64 offset, IOBuffer* buf, int buf_len,
156 virtual int ReadData(int index, int offset, IOBuffer* buf, int buf_len,
158 virtual int WriteData(int index, int offset, IOBuffer* buf, int buf_len,
161 virtual int ReadSparseData(int64 offset, IOBuffer* buf, int buf_len,
163 virtual int WriteSparseData(int64 offset, IOBuffer* buf, int buf_len,
182 int buf_len, const CompletionCallback& callback);
183 int InternalWriteData(int index, int offset, IOBuffer* buf, int buf_len,
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
mtp_file_stream_reader.cc 45 int buf_len,
58 buf_len,
82 int MTPFileStreamReader::Read(net::IOBuffer* buf, int buf_len,
94 if (current_offset_ == 0 && buf_len >= net::kMaxBytesToSniff) {
98 header_buf_len = buf_len;
108 make_scoped_refptr(buf), buf_len, callback),
113 ReadBytes(url_, buf, current_offset_, buf_len,
141 net::IOBuffer* buf, int buf_len,
163 ReadBytes(url_, buf, current_offset_, buf_len,
  /external/chromium_org/net/base/
file_stream.h 76 // asynchronously. Up to buf_len bytes will be copied into buf. (In
95 virtual int Read(IOBuffer* buf, int buf_len,
99 // asynchronously. Up to buf_len bytes will be written from buf. (In
120 virtual int Write(IOBuffer* buf, int buf_len,
file_stream_context_posix.cc 66 int buf_len,
74 base::Bind(&Context::ReadFileImpl, base::Unretained(this), buf, buf_len),
85 int buf_len,
93 base::Bind(&Context::WriteFileImpl, base::Unretained(this), buf, buf_len),
123 int buf_len) {
126 static_cast<size_t>(buf_len)));
135 int buf_len) {
137 buf_len));
  /external/wpa_supplicant_8/src/crypto/
sha1.h 19 const u8 *data, size_t data_len, u8 *buf, size_t buf_len);
21 const u8 *seed, size_t seed_len, u8 *buf, size_t buf_len);
  /external/chromium_org/net/ftp/
ftp_transaction.h 63 int buf_len,
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
bio_ber.c 104 int buf_len; member in struct:bio_ber_struct
174 n=ctx->buf_len-j;
180 ctx->buf_len-j;
185 i=BER_BUF_SIZE-ctx->buf_len;
188 i=BIO_read(bio->next_bio,&(ctx->buf[ctx->buf_len]),i);
195 ctx->buf_len+=i;
198 max=ctx->buf_len;
204 if ((ctx->buf_len < BER_BUF_SIZE) &&
282 n=ctx->buf_len-ctx->buf_off;
303 (unsigned char *)ctx->buf,&ctx->buf_len,
    [all...]
  /external/openssl/crypto/pkcs7/
bio_ber.c 104 int buf_len; member in struct:bio_ber_struct
174 n=ctx->buf_len-j;
180 ctx->buf_len-j;
185 i=BER_BUF_SIZE-ctx->buf_len;
188 i=BIO_read(bio->next_bio,&(ctx->buf[ctx->buf_len]),i);
195 ctx->buf_len+=i;
198 max=ctx->buf_len;
204 if ((ctx->buf_len < BER_BUF_SIZE) &&
282 n=ctx->buf_len-ctx->buf_off;
303 (unsigned char *)ctx->buf,&ctx->buf_len,
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
mschapv2.h 26 const u8 *buf, size_t buf_len);

Completed in 581 milliseconds

12 3 4 5 6 7 8 91011>>