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

<<81828384858687888990>>

  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
flock.cc 101 uint32_t* buffer; local
113 buffer = new uint32_t[len];
114 fread(buffer, 1, len, fp);
117 g_goose_sprite = new Sprite(buffer, pp::Size(fmt.width, fmt.height), 0);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
tty_node.h 49 Error ProcessInput(const char* buffer, size_t num_bytes);
  /external/chromium_org/net/disk_cache/blockfile/
mapped_file.h 33 void* buffer() const { function in class:disk_cache::MappedFile
60 void* buffer_; // Address of the memory mapped buffer.
63 void* snapshot_; // Copy of the buffer taken when it was last flushed.
mapped_file_unittest.cc 51 virtual void* buffer() const OVERRIDE { return const_cast<char*>(buffer_); }
122 base::strlcpy(static_cast<char*>(file_block1.buffer()), "the data",
139 EXPECT_STREQ(static_cast<char*>(file_block1.buffer()),
140 static_cast<char*>(file_block2.buffer()));
storage_block.h 18 // This object provides a memory buffer for the related data, and it can be used
37 virtual void* buffer() const;
48 // own the memory buffer (it cannot be shared).
69 // Returns true if this object owns the data buffer, false if it is shared.
  /external/chromium_org/net/disk_cache/
disk_cache_test_util.h 22 // Fills buffer with random values (may contain nulls unless no_nulls is true).
23 void CacheTestFillBuffer(char* buffer, size_t len, bool no_nulls);
  /external/chromium_org/net/spdy/
hpack_input_stream.h 28 HpackInputStream(uint32 max_string_literal_size, base::StringPiece buffer);
spdy_stream_test_util.cc 32 void ClosingDelegate::OnDataReceived(scoped_ptr<SpdyBuffer> buffer) {}
65 void StreamDelegateBase::OnDataReceived(scoped_ptr<SpdyBuffer> buffer) {
66 if (buffer)
67 received_data_queue_.Enqueue(buffer.Pass());
  /external/chromium_org/net/tools/flip_server/
ring_buffer.h 14 // The ring buffer is a circular buffer, that is, reads or writes may wrap
19 // What is the penalty for using this over a normal, linear buffer?
23 // In the proxy, this class is used as a fixed size buffer between
31 // Resize the buffer to the size specified here. If the buffer_size passed
32 // in here is smaller than the amount of data in the buffer, then the oldest
34 // This means: If the buffer size is increasing, all data that was resident
35 // in the buffer prior to this call will be resident after this call.
52 // Stores a pointer into the ring buffer in *ptr, and stores the number of
57 // Stores a pointer into the ring buffer in *ptr, and stores the number o
94 const char* buffer() const { return buffer_.get(); } function in class:net::RingBuffer
    [all...]
  /external/chromium_org/net/url_request/
url_fetcher_response_writer.cc 36 int URLFetcherStringWriter::Write(IOBuffer* buffer,
39 data_.append(buffer->data(), num_bytes);
93 int URLFetcherFileWriter::Write(IOBuffer* buffer,
99 int result = file_stream_->Write(buffer, num_bytes,
  /external/chromium_org/ppapi/api/
ppb_file_io.idl 159 * Read() reads from an offset in the file. The size of the buffer must be
170 * @param[in] buffer The buffer to hold the specified number of bytes read.
174 * completion of Read(). <code>buffer</code> must remain valid until after
175 * the callback runs. If you pass a blocking callback, <code>buffer</code>
186 [inout] str_t buffer,
197 * @param[in] buffer The buffer to hold the specified number of bytes read.
211 [in] str_t buffer,
267 * provided so that output will be stored in its allocated buffer. Thi
    [all...]
ppb_tcp_socket.idl 28 * Specifies the total per-socket buffer space reserved for sends. Value's
32 * Note: This is only treated as a hint for the browser to set the buffer
39 * Specifies the total per-socket buffer space reserved for receives. Value's
43 * Note: This is only treated as a hint for the browser to set the buffer
157 * @param[out] buffer The buffer to store the received data on success. It
168 [out] str_t buffer,
178 * @param[in] buffer The buffer containing the data to write.
187 [in] str_t buffer,
    [all...]
  /external/chromium_org/ppapi/api/private/
ppb_tcp_socket_private.idl 115 * Reads data from the socket. The size of |buffer| must be at least as large
124 [out] str_t buffer,
136 [in] str_t buffer,
  /external/chromium_org/ppapi/c/dev/
ppb_video_capture_dev.h 49 * PPP_VideoCapture_Dev) is called with the index of the buffer from the array
50 * containing the new frame. The buffer is now "owned" by the plugin, and the
52 * 7- When the plugin is done with the buffer, call ReuseBuffer.
119 * frames. If the plugin expects to hold on to more than one buffer at a time
136 * Allows the browser to reuse a buffer that was previously sent by
137 * PPP_VideoCapture_Dev.OnBufferReady. |buffer| is the index of the buffer in
140 * Returns PP_ERROR_BADARGUMENT if buffer is out of range (greater than the
144 int32_t (*ReuseBuffer)(PP_Resource video_capture, uint32_t buffer);
  /external/chromium_org/ppapi/c/
ppb_url_loader.h 166 * buffer must be large enough to hold the specified number of bytes to read.
171 * @param[in,out] buffer A pointer to the buffer for the response body.
182 void* buffer,
  /external/chromium_org/ppapi/proxy/
audio_buffer_resource.h 26 MediaStreamBuffer* buffer);
46 // Buffer index
  /external/chromium_org/ppapi/thunk/
ppb_file_io_thunk.cc 72 char* buffer,
80 buffer,
87 const char* buffer,
95 buffer,
ppb_tcp_socket_private_thunk.cc 97 char* buffer,
103 return enter.SetResult(enter.object()->Read(buffer, bytes_to_read,
108 const char* buffer,
114 return enter.SetResult(enter.object()->Write(buffer, bytes_to_write,
ppb_tcp_socket_thunk.cc 81 char* buffer,
88 return enter.SetResult(enter.object()->Read(buffer,
94 const char* buffer,
101 return enter.SetResult(enter.object()->Write(buffer,
ppb_url_loader_api.h 41 virtual int32_t ReadResponseBody(void* buffer,
ppb_video_decoder_api.h 32 const void* buffer,
  /external/chromium_org/remoting/client/plugin/
media_source_video_renderer.h 41 virtual void OnMediaSourceData(uint8_t* buffer, size_t buffer_size,
  /external/chromium_org/sandbox/win/src/
app_container.cc 172 wchar_t* buffer = NULL; local
173 HRESULT rv = AppContainerLookupMoniker(local_sid, &buffer);
177 base::string16 name(buffer);
178 if (!AppContainerFreeMemory(buffer))
handle_closer.h 62 bool SetupHandleList(void* buffer, size_t buffer_bytes);
  /external/chromium_org/storage/browser/fileapi/
sandbox_prioritized_origin_database.cc 40 std::string buffer; local
41 if (!base::ReadFileToString(path, &buffer))
43 Pickle pickle(buffer.data(), buffer.size());

Completed in 1386 milliseconds

<<81828384858687888990>>