| /external/chromium_org/net/spdy/ |
| spdy_websocket_stream.h | 52 virtual void OnReceivedSpdyData(scoped_ptr<SpdyBuffer> buffer) = 0; 81 virtual void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) OVERRIDE;
|
| /external/chromium_org/net/tools/quic/test_tools/ |
| simple_client.h | 24 // Clears any outstanding state and sends 'size' bytes from 'buffer' to the 28 virtual ssize_t Send(const void *buffer, size_t size) = 0; 33 // Clears any outstanding state, sends 'size' bytes from 'buffer' and waits 35 virtual ssize_t SendAndWaitForResponse(const void *buffer, size_t size) = 0;
|
| /external/chromium_org/ppapi/api/dev/ |
| ppp_video_capture_dev.idl | 57 * Signals that a buffer is available for consumption by the plugin. 59 * |buffer| is the index of the buffer, in the array returned by OnDeviceInfo. 63 [in] uint32_t buffer);
|
| /external/chromium_org/ppapi/c/ |
| ppb_video_decoder.h | 104 * Decodes a bitstream buffer. Copies |size| bytes of data from the plugin's 105 * |buffer|. The plugin should wait until the decoder signals completion by 108 * In general, each bitstream buffer should contain a demuxed bitstream frame 124 * @param[in] size Buffer size in bytes. 125 * @param[in] buffer Starting address of buffer. 133 * Returns PP_ERROR_NOMEMORY if a bitstream buffer can't be created. 139 const void* buffer, 233 const void* buffer,
|
| /external/chromium_org/ppapi/cpp/ |
| file_io.cc | 91 char* buffer, 96 offset, buffer, bytes_to_read, cc.pp_completion_callback()); 99 offset, buffer, bytes_to_read, cc.pp_completion_callback()); 122 // read to a temporary buffer first and copy later to make sure the array 123 // buffer has correct size. 132 const char* buffer, 137 pp_resource(), offset, buffer, bytes_to_write, 141 pp_resource(), offset, buffer, bytes_to_write, 182 // Copy to the destination buffer owned by the callback. 183 char* buffer = static_cast<char*>(data->output.GetDataBuffer local [all...] |
| file_io.h | 99 /// The size of the buffer must be large enough to hold the specified number 104 /// This function reads into a buffer that the caller supplies. This buffer 109 /// will still try to write to your buffer even if the callback factory is 112 /// So you must ensure that your buffer outlives the FileIO resource. If you 131 /// the browser will still try to write into your buffer when the 135 /// CompletionCallbackWithOutput, where the output buffer is automatically 139 /// @param[in] buffer The buffer to hold the specified number of bytes read. 143 /// completion of Read(). <code>buffer</code> must remain valid until afte [all...] |
| /external/chromium_org/ppapi/cpp/private/ |
| tcp_socket_private.cc | 181 int32_t TCPSocketPrivate::Read(char* buffer, 186 pp_resource(), buffer, bytes_to_read, 191 pp_resource(), buffer, bytes_to_read, 196 pp_resource(), buffer, bytes_to_read, 202 int32_t TCPSocketPrivate::Write(const char* buffer, 207 pp_resource(), buffer, bytes_to_write, 212 pp_resource(), buffer, bytes_to_write, 217 pp_resource(), buffer, bytes_to_write,
|
| /external/chromium_org/ppapi/proxy/ |
| audio_buffer_resource.cc | 17 MediaStreamBuffer* buffer) 20 buffer_(buffer) { 25 CHECK(!buffer_) << "An unused (or unrecycled) buffer is destroyed."; 34 VLOG(1) << "Buffer is invalid"; 42 VLOG(1) << "Buffer is invalid"; 50 VLOG(1) << "Buffer is invalid"; 58 VLOG(1) << "Buffer is invalid"; 66 VLOG(1) << "Buffer is invalid"; 74 VLOG(1) << "Buffer is invalid"; 82 VLOG(1) << "Buffer is invalid" [all...] |
| media_stream_audio_track_resource.h | 44 PP_Resource* buffer, 46 virtual int32_t RecycleBuffer(PP_Resource buffer) OVERRIDE; 60 // Allocated buffer resources by |GetBuffer()|.
|
| tcp_socket_private_resource.h | 51 virtual int32_t Read(char* buffer, 54 virtual int32_t Write(const char* buffer,
|
| tcp_socket_resource.h | 39 virtual int32_t Read(char* buffer, 42 virtual int32_t Write(const char* buffer,
|
| video_capture_resource.h | 43 virtual int32_t ReuseBuffer(uint32_t buffer) OVERRIDE; 72 uint32_t buffer); 81 // Indicates that the i-th buffer is currently in use.
|
| video_frame_resource.cc | 16 MediaStreamBuffer* buffer) 19 buffer_(buffer) {
|
| /external/chromium_org/ppapi/tests/ |
| test_host_resolver.h | 31 char* buffer, 35 const char* buffer,
|
| test_host_resolver_private.h | 37 char* buffer, 41 const char* buffer,
|
| /external/chromium_org/rlz/lib/ |
| machine_id.cc | 56 const char* buffer = reinterpret_cast<const char*>(sid_string.c_str()); local 57 std::string sid_string_buffer(buffer, byte_count);
|
| /external/chromium_org/sdch/open-vcdiff/src/ |
| rolling_hash_test.cc | 98 static void MakeRandomBuffer(char* buffer, int buffer_size) { 100 buffer[i] = PortableRandomInRange<unsigned char>(0xFF); 105 const char *buffer) { 110 result_array[i] = hasher.Hash(&buffer[i]); 116 const char *buffer) { 120 uint32_t running_hash = hasher.Hash(buffer); 123 buffer[i], 124 buffer[i + kBlockSize]);
|
| /external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
| TextEncoder.cpp | 83 const char* buffer = result.data(); local 84 const unsigned char* unsignedBuffer = reinterpret_cast<const unsigned char*>(buffer);
|
| /external/chromium_org/third_party/WebKit/Source/modules/mediasource/ |
| MediaSource.idl | 54 [RaisesException] void removeSourceBuffer(SourceBuffer buffer);
|
| /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
| double-conversion.h | 286 // Note that DoubleToAscii null-terminates its input. So the given buffer 291 // The result should be interpreted as buffer * 10^(point-length). 297 // 'v' again. The buffer will choose the representation that is closest to 305 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2. 307 // toFixed(0.15, 2) thus returns buffer="2", point=0. 308 // The returned buffer may contain digits that would be truncated from the 315 // DoubleToAscii expects the given buffer to be big enough to hold all 317 // buffer of at least kBase10MaximalLength + 1. In all other modes the 320 // buffer is big enough. 324 char* buffer, [all...] |
| /external/chromium_org/third_party/boringssl/src/tool/ |
| client.cc | 182 uint8_t buffer[512]; local 186 n = read(0, buffer, sizeof(buffer)); 202 int ssl_ret = SSL_write(ssl, buffer, n); 219 uint8_t buffer[512]; local 220 int ssl_ret = SSL_read(ssl, buffer, sizeof(buffer)); 236 n = write(1, buffer, ssl_ret);
|
| /external/chromium_org/third_party/icu/source/samples/legacy/ |
| newcol.cpp | 25 // Very simple example code - sticks a sortkey in the buffer 27 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { 33 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
|
| /external/chromium_org/third_party/icu/source/tools/toolutil/ |
| filestrm.h | 61 T_FileStream_readLine(FileStream* fileStream, char* buffer, int32_t length); 64 T_FileStream_writeLine(FileStream* fileStream, const char* buffer);
|
| /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
| datachannelinterface.h | 37 #include "webrtc/base/buffer.h" 69 DataBuffer(const rtc::Buffer& data, bool binary) 80 rtc::Buffer data; 91 // A data buffer was successfully received. 92 virtual void OnMessage(const DataBuffer& buffer) = 0; 133 virtual bool Send(const DataBuffer& buffer) = 0;
|
| /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/ |
| mkvreader.cpp | 99 int MkvReader::Read(long long offset, long len, unsigned char* buffer) { 124 const size_t size = fread(buffer, 1, len, m_file);
|