| /external/chromium_org/android_webview/browser/net/ |
| input_stream_reader.h | 42 virtual int ReadRawData(net::IOBuffer* buffer, int buffer_size);
|
| /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/ |
| VideoTestWebServer.java | 80 byte[] buffer = new byte[buflen]; 81 int len = in.read(buffer, 0, buflen); 83 os.write(buffer, 0, len); 85 len = in.read(buffer, 0, buflen);
|
| /external/chromium_org/base/android/java/src/org/chromium/base/ |
| CommandLine.java | 121 char[] buffer = readUtf8FileFully(file, 8 * 1024); local 122 init(buffer == null ? null : tokenizeQuotedAruments(buffer)); 136 * Parse command line flags from a flat buffer, supporting double-quote enclosed strings 137 * containing whitespace. argv elements are derived by splitting the buffer on whitepace; 140 * @param buffer A command line in command line file format as described above. 143 public static String[] tokenizeQuotedAruments(char[] buffer) { 150 for (char c : buffer) { 229 char[] buffer = new char[(int) fileLength]; local 231 int charsRead = reader.read(buffer); [all...] |
| /external/chromium_org/base/strings/ |
| safe_sprintf.cc | 99 class Buffer { 101 // |buffer| is caller-allocated storage that SafeSPrintf() writes to. It 103 // to ensure that the buffer is at least one byte in size, so that it fits 104 // the trailing NUL that will be added by the destructor. The buffer also 106 Buffer(char* buffer, size_t size) 107 : buffer_(buffer), 127 ~Buffer() { 137 // Returns true, iff the buffer is filled all the way to |kSSizeMax-1|. The 146 // |size_|, if the caller provided an insufficiently large output buffer [all...] |
| /external/chromium_org/chrome/app/ |
| close_handle_hook_win.cc | 76 wchar_t buffer[MAX_PATH]; local 77 int rv = GetModuleFileName(module, buffer, MAX_PATH); 81 buffer[MAX_PATH - 1] = L'\0'; 82 name.assign(buffer);
|
| /external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/ |
| read_file.cc | 20 // value. Otherwise returns number of bytes written to the buffer. 22 scoped_refptr<net::IOBuffer> buffer, 38 memcpy(buffer->data() + buffer_offset, params->data.c_str(), chunk_size); 49 scoped_refptr<net::IOBuffer> buffer, 55 buffer_(buffer),
|
| /external/chromium_org/chromecast/media/cma/base/ |
| decoder_buffer_adapter.h | 24 const scoped_refptr< ::media::DecoderBuffer>& buffer);
|
| /external/chromium_org/content/child/npapi/ |
| webplugin_resource_client.h | 29 virtual void DidReceiveData(const char* buffer, int length,
|
| /external/chromium_org/content/child/webcrypto/openssl/ |
| util_openssl.h | 31 // * |buffer| where the ciphertext or plaintext is written to. 39 std::vector<uint8_t>* buffer);
|
| /external/chromium_org/device/bluetooth/test/ |
| mock_bluetooth_socket.h | 27 void(scoped_refptr<net::IOBuffer> buffer,
|
| /external/chromium_org/device/serial/ |
| serial_connection.cc | 8 #include "device/serial/buffer.h" 71 void SerialConnection::OnSendPipeReady(scoped_ptr<ReadOnlyBuffer> buffer) { 72 io_handler_->Write(buffer.Pass()); 75 void SerialConnection::OnReceivePipeReady(scoped_ptr<WritableBuffer> buffer) { 76 io_handler_->Read(buffer.Pass());
|
| /external/chromium_org/media/audio/ |
| audio_power_monitor.h | 50 // Scan more |frames| of audio data from |buffer|. It is safe to call this 52 void Scan(const AudioBus& buffer, int frames);
|
| /external/chromium_org/media/base/ |
| decoder_buffer_queue.h | 20 // Individual buffer durations are ignored when calculating the duration of the 30 // Push |buffer| to the end of the queue. If |buffer| is queued out of order 33 // It is invalid to push an end-of-stream |buffer|. 34 void Push(const scoped_refptr<DecoderBuffer>& buffer);
|
| /external/chromium_org/net/quic/ |
| quic_server_packet_writer.cc | 30 const char* buffer, 37 WriteResult result = WritePacket(buffer, buf_len, self_address, peer_address); 66 const char* buffer, 71 new StringIOBuffer(std::string(buffer, buf_len)));
|
| /external/chromium_org/net/spdy/ |
| hpack_output_stream.h | 29 // Appends the lower |bit_size| bits of |bits| to the internal buffer. 38 // Directly appends |buffer|. 39 void AppendBytes(base::StringPiece buffer); 42 // 6.1. If the internal buffer ends on a byte boundary, the prefix 46 // It is guaranteed that the internal buffer will end on a byte 50 // Swaps the interal buffer with |output|. 54 // The internal bit buffer. 57 // If 0, the buffer ends on a byte boundary. If non-zero, the buffer
|
| spdy_pinnable_buffer_piece.h | 19 // Represents a piece of consumed buffer which may (or may not) own its 20 // underlying storage. Users may "pin" the buffer at a later time to ensure 21 // a SpdyPinnableBufferPiece owns and retains storage of the buffer. 27 const char * buffer() const { function in struct:net::SpdyPinnableBufferPiece 39 // Allocates and copies the buffer to internal storage.
|
| /external/chromium_org/net/tools/quic/ |
| quic_default_packet_writer.h | 25 virtual WriteResult WritePacket(const char* buffer,
|
| quic_packet_writer_wrapper.h | 27 const char* buffer,
|
| quic_per_connection_packet_writer.h | 29 virtual WriteResult WritePacket(const char* buffer,
|
| /external/chromium_org/ppapi/api/ |
| ppb_media_stream_audio_track.idl | 33 * the plugin expects to hold on to more than one buffer at a time (e.g. to do 34 * multi-buffer processing), it should request that many more. 58 * The duration of an audio buffer in milliseconds. 82 * chosen such that inter-buffer processing time variability won't overrun all 152 * Gets the next audio buffer from the MediaStream track. 153 * If internal processing is slower than the incoming buffer rate, new buffers 156 * to free a slot for another buffer. 157 * If there are no audio data in the input buffer, 159 * <code>callback</code> will be called, when a new buffer of audio samples 164 * @param[out] buffer A <code>PP_Resource</code> corresponding t [all...] |
| /external/chromium_org/ppapi/c/dev/ |
| ppp_video_capture_dev.h | 70 * Signals that a buffer is available for consumption by the plugin. 72 * |buffer| is the index of the buffer, in the array returned by OnDeviceInfo. 76 uint32_t buffer);
|
| /external/chromium_org/ppapi/c/ |
| ppb_tcp_socket.h | 44 * Specifies the total per-socket buffer space reserved for sends. Value's 48 * Note: This is only treated as a hint for the browser to set the buffer 54 * Specifies the total per-socket buffer space reserved for receives. Value's 58 * Note: This is only treated as a hint for the browser to set the buffer 173 * @param[out] buffer The buffer to store the received data on success. It 184 char* buffer, 193 * @param[in] buffer The buffer containing the data to write. 202 const char* buffer, [all...] |
| /external/chromium_org/ppapi/cpp/dev/ |
| video_capture_client_dev.h | 29 virtual void OnBufferReady(PP_Resource video_capture, uint32_t buffer) = 0;
|
| /external/chromium_org/ppapi/cpp/ |
| udp_socket.cc | 72 char* buffer, 77 pp_resource(), buffer, num_bytes, callback.output(), 83 int32_t UDPSocket::SendTo(const char* buffer, 89 pp_resource(), buffer, num_bytes, addr.pp_resource(),
|
| /external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
| utility.cc | 45 // Message too large for our stack buffer; we have to allocate memory 47 char *buffer = static_cast<char*>(malloc(out_size + 1)); local 49 vsnprintf(buffer, out_size + 1, format, arg); 51 GetNaClInterface()->Vlog(buffer); 52 free(buffer);
|