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

<<61626364656667686970>>

  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
NonVolatileStore.cpp 50 ** Parameters p_buf - buffer to read the data into.
51 ** nbytes - number of bytes to read into the buffer.
56 ** called with the buffer of data, along with the number
57 ** of bytes read into the buffer, and a status. The
76 ALOGD ("%s: buffer len=%u; file=%s", __FUNCTION__, nbytes, filename);
110 ** Parameters p_buf - buffer to read the data from.
175 char buffer [100]; local
176 memset (buffer, 0, sizeof(buffer));
177 if (!GetStrValue (NAME_NFA_STORAGE, buffer, sizeof(buffer))
    [all...]
  /external/mesa3d/src/glx/apple/
apple_glx_pixmap.c 74 p->pitch, p->buffer);
103 if (p->buffer) {
104 if (munmap(p->buffer, p->size))
114 apple_glx_diagnostic("destroyed pixmap buffer for: 0x%lx\n", d->drawable);
137 p->buffer = NULL;
156 p->buffer = mmap(NULL, p->size, PROT_READ | PROT_WRITE,
159 if (MAP_FAILED == p->buffer) {
182 apple_glx_diagnostic("created: pixmap buffer for 0x%lx\n", d->drawable);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractContainerBox.java 116 StringBuilder buffer = new StringBuilder(); local
118 buffer.append(this.getClass().getSimpleName()).append("[");
121 buffer.append(";");
123 buffer.append(boxes.get(i).toString());
125 buffer.append("]");
126 return buffer.toString();
FullContainerBox.java 122 StringBuilder buffer = new StringBuilder(); local
123 buffer.append(this.getClass().getSimpleName()).append("[");
126 buffer.append(";");
128 buffer.append(boxes.get(i).toString());
130 buffer.append("]");
131 return buffer.toString();
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyServer.java 113 BufferedSink out = Okio.buffer(stream.getSink());
123 BufferedSink out = Okio.buffer(stream.getSink());
131 byte[] buffer = new byte[8192];
136 BufferedSink out = Okio.buffer(stream.getSink());
139 while ((count = in.read(buffer)) != -1) {
140 out.write(buffer, 0, count);
  /external/chromium_org/third_party/icu/source/common/
normalizer2.cpp 144 ReorderingBuffer buffer(impl, dest);
145 if(buffer.init(src.length(), errorCode)) {
146 normalize(sArray, sArray+src.length(), buffer, errorCode);
152 ReorderingBuffer &buffer, UErrorCode &errorCode) const = 0;
184 ReorderingBuffer buffer(impl, first);
185 if(buffer.init(firstLength+second.length(), errorCode)) {
187 safeMiddle, buffer, errorCode);
199 ReorderingBuffer &buffer, UErrorCode &errorCode) const = 0;
202 UChar buffer[4]; local
204 const UChar *d=impl.getDecomposition(c, buffer, length)
217 UChar buffer[30]; local
    [all...]
  /external/icu/icu4c/source/common/
normalizer2.cpp 144 ReorderingBuffer buffer(impl, dest);
145 if(buffer.init(src.length(), errorCode)) {
146 normalize(sArray, sArray+src.length(), buffer, errorCode);
152 ReorderingBuffer &buffer, UErrorCode &errorCode) const = 0;
184 ReorderingBuffer buffer(impl, first);
185 if(buffer.init(firstLength+second.length(), errorCode)) {
187 safeMiddle, buffer, errorCode);
199 ReorderingBuffer &buffer, UErrorCode &errorCode) const = 0;
202 UChar buffer[4]; local
204 const UChar *d=impl.getDecomposition(c, buffer, length)
217 UChar buffer[30]; local
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
AudioHardware.cpp 26 #include "audio/Buffer.h"
111 if (testCase == NULL) { // default implementation only handles local buffer.
114 android::sp<Buffer> buffer = testCase->findBuffer(id); local
115 if (buffer.get() == NULL) {
118 return startPlaybackOrRecord(buffer);
  /development/host/windows/usb/api/
adb_api.cpp 200 void* buffer,
209 bool ret = adb_object->GetInterfaceName(buffer, buffer_char_size, ansi);
219 void* buffer,
228 bool ret = adb_object->GetSerialNumber(buffer, buffer_char_size, ansi);
392 void* buffer,
403 ADBAPIHANDLE ret = adb_object->AsyncRead(buffer,
417 void* buffer,
428 ADBAPIHANDLE ret = adb_object->AsyncWrite(buffer,
442 void* buffer,
453 adb_object->SyncRead(buffer, bytes_to_read, bytes_read, time_out);
    [all...]
  /development/ndk/platforms/android-3/include/linux/nfsd/
xdr.h 68 char * buffer; member in struct:nfsd_readlinkargs
91 u32 * buffer; member in struct:nfsd_readdirargs
118 u32 * buffer; member in struct:nfsd_readdirres
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarShareActionProviderActivity.java 101 byte[] buffer = new byte[1024];
104 while ((length = inputStream.read(buffer)) > 0){
105 outputStream.write(buffer, 0, length);
  /external/chromium_org/cloud_print/gcp20/prototype/
dns_sd_server.cc 105 scoped_refptr<net::IOBufferWithSize> buffer(builder.Build());
107 DCHECK(buffer.get() != NULL);
109 socket_->SendTo(buffer.get(), buffer.get()->size(), multicast_address_,
180 scoped_refptr<net::IOBufferWithSize> buffer(builder.Build());
181 if (buffer.get() == NULL)
188 socket_->SendTo(buffer.get(), buffer.get()->size(),
266 // TODO(maksymb): Check what happened if buffer will be overflowed
299 scoped_refptr<net::IOBufferWithSize> buffer(builder.Build())
    [all...]
  /external/chromium_org/content/browser/fileapi/
fileapi_message_filter_unittest.cc 159 scoped_refptr<net::IOBuffer> buffer(new net::IOBuffer(kBufferSize));
166 stream->ReadRawData(buffer.get(), kBufferSize, &bytes_read));
176 stream->ReadRawData(buffer.get(), kBufferSize, &bytes_read));
183 stream->ReadRawData(buffer.get(), kBufferSize, &bytes_read));
212 scoped_refptr<net::IOBuffer> buffer(new net::IOBuffer(kFakeData.size()));
219 stream->ReadRawData(buffer.get(), kFakeData.size(), &bytes_read));
221 EXPECT_EQ(kFakeData, std::string(buffer->data(), bytes_read));
224 stream->ReadRawData(buffer.get(), kFakeData.size(), &bytes_read));
259 scoped_refptr<net::IOBuffer> buffer(new net::IOBuffer(kFakeData.size()));
266 stream->ReadRawData(buffer.get(), kFakeData.size(), &bytes_read))
    [all...]
  /external/chromium_org/content/browser/loader/
stream_resource_handler.cc 80 // Release the ownership of the buffer, and store a reference
82 scoped_refptr<net::IOBuffer> buffer; local
83 read_buffer_.swap(buffer);
84 stream_->AddData(buffer, bytes_read);
  /external/chromium_org/content/child/webcrypto/nss/
rsa_key_nss.h 76 std::vector<uint8_t>* buffer) const OVERRIDE;
79 std::vector<uint8_t>* buffer) const OVERRIDE;
88 std::vector<uint8_t>* buffer) const OVERRIDE;
  /external/chromium_org/content/child/webcrypto/openssl/
