HomeSort by relevance Sort by last modified time
    Searched refs:mBuffer (Results 101 - 125 of 719) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/av/media/mtp/
MtpRequestPacket.cpp 41 int ret = h->read(mBuffer, mBufferSize);
68 request->buffer = mBuffer;
  /system/libhidl/base/include/hidl/
HidlSupport.h 160 // offsetof(hidl_string, mBuffer) exposed since mBuffer is private.
164 details::hidl_pointer<const char> mBuffer;
166 bool mOwnsBuffer; // if true then mBuffer is a mutable char *
286 : mBuffer(NULL),
307 mBuffer = new T[mSize];
311 mBuffer[idx++] = *it;
332 mBuffer = new T[mSize];
336 mBuffer[idx++] = static_cast<T>(*first);
342 delete[] mBuffer;
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
ReadElf.java 127 private final byte[] mBuffer = new byte[512];
225 mFile.readFully(mBuffer, 0, EI_NIDENT);
227 if (mBuffer[0] != ELFMAG[0] || mBuffer[1] != ELFMAG[1] ||
228 mBuffer[2] != ELFMAG[2] || mBuffer[3] != ELFMAG[3]) {
232 int elfClass = mBuffer[EI_CLASS];
241 mEndian = mBuffer[EI_DATA];
436 mFile.readFully(mBuffer, 0, byteCount);
441 answer = (answer << 8) | (mBuffer[i] & 0xff)
    [all...]
  /cts/suite/audio_quality/lib/include/
FileUtil.h 60 char* mBuffer;
  /frameworks/av/media/libnbaio/include/media/nbaio/
AudioBufferProviderSource.h 50 AudioBufferProvider::Buffer mBuffer; // current buffer
Pipe.h 62 void * const mBuffer;
  /frameworks/native/services/surfaceflinger/tests/hwc2/
Hwc2TestVirtualDisplay.h 44 Hwc2TestBuffer mBuffer;
  /hardware/akm/AK8975_FS/libsensors/
InputEventReader.h 31 struct input_event* const mBuffer;
  /hardware/invensense/6515/libsensors_iio/
InputEventReader.h 33 struct input_event* const mBuffer;
  /hardware/invensense/65xx/libsensors_iio/
InputEventReader.h 33 struct input_event* const mBuffer;
  /packages/apps/Email/provider_src/com/android/email/mail/transport/
DiscourseLogger.java 32 private String[] mBuffer;
42 mBuffer = new String[mBufferSize];
45 /** Add a single line to {@link #mBuffer}. */
47 mBuffer[mPos] = s;
63 * received, the content of {@link #mReceivingLine} is added to {@link #mBuffer}.
77 /** Add a line sent to the server to {@link #mBuffer}. */
82 /** @return the contents of {@link #mBuffer} as a String array. */
91 String s = mBuffer[pos];
104 * Log the contents of the {@link mBuffer}, and clears it out. (So it's okay to call this
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RecvDgram/
RecvDgram.c 28 UINT8 mBuffer[ 65536 ];
78 &mBuffer[0],
79 sizeof ( mBuffer[0]),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobRx/
OobRx.c 17 UINT8 mBuffer[65536];
153 BytesReceived = recv ( a, &mBuffer[0], sizeof ( mBuffer ), MSG_OOB );
186 BytesReceived = recv ( a, &mBuffer[0], sizeof ( mBuffer ), 0 );
  /frameworks/av/media/libaudioprocessing/
BufferProviders.cpp 61 mBuffer.frameCount = 0;
67 if (mBuffer.frameCount != 0) {
68 mTrackBufferProvider->releaseBuffer(&mBuffer);
84 if (mBuffer.frameCount == 0) {
85 mBuffer.frameCount = pBuffer->frameCount;
86 status_t res = mTrackBufferProvider->getNextBuffer(&mBuffer);
88 // res == OK and mBuffer.frameCount == 0, doesn't seem to happen now 7/18/2014.
90 // By API spec, if res != OK, then mBuffer.frameCount == 0.
92 ALOG_ASSERT(res == OK || mBuffer.frameCount == 0);
93 if (res != OK || mBuffer.frameCount == 0) { // not needed by API spec, but to be safe
    [all...]
  /frameworks/av/media/libstagefright/
AVIExtractor.cpp 80 sp<ABuffer> mBuffer;
231 if (mBuffer != NULL) {
232 mBuffer->setRange(0, 0);
237 size_t prevCapacity = (mBuffer != NULL) ? mBuffer->capacity() : 0;
240 CHECK(mBuffer == NULL || mBuffer->size() == 0);
245 if (mBuffer != NULL && mBuffer->offset() > 0) {
246 memmove(mBuffer->base(), mBuffer->data(), mBuffer->size())
    [all...]
  /device/generic/goldfish/camera/jpeg-stub/
Compressor.cpp 41 return mDestManager.mBuffer;
209 manager->mBuffer.resize(16 * 1024);
210 manager->next_output_byte = &manager->mBuffer[0];
211 manager->free_in_buffer = manager->mBuffer.size();
220 size_t oldSize = manager->mBuffer.size();
221 manager->mBuffer.resize(oldSize * 2);
222 manager->next_output_byte = &manager->mBuffer[oldSize];
223 manager->free_in_buffer = manager->mBuffer.size() - oldSize;
232 manager->mBuffer.resize(manager->mBuffer.size() - manager->free_in_buffer)
    [all...]
  /system/libhidl/base/
HidlSupport.cpp 141 : mBuffer(kEmptyString),
209 return std::string(mBuffer, mSize);
226 mBuffer = buf;
235 mBuffer = std::move(other.mBuffer);
244 if (mOwnsBuffer && (mBuffer != kEmptyString)) {
245 free(const_cast<char *>(static_cast<const char *>(mBuffer)));
248 mBuffer = kEmptyString;
259 mBuffer = data;
265 return mBuffer;
    [all...]
  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
fifo.h 38 // the end of mBuffer. Only the indices are wasted, not any memory.
40 void *mBuffer; // pointer to caller-allocated buffer of size mFrameCount frames
  /cts/suite/audio_quality/lib/src/
SignalProcessingImpl.h 52 RWBuffer mBuffer;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetServByName/
GetServByName.c 24 char mBuffer[65536];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetServByPort/
GetServByPort.c 25 char mBuffer[65536];
  /external/drrickorang/LoopbackApp/app/src/main/jni/audio_utils/
fifo.h 38 // the end of mBuffer. Only the indices are wasted, not any memory.
40 void *mBuffer; // pointer to caller-allocated buffer of size mFrameCount frames
  /frameworks/av/media/libstagefright/include/media/stagefright/
DataURISource.h 39 sp<ABuffer> mBuffer;
  /frameworks/base/libs/hwui/
FrameInfo.h 72 explicit UiFrameInfoBuilder(int64_t* buffer) : mBuffer(buffer) {
73 memset(mBuffer, 0, UI_THREAD_FRAME_INFO_SIZE * sizeof(int64_t));
95 return mBuffer[static_cast<int>(index)];
98 int64_t* mBuffer;
  /frameworks/webview/chromium/plat_support/
graphic_buffer_impl.h 48 sp<android::GraphicBuffer> mBuffer;

Completed in 1037 milliseconds

1 2 3 45 6 7 8 91011>>