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

<<41424344454647484950>>

  /cts/suite/audio_quality/lib/include/audio/
AudioRemote.h 47 virtual bool startPlaybackOrRecord(android::sp<Buffer>& buffer, int numberRepetition = 1);
57 virtual bool startPlaybackOrRecord(android::sp<Buffer>& buffer, int numberRepetition = 1);
  /development/host/windows/usb/api/
adb_interface.h 59 @param[out] buffer Buffer for the serail number string. Can be NULL in
63 of the buffer. On the way out, if method failed and GetLastError
71 virtual bool GetSerialNumber(void* buffer,
116 @param[out] buffer Buffer for the name. Can be NULL in which case
120 of the buffer. On the way out if method failed and GetLastError
128 virtual bool GetInterfaceName(void* buffer,
  /development/ndk/platforms/android-3/include/linux/mtd/
blktrans.h 43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
  /device/lge/hammerhead/liblight/
lights.c 66 char buffer[32] = {0,}; local
67 int bytes = snprintf(buffer, sizeof(buffer), "%d\n", value);
68 int amt = write(fd, buffer, bytes);
87 char buffer[32] = {0,}; local
88 int bytes = snprintf(buffer, sizeof(buffer), "%d %d\n", on, off);
89 int amt = write(fd, buffer, bytes);
  /external/chromium_org/cc/resources/
raster_worker_pool.h 65 // pixels to buffer when necessary.
67 uint8_t* buffer,
72 uint8_t* buffer,
  /external/chromium_org/cc/test/
skia_common.cc 15 void DrawPicture(unsigned char* buffer,
21 bitmap.installPixels(info, buffer, info.minRowBytes());
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
buffering_file_stream_reader.h 21 // Wraps the file stream reader implementation with a prefetching buffer.
46 // Copies data from the preloading buffer and updates the internal iterator.
48 int CopyFromPreloadingBuffer(scoped_refptr<net::IOBuffer> buffer,
56 // Called when preloading of a buffer chunk is finished. Updates state of the
57 // preloading buffer and copied requested data to the |buffer|.
58 void OnPreloadCompleted(scoped_refptr<net::IOBuffer> buffer,
  /external/chromium_org/chrome/installer/util/
delete_after_reboot_helper.h 49 // Converts the strings found in |buffer| to a list of PendingMoves that is
51 // |buffer| points to a series of pairs of null-terminated wchar_t strings
53 // |byte_count| is the length of |buffer| in bytes.
56 // |buffer|.
57 // Returns S_OK on success, E_INVALIDARG if buffer does not meet the above
59 HRESULT MultiSZBytesToStringArray(const char* buffer, size_t byte_count,
67 std::vector<char>* buffer);
  /external/chromium_org/chromecast/media/cma/ipc_streamer/
av_streamer_proxy.h 48 void OnNewBuffer(const scoped_refptr<DecoderBufferBase>& buffer,
56 bool SendBuffer(const scoped_refptr<DecoderBufferBase>& buffer);
71 // Pending config & buffer.
73 // config or buffer is valid.
  /external/chromium_org/content/browser/download/
file_metadata_unittest_linux.cc 72 char* buffer = new char[len]; local
73 len = getxattr(test_file().value().c_str(), attr_name.c_str(), buffer, len);
75 string real_value(buffer, len);
76 delete[] buffer;
83 char* buffer = new char[len]; local
84 len = listxattr(test_file().value().c_str(), buffer, len);
86 base::SplitString(string(buffer, len), '\0', attr_names);
87 delete[] buffer;
  /external/chromium_org/content/child/webcrypto/
algorithm_implementation.cc 20 std::vector<uint8_t>* buffer) const {
28 std::vector<uint8_t>* buffer) const {
35 std::vector<uint8_t>* buffer) const {
51 std::vector<uint8_t>* buffer) const {
130 std::vector<uint8_t>* buffer) const {
136 std::vector<uint8_t>* buffer) const {
142 std::vector<uint8_t>* buffer) const {
148 std::vector<uint8_t>* buffer) const {
  /external/chromium_org/content/child/webcrypto/openssl/
rsa_oaep_openssl.cc 43 std::vector<uint8_t>* buffer) {
83 buffer->resize(outlen);
87 vector_as_array(buffer),
93 buffer->resize(outlen);
125 std::vector<uint8_t>* buffer) const OVERRIDE {
130 EVP_PKEY_encrypt_init, EVP_PKEY_encrypt, algorithm, key, data, buffer);
136 std::vector<uint8_t>* buffer) const OVERRIDE {
141 EVP_PKEY_decrypt_init, EVP_PKEY_decrypt, algorithm, key, data, buffer);
  /external/chromium_org/gpu/command_buffer/service/
async_pixel_transfer_delegate.cc 9 AsyncMemoryParams::AsyncMemoryParams(scoped_refptr<Buffer> buffer,
12 : buffer_(buffer), data_offset_(data_offset), data_size_(data_size) {
mocks.cc 28 const void* buffer,
32 num_commands, buffer, num_entries, entries_processed);
  /external/chromium_org/ipc/
file_descriptor_set_posix.h 27 // because the control message kernel interface has to be given a buffer which
72 // buffer: (output) a buffer of, at least, size() integers.
73 void PeekDescriptors(base::PlatformFile* buffer) const;
91 // Set the contents of the set from the given buffer. This set must be empty
94 void AddDescriptorsToOwn(const base::PlatformFile* buffer, unsigned count);
  /external/chromium_org/media/base/
data_buffer.cc 18 DataBuffer::DataBuffer(scoped_ptr<uint8[]> buffer, int buffer_size)
19 : data_(buffer.Pass()),
decoder_buffer_queue_unittest.cc 22 scoped_refptr<DecoderBuffer> buffer = new DecoderBuffer(0); local
23 buffer->set_timestamp(ToTimeDelta(timestamp));
24 buffer->set_duration(ToTimeDelta(0));
25 return buffer;
29 scoped_refptr<DecoderBuffer> buffer = new DecoderBuffer(size); local
30 buffer->set_timestamp(ToTimeDelta(timestamp));
31 buffer->set_duration(ToTimeDelta(0));
32 return buffer;
94 // Removing first buffer should leave the second buffer as the only buffe
    [all...]
  /external/chromium_org/media/mojo/services/
mojo_demuxer_stream_impl.cc 34 const scoped_refptr<media::DecoderBuffer>& buffer) {
45 mojo::MediaDecoderBuffer::From(buffer));
  /external/chromium_org/mojo/android/system/src/org/chromium/mojo/system/impl/
SharedBufferHandleImpl.java 58 public void unmap(ByteBuffer buffer) {
59 mCore.unmap(buffer);
  /external/chromium_org/mojo/public/c/system/
buffer.h 7 // TODO(vtl): Reorganize this file (etc.) to separate general buffer functions
8 // from (shared) buffer creation.
20 // shared buffer to |MojoCreateSharedBuffer()|.
50 // access to a shared buffer to |MojoDuplicateBufferHandle()|.
95 // Creates a buffer of size |num_bytes| bytes that can be shared between
97 // -- and passing it over a message pipe). To access the buffer, one must call
100 // |options| may be set to null for a shared buffer with the default options.
103 // buffer. (On failure, it is not modified.)
122 // Duplicates the handle |buffer_handle| to a buffer. This creates another
127 // |options| may be set to null to duplicate the buffer handle with the defaul
    [all...]
  /external/chromium_org/mojo/public/platform/native/
system_thunks.cc 88 void** buffer,
92 return g_thunks.BeginWriteData(data_pipe_producer_handle, buffer,
112 const void** buffer,
116 return g_thunks.BeginReadData(data_pipe_consumer_handle, buffer,
146 void** buffer,
149 return g_thunks.MapBuffer(buffer_handle, offset, num_bytes, buffer, flags);
152 MojoResult MojoUnmapBuffer(void* buffer) {
154 return g_thunks.UnmapBuffer(buffer);
  /external/chromium_org/mojo/services/html_viewer/
webclipboard_impl.h 19 virtual uint64_t sequenceNumber(Buffer);
20 virtual bool isFormatAvailable(Format, Buffer);
22 Buffer,
24 virtual blink::WebString readPlainText(Buffer);
25 virtual blink::WebString readHTML(Buffer buffer,
30 virtual blink::WebString readCustomData(Buffer, const blink::WebString& type);
39 mojo::Clipboard::Type ConvertBufferType(Buffer buffer);
  /external/chromium_org/mojo/system/
entrypoints.cc 8 #include "mojo/public/c/system/buffer.h"
121 void** buffer,
125 MakeUserPointer(buffer),
146 const void** buffer,
150 MakeUserPointer(buffer),
181 void** buffer,
184 buffer_handle, offset, num_bytes, MakeUserPointer(buffer), flags);
187 MojoResult MojoUnmapBuffer(void* buffer) {
188 return g_core->UnmapBuffer(MakeUserPointer(buffer));
  /external/chromium_org/net/base/
test_completion_callback.cc 57 IOBuffer* buffer) : buffer_(buffer) {
  /external/chromium_org/net/quic/
quic_per_connection_packet_writer.cc 27 const char* buffer,
32 buffer,

Completed in 1690 milliseconds

<<41424344454647484950>>