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

<<41424344454647484950>>

  /external/chromium_org/net/quic/
quic_server_packet_writer.h 35 const char* buffer,
50 virtual WriteResult WritePacket(const char* buffer,
  /external/chromium_org/net/tools/quic/
quic_socket_utils.h 37 // Sets the send buffer size to |size| and returns false if it fails.
40 // Sets the receive buffer size to |size| and returns false if it fails.
53 char* buffer,
64 const char* buffer,
  /external/chromium_org/pdf/
chunk_stream.h 27 bool WriteData(size_t offset, void* buffer, size_t size);
28 bool ReadData(size_t offset, size_t size, void* buffer) const;
  /external/chromium_org/ppapi/c/
ppb_media_stream_audio_track.h 47 * the plugin expects to hold on to more than one buffer at a time (e.g. to do
48 * multi-buffer processing), it should request that many more.
68 * The duration of an audio buffer in milliseconds.
97 * chosen such that inter-buffer processing time variability won't overrun all
162 * Gets the next audio buffer from the MediaStream track.
163 * If internal processing is slower than the incoming buffer rate, new buffers
166 * to free a slot for another buffer.
167 * If there are no audio data in the input buffer,
169 * <code>callback</code> will be called, when a new buffer of audio samples
174 * @param[out] buffer A <code>PP_Resource</code> corresponding t
    [all...]
ppb_udp_socket.h 49 * Specifies the total per-socket buffer space reserved for sends. Value's
53 * Note: This is only treated as a hint for the browser to set the buffer
59 * Specifies the total per-socket buffer space reserved for receives. Value's
63 * Note: This is only treated as a hint for the browser to set the buffer
139 * @param[out] buffer The buffer to store the received data on success. It
151 char* buffer,
160 * @param[in] buffer The buffer containing the data to send.
173 const char* buffer,
    [all...]
  /external/chromium_org/ppapi/cpp/private/
tcp_socket_private.h 42 int32_t Read(char* buffer,
45 int32_t Write(const char* buffer,
  /external/chromium_org/ppapi/cpp/
tcp_socket.h 119 /// <code>buffer</code>. Typically you will use a
125 /// will still try to write into your buffer when the operation completes.
126 /// The buffer must be kept valid until then to avoid memory corruption.
127 /// If you want to release the buffer while the <code>Read()</code> call is
129 /// buffer won't be accessed in the future.
131 /// @param[out] buffer The buffer to store the received data on success. It
140 int32_t Read(char* buffer,
147 /// @param[in] buffer The buffer containing the data to write
    [all...]
udp_socket.h 90 /// <code>buffer</code>. Typically you will use a
96 /// will still try to write into your buffer when the operation completes.
97 /// The buffer must be kept valid until then to avoid memory corruption.
98 /// If you want to release the buffer while the <code>RecvFrom()</code> call
100 /// buffer won't be accessed in the future.
102 /// @param[out] buffer The buffer to store the received data on success. It
111 char* buffer,
117 /// @param[in] buffer The buffer containing the data to send
    [all...]
  /external/chromium_org/ppapi/proxy/
udp_socket_private_resource.h 34 virtual int32_t RecvFrom(char* buffer,
38 virtual int32_t SendTo(const char* buffer,
udp_socket_resource.h 30 virtual int32_t RecvFrom(char* buffer,
34 virtual int32_t SendTo(const char* buffer,
  /external/chromium_org/ppapi/tests/
test_tcp_server_socket_private.h 34 char* buffer,
37 const char* buffer,
  /external/chromium_org/ppapi/thunk/
ppb_tcp_socket_api.h 28 virtual int32_t Read(char* buffer,
31 virtual int32_t Write(const char* buffer,
ppb_tcp_socket_private_api.h 36 virtual int32_t Read(char* buffer,
39 virtual int32_t Write(const char* buffer,
  /external/chromium_org/remoting/client/
frame_consumer_proxy.h 35 webrtc::DesktopFrame* buffer,
38 virtual void ReturnBuffer(webrtc::DesktopFrame* buffer) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObjectItem.cpp 72 PassRefPtrWillBeRawPtr<DataObjectItem> DataObjectItem::createFromSharedBuffer(const String& name, PassRefPtr<SharedBuffer> buffer)
75 item->m_sharedBuffer = buffer;
113 // in. At some point though, we may need to support correctly converting a shared buffer
148 blink::WebClipboard::Buffer buffer = Pasteboard::generalPasteboard()->buffer(); local
152 data = blink::Platform::current()->clipboard()->readPlainText(buffer);
156 data = blink::Platform::current()->clipboard()->readHTML(buffer, &ignoredSourceURL, &ignored, &ignored);
158 data = blink::Platform::current()->clipboard()->readCustomData(buffer, m_type);
161 return blink::Platform::current()->clipboard()->sequenceNumber(buffer) == m_sequenceNumber ? data : String()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderbuffer.h 60 void setEmulatedStencilBuffer(PassRefPtrWillBeRawPtr<WebGLRenderbuffer> buffer) { m_emulatedStencilBuffer = buffer; }
  /external/chromium_org/third_party/WebKit/Source/core/loader/
WorkerLoaderClientBridgeSyncHelper.cpp 85 Vector<char>* buffer = new Vector<char>(dataLength); local
86 memcpy(buffer->data(), data, dataLength);
87 m_receivedData.append(buffer);
88 m_clientTasks.append(bind(&ThreadableLoaderClient::didReceiveData, &m_client, static_cast<const char*>(buffer->data()), dataLength));
100 Vector<char>* buffer = new Vector<char>(dataLength); local
101 memcpy(buffer->data(), data, dataLength);
102 m_receivedData.append(buffer);
103 m_clientTasks.append(bind(&ThreadableLoaderClient::didReceiveCachedMetadata, &m_client, static_cast<const char*>(buffer->data()), dataLength));
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBufferSourceNode.idl 30 [RaisesException=Setter] attribute AudioBuffer buffer;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
StringTruncator.cpp 42 typedef unsigned TruncationFunction(const String&, unsigned length, unsigned keepCount, UChar* buffer);
59 static unsigned centerTruncateToBuffer(const String& string, unsigned length, unsigned keepCount, UChar* buffer)
72 string.copyTo(buffer, 0, omitStart);
73 buffer[omitStart] = horizontalEllipsis;
74 string.copyTo(&buffer[omitStart + 1], omitEnd, length - omitEnd);
79 static unsigned rightTruncateToBuffer(const String& string, unsigned length, unsigned keepCount, UChar* buffer)
88 string.copyTo(buffer, 0, keepLength);
89 buffer[keepLength] = horizontalEllipsis;
  /external/chromium_org/third_party/icu/source/common/unicode/
ucnvsel.h 39 * A converter selector can be serialized into a buffer and reopened
115 * The buffer must remain valid and unchanged for the lifetime of the selector.
119 * @param buffer pointer to the serialized form of a converter selector;
121 * @param length the capacity of this buffer (can be equal to or larger than
129 ucnvsel_openFromSerialized(const void* buffer, int32_t length, UErrorCode* status);
132 * Serialize a selector into a linear buffer.
136 * @param buffer pointer to 32-bit-aligned memory to be filled with the
138 * @param bufferCapacity the capacity of this buffer
140 * @return the required buffer capacity to hold serialize data (even if the call fails
147 void* buffer, int32_t bufferCapacity, UErrorCode* status)
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/doc/
crypto_kernel.txt 49 * @brief Encrypts a buffer with a given cipher.
57 * @brief Sets a buffer to the keystream generated by the cipher.
61 cipher_output(cipher_t *c, uint8_t *buffer, int num_octets_to_output);
  /external/chromium_org/third_party/libusb/src/libusb/
sync.c 76 * \param data a suitably-sized data buffer for either input or output
78 * \param wLength the length field for the setup packet. The data buffer should
95 unsigned char *buffer; local
102 buffer = (unsigned char*) malloc(LIBUSB_CONTROL_SETUP_SIZE + wLength);
103 if (!buffer) {
108 libusb_fill_control_setup(buffer, bmRequestType, bRequest, wValue, wIndex,
111 memcpy(buffer + LIBUSB_CONTROL_SETUP_SIZE, data, wLength);
113 libusb_fill_control_transfer(transfer, dev_handle, buffer,
159 unsigned char endpoint, unsigned char *buffer, int length,
169 libusb_fill_bulk_transfer(transfer, dev_handle, endpoint, buffer, length
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_resource_buffer.c 56 struct i915_buffer *buffer = i915_buffer(resource); local
57 if (buffer->free_on_destroy)
58 align_free(buffer->data);
59 FREE(buffer);
99 struct i915_buffer *buffer = i915_buffer(transfer->resource); local
100 return buffer->data + transfer->box.x;
114 struct i915_buffer *buffer = i915_buffer(resource); local
116 memcpy(buffer->data + box->x,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
llvm_wrapper.cpp 15 llvm::MemoryBuffer* buffer = llvm::MemoryBuffer::getMemBufferCopy(str); local
17 M.reset(llvm::ParseIR(buffer, Err, llvm::getGlobalContext()));
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_input_stream.h 70 virtual int32_t Read(ByteVector* buffer);
71 virtual int32_t Read(ByteVector* buffer, int32_t offset, int32_t length);

Completed in 1244 milliseconds

<<41424344454647484950>>