HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 1601 - 1625 of 9401) sorted by null

<<61626364656667686970>>

  /external/chromium_org/ppapi/api/private/
ppb_udp_socket_private.idl 76 [out] str_t buffer,
91 [in] str_t buffer,
  /external/chromium_org/ppapi/c/
ppb_file_io.h 171 * Read() reads from an offset in the file. The size of the buffer must be
182 * @param[in] buffer The buffer to hold the specified number of bytes read.
186 * completion of Read(). <code>buffer</code> must remain valid until after
187 * the callback runs. If you pass a blocking callback, <code>buffer</code>
198 char* buffer,
208 * @param[in] buffer The buffer to hold the specified number of bytes read.
222 const char* buffer,
274 * provided so that output will be stored in its allocated buffer. Thi
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
video_capture_dev.h 39 int32_t ReuseBuffer(uint32_t buffer);
  /external/chromium_org/ppapi/cpp/
media_stream_audio_track.h 52 /// Configures underlying buffer buffers for incoming audio samples.
55 /// chosen such that inter-buffer processing time variability won't overrun
99 /// Gets the next audio buffer from the MediaStream track.
100 /// If internal processing is slower than the incoming buffer rate,
103 /// is called to free a spot for another buffer.
104 /// If there are no audio data in the input buffer,
106 /// <code>callback</code> will be called when a new buffer of audio samples
117 /// Recycles a buffer returned by <code>GetBuffer()</code>, so the track can
118 /// reuse the buffer. And the buffer will become invalid. The caller shoul
    [all...]
url_loader.h 123 /// This function is used to read the response body. The size of the buffer
127 /// @param[in,out] buffer A pointer to the buffer for the response body.
136 int32_t ReadResponseBody(void* buffer,
video_decoder.h 82 /// Decodes a bitstream buffer. Copies |size| bytes of data from the plugin's
83 /// |buffer|. The plugin should wait until the decoder signals completion by
86 /// In general, each bitstream buffer should contain a demuxed bitstream frame
100 /// @param[in] size Buffer size in bytes.
101 /// @param[in] buffer Starting address of buffer.
109 /// Returns PP_ERROR_NOMEMORY if a bitstream buffer can't be created.
113 const void* buffer,
  /external/chromium_org/ppapi/proxy/
tcp_socket_resource.cc 92 int32_t TCPSocketResource::Read(char* buffer,
95 return ReadImpl(buffer, bytes_to_read, callback);
98 int32_t TCPSocketResource::Write(const char* buffer,
101 return WriteImpl(buffer, bytes_to_write, callback);
video_frame_resource.h 23 MediaStreamBuffer* buffer);
  /external/chromium_org/ppapi/shared_impl/
ppb_gamepad_shared.h 76 WebKitGamepads buffer; member in struct:ppapi::ContentGamepadHardwareBuffer
  /external/chromium_org/ppapi/thunk/
ppb_udp_socket_private_thunk.cc 60 char* buffer,
70 return enter.SetResult(enter.object()->RecvFrom(buffer, num_bytes,
83 const char* buffer,
90 return enter.SetResult(enter.object()->SendTo(buffer, num_bytes, addr,
ppb_udp_socket_thunk.cc 53 char* buffer,
61 return enter.SetResult(enter.object()->RecvFrom(buffer,
68 const char* buffer,
76 return enter.SetResult(enter.object()->SendTo(buffer,
ppb_video_capture_api.h 35 virtual int32_t ReuseBuffer(uint32_t buffer) = 0;
  /external/chromium_org/sandbox/win/src/
sharedmem_ipc_client.cc 14 // Get the base of the data buffer of the channel; this is where the input
30 void SharedMemIPCClient::FreeBuffer(void* buffer) {
31 size_t num = ChannelIndexFromBuffer(buffer);
59 // Note that the IPC tag goes outside the buffer as well inside
60 // the buffer. This should enable the server to prioritize based on
145 size_t SharedMemIPCClient::ChannelIndexFromBuffer(const void* buffer) {
146 ptrdiff_t d = reinterpret_cast<const char*>(buffer) - first_base_;
window.cc 61 wchar_t buffer[16]; local
62 _snwprintf_s(buffer, sizeof(buffer) / sizeof(wchar_t), L"0x%X",
64 desktop_name += buffer;
128 // Create the buffer that will hold the name.
  /external/chromium_org/sync/util/
extensions_activity.h 42 // Fill |buffer| with all current records and then clear the
45 void GetAndClearRecords(Records* buffer);
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
Pasteboard.h 69 blink::WebClipboard::Buffer buffer() const { return m_buffer; } function in class:blink::Pasteboard
74 blink::WebClipboard::Buffer m_buffer;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DataView.cpp 50 RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(length, sizeof(uint8_t)); local
51 if (!buffer.get())
53 return create(buffer, 0, length);
56 PassRefPtr<DataView> DataView::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned byteLength)
58 if (byteOffset > buffer->byteLength())
63 if (!checkedMax.isValid() || checkedMax.value() > buffer->byteLength())
65 return adoptRef(new DataView(buffer, byteOffset, byteLength));
68 DataView::DataView(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned byteLength)
69 : ArrayBufferView(buffer, byteOffset)
  /external/chromium_org/third_party/WebKit/Source/platform/
SharedBufferChunkReader.cpp 38 SharedBufferChunkReader::SharedBufferChunkReader(SharedBuffer* buffer, const Vector<char>& separator)
39 : m_buffer(buffer)
50 SharedBufferChunkReader::SharedBufferChunkReader(SharedBuffer* buffer, const char* separator)
51 : m_buffer(buffer)
TestingPlatformSupport.h 69 virtual void cryptographicallyRandomValues(unsigned char* buffer, size_t length) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioDelayDSPKernel.cpp 70 // Compute the length of the buffer needed to handle a max delay of |maxDelayTime|. One is
93 float* buffer = m_buffer.data(); local
148 buffer[m_writeIndex] = static_cast<float>(input);
151 double sample1 = buffer[readIndex1];
152 double sample2 = buffer[readIndex2];
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.cpp 124 ImageFrame* buffer = m_decoder->frameBufferAtIndex(index);
125 if (!buffer || buffer->status() == ImageFrame::FrameEmpty)
133 // Return the buffer contents as a native image. For some ports, the data
135 return buffer->asNewNativeImage();
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextStream.cpp 111 char buffer[printBufferSize]; local
112 snprintf(buffer, sizeof(buffer) - 1, "%p", p);
113 return *this << buffer;
UnicodeUtilities.h 39 PLATFORM_EXPORT void normalizeCharactersIntoNFCForm(const UChar* characters, unsigned length, Vector<UChar>& buffer);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
backward.py 93 buffer = open(fname, 'rb')
94 encoding, _ = detect_encoding(buffer.readline)
95 buffer.seek(0)
96 text = TextIOWrapper(buffer, encoding, line_buffering=True)
  /external/chromium_org/third_party/angle/src/compiler/translator/
Common.h 86 char buffer[((8 * sizeof(T)) / 3) + 3]; local
88 snprintf(buffer, sizeof(buffer), formatStr, i);
89 return buffer;

Completed in 1283 milliseconds

<<61626364656667686970>>