| /external/chromium_org/content/child/webcrypto/openssl/ |
| hmac_openssl.cc | 35 std::vector<uint8_t>* buffer) { 51 buffer->resize(hmac_expected_length); 53 vector_as_array(buffer), hmac_expected_length); 153 std::vector<uint8_t>* buffer) const OVERRIDE { 154 *buffer = SymKeyOpenSsl::Cast(key)->raw_key_data(); 159 std::vector<uint8_t>* buffer) const OVERRIDE { 172 buffer); 180 std::vector<uint8_t>* buffer) const OVERRIDE { 185 SymKeyOpenSsl::Cast(key)->raw_key_data(), hash, data, buffer);
|
| rsa_ssa_openssl.cc | 59 std::vector<uint8_t>* buffer) const OVERRIDE { 83 buffer->resize(sig_len); 84 if (!EVP_DigestSignFinal(ctx.get(), &buffer->front(), &sig_len)) 87 buffer->resize(sig_len);
|
| /external/chromium_org/content/renderer/pepper/ |
| host_array_buffer_var.h | 20 explicit HostArrayBufferVar(const blink::WebArrayBuffer& buffer); 39 // Tracks whether the data in the buffer is valid.
|
| /external/chromium_org/content/test/plugin/ |
| plugin_execute_stream_javascript.h | 26 void *buffer) OVERRIDE;
|
| /external/chromium_org/ipc/ |
| ipc_channel_reader.h | 18 // It does the common input buffer management and message dispatch, while the 42 // indicate that buffer was filled with the given number of bytes of 59 // Populates the given buffer with data from the pipe. 63 // buffer size). On READ_FAILED, the channel will be closed. 68 // buffer, or ProcessIncomingMessages to try the read again (depending 70 // asynchronously into your buffer"). 71 virtual ReadState ReadData(char* buffer, int buffer_len, int* bytes_read) = 0; 96 // We read from the pipe into this buffer. Managed by DispatchInputData, do 101 // this buffer.
|
| /external/chromium_org/jingle/glue/ |
| pseudotcp_adapter.cc | 31 int Read(net::IOBuffer* buffer, int buffer_size, 33 int Write(net::IOBuffer* buffer, int buffer_size, 48 const char* buffer, size_t len) OVERRIDE; 96 // successfully writtend data to the send buffer and waiting for the 126 int PseudoTcpAdapter::Core::Read(net::IOBuffer* buffer, int buffer_size, 133 int result = pseudo_tcp_.Recv(buffer->data(), buffer_size); 140 read_buffer_ = buffer; 150 int PseudoTcpAdapter::Core::Write(net::IOBuffer* buffer, int buffer_size, 157 int result = pseudo_tcp_.Send(buffer->data(), buffer_size); 166 write_buffer_ = buffer; [all...] |
| /external/chromium_org/media/base/ |
| audio_buffer_queue.cc | 26 // Add the buffer to the queue. Inserting into deque invalidates all 27 // iterators, so point to the first buffer. 64 // Counts how many frames are actually read from the buffer queue. 71 // |current_buffer| is valid since the first time this buffer is appended 76 scoped_refptr<AudioBuffer> buffer = *current_buffer; local 79 buffer->frame_count() - current_buffer_offset; 88 // Find the right amount to copy from the current buffer. We shall copy no 90 // than the current buffer size. 95 buffer->ReadFrames( 103 // We have read |copied| frames from the current buffer. Advance th [all...] |
| audio_decoder.h | 41 // buffer to decode. 64 // given time. Once the buffer is decoded the decoder calls |decode_cb|. 65 // |output_cb| specified in Initialize() is called for each decoded buffer, 71 // If |buffer| is an EOS buffer then the decoder must be flushed, i.e. 74 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
|
| container_names.h | 65 MEDIA_EXPORT MediaContainerName DetermineContainer(const uint8* buffer,
|
| container_names_unittest.cc | 17 #define VERIFY(buffer, name) \ 19 DetermineContainer(reinterpret_cast<const uint8*>(buffer), \ 20 sizeof(buffer))) 24 // Empty buffer. 25 char buffer[1]; // ([0] not allowed on win) local 26 VERIFY(buffer, CONTAINER_UNKNOWN); 45 // Try a large buffer all zeros. 50 // Reuse buffer, but all \n this time. 57 // Note that the comparisons need at least 12 bytes, so make sure the buffer is 106 char buffer[8192] local [all...] |
| test_helpers.cc | 181 T* buffer = local 185 buffer[is_planar ? i : ch + i * channels] = 220 scoped_refptr<DecoderBuffer> buffer = DecoderBuffer::CopyFrom( local 223 buffer->set_timestamp(timestamp); 224 buffer->set_duration(duration); 226 return buffer; 230 const scoped_refptr<DecoderBuffer>& buffer, 232 // Check if the input |buffer| matches the |config|. 233 PickleIterator pickle(Pickle(reinterpret_cast<const char*>(buffer->data()), 234 buffer->data_size())) [all...] |
| video_decoder.h | 40 // buffer to decode. 68 // Requests a |buffer| to be decoded. The status of the decoder and decoded 84 // If |buffer| is an EOS buffer then the decoder must be flushed, i.e. 88 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
|
| /external/chromium_org/media/filters/ |
| vpx_video_decoder.cc | 79 // Callback that will be called by libvpx when it needs a frame buffer. 83 // |fb| Pointer to the frame buffer to update. 88 // Callback that will be called by libvpx when the frame buffer is no longer 91 // |fb| Pointer to the frame buffer that's being released. 105 // before a buffer can be re-used. 112 // Gets the next available frame buffer for use by libvpx. 133 // Check if a free frame buffer exists. 141 // Create a new frame buffer. 145 // Resize the frame buffer if necessary. 167 // Set the frame buffer's private data to point at the external frame buffer [all...] |
| /external/chromium_org/media/formats/mp2t/ |
| es_adapter_video_unittest.cc | 69 void OnNewBuffer(scoped_refptr<StreamParserBuffer> buffer); 89 scoped_refptr<StreamParserBuffer> buffer) { 90 buffer_descriptors_ << "(" << buffer->duration().InMilliseconds() << "," 91 << (buffer->IsKeyframe() ? "Y" : "N") << ") ";
|
| /external/chromium_org/media/formats/mp4/ |
| aac.h | 52 // in the buffer. The function returns false on failure and leaves the buffer 54 bool ConvertEsdsToADTS(std::vector<uint8>* buffer) const;
|
| /external/chromium_org/media/mojo/services/ |
| mojo_demuxer_stream_impl.h | 37 // |status| and |buffer| are the standard media::ReadCB parameters. 42 const scoped_refptr<media::DecoderBuffer>& buffer);
|
| /external/chromium_org/mojo/apps/js/test/ |
| js_to_cpp_unittest.cc | 69 unsigned char buffer[100]; local 70 uint32_t buffer_size = static_cast<uint32_t>(sizeof(buffer)); 72 data_pipe_handle, buffer, &buffer_size, MOJO_READ_DATA_FLAG_NONE); 76 EXPECT_EQ(i, buffer[i]); 81 unsigned char buffer[100]; local 82 uint32_t buffer_size = static_cast<uint32_t>(sizeof(buffer)); 84 message_pipe_handle, buffer, &buffer_size, 0, 0, 0); 88 EXPECT_EQ(255 - i, buffer[i]); 165 unsigned char buffer[100]; local 166 uint32_t buffer_size = static_cast<uint32_t>(sizeof(buffer)); 176 unsigned char buffer[100]; local [all...] |
| /external/chromium_org/mojo/bindings/js/ |
| core.cc | 86 const gin::ArrayBufferView& buffer, 93 buffer.bytes(), 94 static_cast<uint32_t>(buffer.num_bytes()), 124 gin::ArrayBuffer buffer; local 125 ConvertFromV8(args.isolate(), array_buffer, &buffer); 126 CHECK(buffer.num_bytes() == num_bytes); 129 buffer.bytes(), 136 CHECK(buffer.num_bytes() == num_bytes); 141 dictionary.Set("buffer", array_buffer); 187 const gin::ArrayBufferView& buffer, 212 gin::ArrayBuffer buffer; local [all...] |
| /external/chromium_org/mojo/public/cpp/system/ |
| data_pipe.h | 75 void** buffer, 78 return MojoBeginWriteData(data_pipe_producer.value(), buffer, 95 const void** buffer, 98 return MojoBeginReadData(data_pipe_consumer.value(), buffer, buffer_num_bytes,
|
| /external/chromium_org/mojo/public/platform/native/ |
| system_thunks.h | 72 void** buffer, 82 const void** buffer, 98 void** buffer, 100 MojoResult (*UnmapBuffer)(void* buffer);
|
| /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
| mem_fs_node_test.cc | 155 char buffer[1024]; local 160 memset(buffer, 0, sizeof(buffer)); 174 EXPECT_EQ(0, file.Read(attr, buffer, sizeof(buffer), &result_bytes)); 175 EXPECT_EQ(sizeof(buffer), result_bytes); 176 EXPECT_EQ(0, memcmp(buffer, data, sizeof(buffer))); 180 EXPECT_EQ(0, file.Read(attr, buffer, sizeof(buffer), &result_bytes)) [all...] |
| /external/chromium_org/net/dns/ |
| mock_mdns_socket_factory.h | 25 MOCK_METHOD4(RecvFrom, int(IOBuffer* buffer, int size, 61 int HandleRecvNow(IOBuffer* buffer, int size, IPEndPoint* address, 64 int HandleRecvLater(IOBuffer* buffer, int size, IPEndPoint* address, 90 int RecvFromInternal(IOBuffer* buffer, int size,
|
| /external/chromium_org/net/quic/ |
| quic_default_packet_writer.h | 29 virtual WriteResult WritePacket(const char* buffer,
|
| quic_per_connection_packet_writer.h | 32 virtual WriteResult WritePacket(const char* buffer,
|
| /external/chromium_org/ppapi/api/ |
| ppb_udp_socket.idl | 36 * Specifies the total per-socket buffer space reserved for sends. Value's 40 * Note: This is only treated as a hint for the browser to set the buffer 47 * Specifies the total per-socket buffer space reserved for receives. Value's 51 * Note: This is only treated as a hint for the browser to set the buffer 123 * @param[out] buffer The buffer to store the received data on success. It 135 [out] str_t buffer, 145 * @param[in] buffer The buffer containing the data to send. 158 [in] str_t buffer, [all...] |