Searched refs:bytes_len (Results 1 – 5 of 5) sorted by relevance
/external/chromium/net/base/ |
D | upload_data.cc | 36 int bytes_len, in SetToChunk() argument 39 bytes_.insert(bytes_.end(), bytes, bytes + bytes_len); in SetToChunk() 129 void UploadData::AppendBytes(const char* bytes, int bytes_len) { in AppendBytes() argument 131 if (bytes_len > 0) { in AppendBytes() 133 elements_.back().SetToBytes(bytes, bytes_len); in AppendBytes() 159 int bytes_len, in AppendChunk() argument 163 elements_.back().SetToChunk(bytes, bytes_len, is_last_chunk); in AppendChunk()
|
D | upload_data.h | 67 void SetToBytes(const char* bytes, int bytes_len) { in SetToBytes() argument 69 bytes_.assign(bytes, bytes + bytes_len); in SetToBytes() 99 void SetToChunk(const char* bytes, int bytes_len, bool is_last_chunk); 145 void AppendBytes(const char* bytes, int bytes_len); 157 void AppendChunk(const char* bytes, int bytes_len, bool is_last_chunk);
|
/external/chromium/net/url_request/ |
D | url_request.cc | 165 void URLRequest::AppendBytesToUpload(const char* bytes, int bytes_len) { in AppendBytesToUpload() argument 166 DCHECK(bytes_len > 0 && bytes); in AppendBytesToUpload() 169 upload_->AppendBytes(bytes, bytes_len); in AppendBytesToUpload() 193 int bytes_len, in AppendChunkToUpload() argument 197 DCHECK_GT(bytes_len, 0); in AppendChunkToUpload() 198 upload_->AppendChunk(bytes, bytes_len, is_last_chunk); in AppendChunkToUpload()
|
D | url_request.h | 324 void AppendBytesToUpload(const char* bytes, int bytes_len); // takes a copy 342 int bytes_len,
|
/external/tcpdump/ |
D | print-radius.c | 67 #define PRINT_HEX(bytes_len, ptr_data) \ argument 68 while(bytes_len) \ 72 bytes_len--; \
|