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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/http/
http_util.h 131 static int LocateStartOfStatusLine(const char* buf, int buf_len);
139 static int LocateEndOfHeaders(const char* buf, int buf_len, int i = 0);
144 // continuations of the previous line). |buf_len| indicates the position of
154 static std::string AssembleRawHeaders(const char* buf, int buf_len);
http_proxy_client_socket.cc 212 int HttpProxyClientSocket::Read(IOBuffer* buf, int buf_len,
229 return transport_->socket()->Read(buf, buf_len, callback);
232 int HttpProxyClientSocket::Write(IOBuffer* buf, int buf_len,
237 return transport_->socket()->Write(buf, buf_len, callback);
http_stream_parser.h 57 int ReadResponseBody(IOBuffer* buf, int buf_len,
  /external/chromium_org/net/socket/
tcp_socket_win.cc 483 int buf_len,
491 return DoRead(buf, buf_len, callback);
495 int buf_len,
501 DCHECK_GT(buf_len, 0);
508 write_buffer.len = buf_len;
519 if (rv > buf_len || rv < 0) {
522 LOG(ERROR) << "Detected broken LSP: Asked to write " << buf_len
544 core_->write_buffer_length_ = buf_len;
876 int TCPSocketWin::DoRead(IOBuffer* buf, int buf_len,
883 int rv = recv(socket_, buf->data(), buf_len, 0)
    [all...]
socks5_client_socket.cc 152 int SOCKS5ClientSocket::Read(IOBuffer* buf, int buf_len,
160 buf, buf_len,
170 int SOCKS5ClientSocket::Write(IOBuffer* buf, int buf_len,
178 buf, buf_len,
  /external/zlib/src/test/
minigzip.c 403 off_t buf_len; /* length of the input file */ local
408 buf_len = sb.st_size;
409 if (buf_len <= 0) return Z_ERRNO;
412 buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
416 len = gzwrite(out, (char *)buf, (unsigned)buf_len);
418 if (len != (int)buf_len) error(gzerror(out, &err));
420 munmap(buf, buf_len);
  /external/bluetooth/bluedroid/stack/gatt/
gatt_sr.c 837 UINT16 s_hdl = 0, e_hdl = 0, buf_len; local
847 buf_len = (UINT16)(sizeof(BT_HDR) + p_tcb->payload_size + L2CAP_MIN_OFFSET);
849 if ((p_msg = (BT_HDR *)GKI_getbuf(buf_len)) == NULL)
857 memset(p_msg, 0, buf_len);
862 buf_len = p_tcb->payload_size - 2;
874 reason = gatt_build_find_info_rsp(p_rcb, p_msg, &buf_len, s_hdl, e_hdl);
980 buf_len, local
1183 UINT16 buf_len = (UINT16)(sizeof(BT_HDR) + p_tcb->payload_size + L2CAP_MIN_OFFSET); local
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_response_unittest.cc 190 void WriteResponseBody(scoped_refptr<IOBuffer> io_buffer, int buf_len) {
193 expected_write_result_ = buf_len;
195 buf_len,
200 void ReadResponseBody(scoped_refptr<IOBuffer> io_buffer, int buf_len) {
203 expected_read_result_ = buf_len;
205 buf_len,
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_task_helper.cc 205 DCHECK(request.buf_len >= 0);
229 base::checked_cast<uint32>(request.buf_len),
252 CHECK_LE(base::checked_cast<int>(data.length()), request.buf_len);
mtp_device_delegate_impl_linux.h 75 net::IOBuffer* buf, int64 offset, int buf_len,
  /external/wpa_supplicant_8/src/eap_common/
eap_sake_common.c 203 * @buf_len: Number of bytes of key to generate
211 u8 *buf, size_t buf_len)
230 while (pos < buf_len) {
231 plen = buf_len - pos;
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_at.c 107 static void bta_hf_client_queue_at(tBTA_HF_CLIENT_AT_CMD cmd, const char *buf, UINT16 buf_len)
116 new_cmd->buf_len = buf_len;
118 memcpy(new_cmd->buf, buf, buf_len);
169 static void bta_hf_client_send_at(tBTA_HF_CLIENT_AT_CMD cmd, char *buf, UINT16 buf_len)
178 APPL_TRACE_DEBUG("%s %.*s", __FUNCTION__, buf_len - 1, buf);
182 PORT_WriteData(bta_hf_client_cb.scb.conn_handle, buf, buf_len, &len);
189 bta_hf_client_queue_at(cmd, buf, buf_len);
203 bta_hf_client_send_at(cur->cmd, cur->buf, cur->buf_len);
    [all...]
  /external/chromium_org/chrome/browser/devtools/
devtools_network_transaction.h 91 int buf_len,
  /external/chromium_org/chrome/browser/media_galleries/mac/
mtp_device_delegate_impl_mac.h 55 net::IOBuffer* buf, int64 offset, int buf_len,
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_delegate_impl_win.h 109 net::IOBuffer* buf, int64 offset, int buf_len,
  /external/chromium_org/net/dns/
mock_mdns_socket_factory.h 29 virtual int SendTo(IOBuffer* buf, int buf_len, const IPEndPoint& address,
  /external/chromium_org/net/quic/
quic_http_stream.h 45 int buf_len,
  /external/chromium_org/net/spdy/
spdy_http_stream.cc 120 IOBuffer* buf, int buf_len, const CompletionCallback& callback) {
125 CHECK(buf_len);
130 return response_body_queue_.Dequeue(buf->data(), buf_len);
141 user_buffer_len_ = buf_len;
spdy_http_stream.h 55 int buf_len,
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_utils.h 121 size_t buf_len,
  /external/chromium_org/net/websockets/
websocket_basic_handshake_stream.h 51 int buf_len,
  /external/libunwind/tests/
test-proc-info.c 118 size_t buf_len UNUSED,
  /external/lldb/tools/debugserver/source/MacOSX/
MachThread.cpp 608 MachThread::GetRegisterContext (void *buf, nub_size_t buf_len)
610 return m_arch_ap->GetRegisterContext(buf, buf_len);
614 MachThread::SetRegisterContext (const void *buf, nub_size_t buf_len)
616 return m_arch_ap->SetRegisterContext(buf, buf_len);
MachThreadList.cpp 186 MachThreadList::GetRegisterContext (nub_thread_t tid, void *buf, size_t buf_len)
190 return thread_sp->GetRegisterContext (buf, buf_len);
195 MachThreadList::SetRegisterContext (nub_thread_t tid, const void *buf, size_t buf_len)
199 return thread_sp->SetRegisterContext (buf, buf_len);
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 245 unsigned char *buf, size_t *buf_len,
249 unsigned char *buf, size_t *buf_len);
258 static int scard_parse_fsp_templ(unsigned char *buf, size_t buf_len,
269 end = pos + buf_len;
782 unsigned char *buf, size_t *buf_len,
850 rlen = *buf_len;
853 *buf_len = resp[1] < rlen ? resp[1] : rlen;
863 unsigned char *buf, size_t *buf_len)
865 return _scard_select_file(scard, file_id, buf, buf_len,
    [all...]

Completed in 733 milliseconds

1 2 3 4 5 6 7 8 91011>>