Searched defs:num_bytes (Results 51 - 75 of 200) sorted by relevance

12345678

/external/chromium_org/ppapi/cpp/
H A Dudp_socket.cc73 int32_t num_bytes,
77 pp_resource(), buffer, num_bytes, callback.output(),
84 int32_t num_bytes,
89 pp_resource(), buffer, num_bytes, addr.pp_resource(),
71 RecvFrom( char* buffer, int32_t num_bytes, const CompletionCallbackWithOutput<NetAddress>& callback) argument
83 SendTo(const char* buffer, int32_t num_bytes, const NetAddress& addr, const CompletionCallback& callback) argument
/external/chromium_org/ppapi/proxy/
H A Dudp_socket_private_resource.cc60 int32_t num_bytes,
62 return RecvFromImpl(buffer, num_bytes, NULL, callback);
72 int32_t num_bytes,
75 return SendToImpl(buffer, num_bytes, addr, callback);
58 RecvFrom( char* buffer, int32_t num_bytes, scoped_refptr<TrackedCallback> callback) argument
70 SendTo( const char* buffer, int32_t num_bytes, const PP_NetAddress_Private* addr, scoped_refptr<TrackedCallback> callback) argument
H A Dudp_socket_resource.cc56 int32_t num_bytes,
59 return RecvFromImpl(buffer, num_bytes, addr, callback);
63 int32_t num_bytes,
70 return SendToImpl(buffer, num_bytes, &enter.object()->GetNetAddressPrivate(),
55 RecvFrom(char* buffer, int32_t num_bytes, PP_Resource* addr, scoped_refptr<TrackedCallback> callback) argument
62 SendTo(const char* buffer, int32_t num_bytes, PP_Resource addr, scoped_refptr<TrackedCallback> callback) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_udp_socket_private_thunk.cc61 int32_t num_bytes,
70 return enter.SetResult(enter.object()->RecvFrom(buffer, num_bytes,
84 int32_t num_bytes,
90 return enter.SetResult(enter.object()->SendTo(buffer, num_bytes, addr,
59 RecvFrom(PP_Resource udp_socket, char* buffer, int32_t num_bytes, PP_CompletionCallback callback) argument
82 SendTo(PP_Resource udp_socket, const char* buffer, int32_t num_bytes, const PP_NetAddress_Private* addr, PP_CompletionCallback callback) argument
H A Dppb_udp_socket_thunk.cc54 int32_t num_bytes,
62 num_bytes,
69 int32_t num_bytes,
77 num_bytes,
52 RecvFrom(PP_Resource udp_socket, char* buffer, int32_t num_bytes, PP_Resource* addr, struct PP_CompletionCallback callback) argument
67 SendTo(PP_Resource udp_socket, const char* buffer, int32_t num_bytes, PP_Resource addr, struct PP_CompletionCallback callback) argument
/external/chromium_org/remoting/host/linux/
H A Daudio_pipe_reader_unittest.cc61 void WaitForInput(int num_bytes) { argument
63 stop_at_position_ = read_data_.size() + num_bytes;
/external/chromium_org/third_party/libjpeg_turbo/
H A Djdatasrc.c162 skip_input_data (j_decompress_ptr cinfo, long num_bytes) argument
170 if (num_bytes > 0) {
171 while (num_bytes > (long) src->bytes_in_buffer) {
172 num_bytes -= (long) src->bytes_in_buffer;
178 src->next_input_byte += (size_t) num_bytes;
179 src->bytes_in_buffer -= (size_t) num_bytes;
/external/chromium_org/third_party/skia/src/images/
H A DSkJpegUtility.cpp68 static void sk_skip_input_data(j_decompress_ptr cinfo, long num_bytes) { argument
71 if (num_bytes > (long)src->bytes_in_buffer) {
72 size_t bytesToSkip = num_bytes - src->bytes_in_buffer;
88 src->next_input_byte += num_bytes;
89 src->bytes_in_buffer -= num_bytes;
/external/libnfc-nci/src/adaptation/
H A Dlibmain.c42 extern void *nfa_mem_co_alloc(UINT32 num_bytes) argument
44 return malloc(num_bytes);
/external/libnfc-nci/src/nfc/tags/
H A Drw_main.c77 void rw_main_update_tx_stats (UINT32 num_bytes, BOOLEAN is_retry) argument
79 rw_cb.stats.bytes_sent+=num_bytes;
137 void rw_main_update_rx_stats (UINT32 num_bytes) argument
139 rw_cb.stats.bytes_received+=num_bytes;
/external/skia/src/images/
H A DSkJpegUtility.cpp68 static void sk_skip_input_data(j_decompress_ptr cinfo, long num_bytes) { argument
71 if (num_bytes > (long)src->bytes_in_buffer) {
72 size_t bytesToSkip = num_bytes - src->bytes_in_buffer;
88 src->next_input_byte += num_bytes;
89 src->bytes_in_buffer -= num_bytes;
/external/srec/srec/EventLog/src/
H A DEventLog.c146 ESR_ReturnCode SR_EventLogAudioWrite(SR_EventLog* self, void* buffer, size_t num_bytes) argument
153 return self->audioWrite(self, buffer, num_bytes);
/external/valgrind/main/none/tests/s390x/
H A Dcu24.c98 uint64_t num_bytes = dst_len - result.len1; local
101 if (num_bytes % 4 != 0)
104 for (i = 0; i < num_bytes / 4; i++) {
H A Dcu24_1.c98 uint64_t num_bytes = dst_len - result.len1; local
101 if (num_bytes % 4 != 0)
104 for (i = 0; i < num_bytes / 4; i++) {
/external/chromium_org/components/search_provider_logos/
H A Dlogo_cache_unittest.cc45 base::RefCountedString* CreateExampleImage(size_t num_bytes) { argument
48 str.resize(num_bytes);
49 for (size_t i = 0; i < num_bytes; ++i)
/external/chromium_org/content/renderer/media/
H A Drtc_data_channel_handler.cc171 void RtcDataChannelHandler::RecordMessageSent(size_t num_bytes) { argument
186 num_bytes,
190 num_bytes,
/external/chromium_org/device/serial/
H A Ddata_sender.cc21 // Invoked to report that |num_bytes| of data have been sent. Subtracts the
22 // number of bytes that were part of this send from |num_bytes|. Returns
25 bool ReportBytesSent(uint32_t* num_bytes);
27 // Invoked to report that |num_bytes| of data have been sent and then an
29 // part of this send from |num_bytes|. If this send was not completed before
32 uint32_t ReportBytesSentAndError(uint32_t* num_bytes, int32_t error);
43 // Invoked to update |bytes_acked_| and |num_bytes|.
44 void ReportBytesSentInternal(uint32_t* num_bytes);
228 bool DataSender::PendingSend::ReportBytesSent(uint32_t* num_bytes) { argument
229 ReportBytesSentInternal(num_bytes);
238 ReportBytesSentAndError(uint32_t* num_bytes, int32_t error) argument
270 ReportBytesSentInternal(uint32_t* num_bytes) argument
[all...]
H A Ddata_source_sender.cc20 // Asynchronously fills |data| with up to |num_bytes| of data. Following this,
22 void GetData(void* data, uint32_t num_bytes);
133 uint32_t num_bytes = std::numeric_limits<uint32_t>::max(); local
135 handle_.get(), &data, &num_bytes, MOJO_WRITE_DATA_FLAG_NONE);
140 pending_send_->GetData(static_cast<char*>(data), num_bytes); local
184 void DataSourceSender::PendingSend::GetData(void* data, uint32_t num_bytes) { argument
188 new Buffer(sender_, this, static_cast<char*>(data), num_bytes)));
/external/chromium_org/extensions/browser/api/cast_channel/
H A Dcast_framer.cc113 scoped_ptr<CastMessage> MessageFramer::Ingest(size_t num_bytes, argument
125 CHECK_LE(num_bytes, BytesRequested());
126 message_bytes_received_ += num_bytes;
/external/chromium_org/mojo/bindings/js/
H A Dcore.cc94 static_cast<uint32_t>(buffer.num_bytes()),
110 uint32_t num_bytes = 0; local
113 handle.value(), NULL, &num_bytes, NULL, &num_handles, flags);
121 v8::ArrayBuffer::New(args.isolate(), num_bytes);
126 CHECK(buffer.num_bytes() == num_bytes);
130 &num_bytes,
136 CHECK(buffer.num_bytes() == num_bytes);
189 uint32_t num_bytes local
201 uint32_t num_bytes = 0; local
[all...]
/external/chromium_org/mojo/public/cpp/system/
H A Ddata_pipe.h69 uint32_t* num_bytes,
71 return MojoWriteData(data_pipe_producer.value(), elements, num_bytes, flags);
89 uint32_t* num_bytes,
91 return MojoReadData(data_pipe_consumer.value(), elements, num_bytes, flags);
67 WriteDataRaw(DataPipeProducerHandle data_pipe_producer, const void* elements, uint32_t* num_bytes, MojoWriteDataFlags flags) argument
87 ReadDataRaw(DataPipeConsumerHandle data_pipe_consumer, void* elements, uint32_t* num_bytes, MojoReadDataFlags flags) argument
/external/chromium_org/mojo/services/html_viewer/
H A Dwebsockethandle_impl.cc94 uint32_t num_bytes) OVERRIDE {
95 read_queue_->Read(num_bytes,
98 fin, type, num_bytes));
126 uint32_t num_bytes,
132 num_bytes);
207 uint32_t num_bytes,
209 web_socket_->Send(fin, ConvertTo<WebSocket::MessageType>(type), num_bytes);
124 DidReadFromReceiveStream(bool fin, WebSocket::MessageType type, uint32_t num_bytes, const char* data) argument
204 DidWriteToSendStream( bool fin, WebSocketHandle::MessageType type, uint32_t num_bytes, const char* data) argument
/external/chromium_org/mojo/system/
H A Dcore_unittest.cc54 uint32_t num_bytes = 0; local
58 MakeUserPointer(&num_bytes),
852 uint32_t num_bytes; local
882 num_bytes = kBufferSize;
887 MakeUserPointer(&num_bytes),
891 EXPECT_EQ(kHelloSize, num_bytes);
936 num_bytes = kBufferSize;
941 MakeUserPointer(&num_bytes),
945 EXPECT_EQ(kHelloSize, num_bytes);
967 num_bytes
1071 uint32_t num_bytes = 2u; local
1208 uint32_t num_bytes; local
[all...]
H A Ddata_pipe.h54 UserPointer<uint32_t> num_bytes,
72 // This does not validate its arguments, except to check that |*num_bytes| is
75 UserPointer<uint32_t> num_bytes,
77 MojoResult ConsumerDiscardData(UserPointer<uint32_t> num_bytes,
79 MojoResult ConsumerQueryData(UserPointer<uint32_t> num_bytes);
101 // |num_bytes.Get()| will be a nonzero multiple of |element_num_bytes_|.
104 UserPointer<uint32_t> num_bytes,
118 // |*num_bytes| will be a nonzero multiple of |element_num_bytes_|.
121 UserPointer<uint32_t> num_bytes,
125 UserPointer<uint32_t> num_bytes,
162 set_producer_two_phase_max_num_bytes_written_no_lock( uint32_t num_bytes) argument
167 set_consumer_two_phase_max_num_bytes_read_no_lock(uint32_t num_bytes) argument
[all...]
H A Ddata_pipe_consumer_dispatcher.cc55 UserPointer<uint32_t> num_bytes,
66 num_bytes, (flags & MOJO_READ_DATA_FLAG_ALL_OR_NONE));
73 return data_pipe_->ConsumerQueryData(num_bytes);
77 elements, num_bytes, (flags & MOJO_READ_DATA_FLAG_ALL_OR_NONE));
53 ReadDataImplNoLock( UserPointer<void> elements, UserPointer<uint32_t> num_bytes, MojoReadDataFlags flags) argument

Completed in 7147 milliseconds

12345678