rsa_key_openssl.h 77 std::vector<uint8_t>* buffer) const OVERRIDE;
80 std::vector<uint8_t>* buffer) const OVERRIDE;
83 std::vector<uint8_t>* buffer) const OVERRIDE;
  /external/chromium_org/content/renderer/pepper/
ppb_buffer_impl.cc 39 scoped_refptr<PPB_Buffer_Impl> buffer(new PPB_Buffer_Impl(instance));
40 if (!buffer->Init(size))
42 return buffer;
  /external/chromium_org/courgette/
encoded_program.h 61 CheckBool AssembleTo(SinkStream* buffer) WARN_UNUSED_RESULT;
95 CheckBool GeneratePeRelocations(SinkStream *buffer,
98 SinkStream *buffer) WARN_UNUSED_RESULT;
  /external/chromium_org/device/bluetooth/
bluetooth_socket_net.h 40 virtual void Send(scoped_refptr<net::IOBuffer> buffer,
77 scoped_refptr<net::IOBuffer> buffer; member in struct:device::BluetoothSocketNet::WriteRequest
92 void DoSend(scoped_refptr<net::IOBuffer> buffer,
  /external/chromium_org/media/base/
stream_parser.cc 30 // has a decode timestamp prior to the last, if any, buffer in
50 // buffer in it.
55 // Repeatedly select and append the next buffer from the candidate buffers
58 // when a candidate buffer has decode timestamp below
59 // |last_decode_timestamp|, which means either an input buffer wasn't
60 // sorted correctly or had a buffer with decode timestamp below the last
61 // buffer, if any, in |merged_buffers|, or
70 // Tracks which queue's iterator is pointing to the candidate buffer to
76 // buffer, if any, that has the lowest decode timestamp.
81 // Extract the candidate buffer's decode timestamp
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
block_bitmaps_v3_unittest.cc 54 uint8* buffer = reinterpret_cast<uint8*>(&headers[2].allocation_map); local
57 EXPECT_EQ(0xff, buffer[i]);
68 EXPECT_EQ(0, buffer[i]);
  /external/chromium_org/net/url_request/
url_fetcher_response_writer.h 41 // Writes |num_bytes| bytes in |buffer|, and returns the number of bytes
44 virtual int Write(IOBuffer* buffer,
69 virtual int Write(IOBuffer* buffer,
95 virtual int Write(IOBuffer* buffer,
  /external/chromium_org/ppapi/tests/
test_tcp_socket_private.cc 200 // Create large buffer in heap to prevent run-time errors related to
202 char* buffer = new (std::nothrow) char[kReadSize]; local
203 ASSERT_TRUE(buffer != NULL);
206 cb.WaitForResult(socket.Read(buffer, kReadSize * sizeof(*buffer),
211 delete [] buffer;
219 char buffer[10000]; local
225 int32_t rv = socket->Read(buffer, sizeof(buffer), cb.GetCallback());
235 s->push_back(buffer[i])
245 const char* buffer = s.data(); local
    [all...]
  /external/chromium_org/remoting/base/
compound_buffer_unittest.cc 21 // Chunk sizes used to append and prepend data to the buffer.
103 bool CompareData(const CompoundBuffer& buffer, char* data, int size) {
104 scoped_refptr<IOBuffer> buffer_data = buffer.ToIOBufferWithSize();
105 return buffer.total_bytes() == size &&
140 scoped_ptr<char[]> buffer(new char[str.size() + 1]);
141 buffer[str.size()] = '\0';
142 EXPECT_EQ(ReadFromInput(input, buffer.get(), str.size()), str.size());
143 EXPECT_STREQ(str.data(), buffer.get());
146 // Construct and prepare data in the |buffer|.
147 static void PrepareData(scoped_ptr<CompoundBuffer>* buffer) {
261 scoped_ptr<CompoundBuffer> buffer; local
    [all...]
  /external/chromium_org/remoting/protocol/
message_reader.cc 94 CompoundBuffer* buffer = message_decoder_.GetNextMessage(); local
95 if (!buffer)
102 base::Passed(scoped_ptr<CompoundBuffer>(buffer))));

Completed in 1732 milliseconds

<<61626364656667686970>>