Searched defs:available_bytes (Results 1 - 7 of 7) sorted by relevance

/external/libnfc-nci/src/nfc/llcp/
H A Dllcp_sdp.c120 UINT16 available_bytes; local
138 available_bytes = GKI_get_buf_size (llcp_cb.sdp_cb.p_snl)
145 if ( (available_bytes >= LLCP_SDREQ_MIN_LEN + name_len)
225 UINT16 available_bytes; local
243 available_bytes = GKI_get_buf_size (llcp_cb.sdp_cb.p_snl)
248 if ( (available_bytes >= 2 + LLCP_SDRES_LEN)
H A Dllcp_dlc.c867 UINT16 info_len, available_bytes; local
958 available_bytes = GKI_get_buf_size (p_last_buf) - BT_HDR_SIZE - p_last_buf->offset - p_last_buf->len;
961 if (available_bytes >= LLCP_PDU_AGF_LEN_SIZE + info_len)
H A Dllcp_link.c985 UINT16 available_bytes; local
1026 available_bytes = GKI_get_buf_size (p_last_buf) - BT_HDR_SIZE - p_last_buf->offset - p_last_buf->len;
1029 if (available_bytes >= LLCP_PDU_AGF_LEN_SIZE + ui_pdu_length)
/external/chromium_org/net/test/embedded_test_server/
H A Dhttp_request.cc153 const size_t available_bytes = buffer_.size() - buffer_position_; local
155 available_bytes,
/external/chromium_org/net/quic/congestion_control/
H A Dtcp_cubic_sender.cc238 const QuicByteCount available_bytes = local
242 return slow_start_limited || available_bytes <= max_burst;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_sender.cc901 int available_bytes = bytes; local
902 if (available_bytes > 0)
903 available_bytes -= TrySendRedundantPayloads(available_bytes);
904 if (available_bytes > 0)
905 available_bytes -= TrySendPadData(available_bytes);
906 return bytes - available_bytes;
/external/srec/srec/Recognizer/src/
H A DRecognizerImpl.c3716 size_t available_bytes; local
3726 available_bytes = CircularBufferGetAvailable(waveformBuffer->cbuffer);
3727 if (available_bytes < num_bytes)
3729 done_bytes = CircularBufferSkip(waveformBuffer->cbuffer, num_bytes - available_bytes);
3730 if (done_bytes != num_bytes - available_bytes)
3745 available_bytes = CircularBufferGetAvailable(waveformBuffer->cbuffer);
3746 if (available_bytes < num_bytes)

Completed in 3804 milliseconds