Searched refs:buffer (Results 1 - 25 of 526) sorted by relevance

1234567891011>>

/hardware/intel/common/libva/va/
H A Dsysdeps.h51 # define va_log_error(buffer) do { ALOGE("%s", buffer); } while (0)
52 # define va_log_info(buffer) do { ALOGI("%s", buffer); } while (0)
54 # define va_log_error(buffer) do { LOGE("%s", buffer); } while (0)
55 # define va_log_info(buffer) do { LOGI("%s", buffer); } while (0)
60 #define va_log_error(buffer) do { \
61 fprintf(stderr, "libva error: %s", buffer); \
[all...]
/hardware/interfaces/audio/effect/2.0/
H A DIEffectBufferProviderCallback.hal25 * Called to retrieve a buffer where data should read from by 'process'
28 * @return buffer audio buffer for processing
30 getBuffer() generates (AudioBuffer buffer);
33 * Called to provide a buffer with the data written by 'process' function.
35 * @param buffer audio buffer for processing
37 putBuffer(AudioBuffer buffer);
/hardware/interfaces/automotive/evs/1.0/
H A DIEvsCameraStream.hal35 oneway deliverFrame(BufferDesc buffer);
H A DIEvsDisplay.hal62 * This call returns a handle to a frame buffer associated with the display.
64 * The returned buffer may be locked and written to by software and/or GL. This buffer
68 getTargetBuffer() generates (BufferDesc buffer);
72 * This call tells the display that the buffer is ready for display.
74 * The buffer is no longer valid for use by the client after this call.
75 * There is no maximum time the caller may hold onto the buffer before making this
76 * call. The buffer may be returned at any time and in any DisplayState, but all
79 returnTargetBufferForDisplay(BufferDesc buffer) generates (EvsResult result);
/hardware/qcom/display/msm8996/sdm/libs/core/
H A Ddump_impl.cpp37 DisplayError DumpInterface::GetDump(char *buffer, uint32_t length) { argument
38 if (!buffer || !length) {
42 buffer[0] = '\0';
43 DumpImpl::AppendString(buffer, length, "\n-------- Snapdragon Display Manager --------");
45 DumpImpl::dump_list_[i]->AppendDump(buffer, length);
47 DumpImpl::AppendString(buffer, length, "\n\n");
60 void DumpImpl::AppendString(char *buffer, uint32_t length, const char *format, ...) { argument
61 uint32_t filled = UINT32(strlen(buffer));
66 buffer += filled;
70 vsnprintf(buffer, lengt
[all...]
H A Ddump_impl.h34 // To be implemented in the modules which will add dump information to final dump buffer.
35 // buffer address & length will be already adjusted before calling into these modules.
36 virtual void AppendDump(char *buffer, uint32_t length) = 0;
37 static void AppendString(char *buffer, uint32_t length, const char *format, ...);
/hardware/qcom/display/msm8998/sdm/libs/core/
H A Ddump_impl.cpp37 DisplayError DumpInterface::GetDump(char *buffer, uint32_t length) { argument
38 if (!buffer || !length) {
42 buffer[0] = '\0';
43 DumpImpl::AppendString(buffer, length, "\n-------- Snapdragon Display Manager --------");
45 DumpImpl::dump_list_[i]->AppendDump(buffer, length);
47 DumpImpl::AppendString(buffer, length, "\n\n");
60 void DumpImpl::AppendString(char *buffer, uint32_t length, const char *format, ...) { argument
61 uint32_t filled = UINT32(strlen(buffer));
66 buffer += filled;
70 vsnprintf(buffer, lengt
[all...]
H A Ddump_impl.h34 // To be implemented in the modules which will add dump information to final dump buffer.
35 // buffer address & length will be already adjusted before calling into these modules.
36 virtual void AppendDump(char *buffer, uint32_t length) = 0;
37 static void AppendString(char *buffer, uint32_t length, const char *format, ...);
/hardware/intel/img/hwcomposer/merrifield/common/buffers/
H A DGraphicBuffer.cpp43 bool GraphicBuffer::isProtectedBuffer(GraphicBuffer *buffer) argument
45 if (buffer == NULL) {
49 return isProtectedUsage(buffer->mUsage);
61 bool GraphicBuffer::isCompressionBuffer(GraphicBuffer *buffer) argument
63 if (buffer == NULL) {
67 return isCompressionUsage(buffer->mUsage);
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/buffers/
H A DGraphicBuffer.cpp43 bool GraphicBuffer::isProtectedBuffer(GraphicBuffer *buffer) argument
45 if (buffer == NULL) {
49 return isProtectedUsage(buffer->mUsage);
61 bool GraphicBuffer::isCompressionBuffer(GraphicBuffer *buffer) argument
63 if (buffer == NULL) {
67 return isCompressionUsage(buffer->mUsage);
/hardware/interfaces/gnss/1.0/default/
H A DGnssDebug.cpp46 char buffer[kMaxDebugStrLen + 1]; local
47 size_t length = mGnssDebugIface->get_internal_state(buffer, kMaxDebugStrLen);
49 buffer[length] = '\0';
50 ALOGD("Gnss Debug Data: %s", buffer);
/hardware/interfaces/media/omx/1.0/
H A DIOmxBufferSource.hal51 * onInputBufferAdded() is invoked after a new input buffer is added to the
55 * @param[in] buffer is the id of the added buffer.
57 oneway onInputBufferAdded(BufferId buffer);
60 * onInputBufferEmptied() is invoked after an input buffer is emptied. This
63 * @param[in] buffer is the id of the emptied buffer.
64 * @param[in] fence is the fence associated with the buffer.
66 oneway onInputBufferEmptied(BufferId buffer, Fence fence);
/hardware/intel/img/hwcomposer/merrifield/ips/penwell/
H A DPnwGrallocBufferMapper.cpp24 PnwGrallocBufferMapper::PnwGrallocBufferMapper(DataBuffer& buffer) argument
25 : GrallocBufferMapperBase(buffer)
/hardware/intel/common/libmix/videodecoder/securevideo/merrifield/
H A DVideoDecoderAVCSecure.h27 virtual Decode_Status start(VideoConfigBuffer *buffer);
30 // data in the decoded buffer is all encrypted.
31 virtual Decode_Status decode(VideoDecodeBuffer *buffer);
33 virtual Decode_Status decodeFrame(VideoDecodeBuffer *buffer, vbp_data_h264 *data);
37 Decode_Status parseClassicSliceHeader(VideoDecodeBuffer *buffer, vbp_data_h264 *data);
38 Decode_Status parseModularSliceHeader(VideoDecodeBuffer *buffer, vbp_data_h264 *data);
43 Decode_Status processClassicInputBuffer(VideoDecodeBuffer *buffer, vbp_data_h264 **data);
44 Decode_Status processModularInputBuffer(VideoDecodeBuffer *buffer, vbp_data_h264 **data);
60 uint32_t sliceStartOffset; // offset of Slice unit in the firewalled buffer
/hardware/interfaces/audio/effect/2.0/default/
H A DAudioBufferManager.cpp27 bool AudioBufferManager::wrap(const AudioBuffer& buffer, sp<AudioBufferWrapper>* wrapper) { argument
28 // Check if we have this buffer already
30 ssize_t idx = mBuffers.indexOfKey(buffer.id);
34 (*wrapper)->getHalBuffer()->frameCount = buffer.frameCount;
40 sp<AudioBufferWrapper> tempBuffer(new AudioBufferWrapper(buffer));
43 mBuffers.add(buffer.id, *wrapper);
59 AudioBufferWrapper::AudioBufferWrapper(const AudioBuffer& buffer) : argument
60 mHidlBuffer(buffer), mHalBuffer{ 0, { nullptr } } {
79 ALOGE("IMemory buffer pointer is null");
/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Daudio_parser.h46 int mp3_header_parse(const unsigned char *buffer,
57 int audio_specific_config_parse(const unsigned char *buffer,
60 int audio_specific_config_bitcoding(unsigned char *buffer,
/hardware/intel/common/libva/va/egl/
H A Dva_backend_egl.h32 /* Get EGL ClientBufer buffer index and device id from surface id*/
36 void **buffer
H A Dva_egl.h13 * (lower 16bits is buffer index, upper 16bits
20 EGLClientBuffer *buffer /* out*/
H A Dva_egl.c28 * Gstreamer gst-gltexture has a framework to support associating a buffer
36 * EGLClientBuffer buffer,
51 * the low-level buffer ID (or handle) of the decoded surface to gst-gltexture, and gst-gltexture
67 EGLClientBuffer *buffer /* out*/
77 return va_egl->vaGetEGLClientBufferFromSurface(ctx, surface, buffer);
/hardware/libhardware_legacy/include/hardware_legacy/
H A Duevent.h26 int uevent_next_event(char* buffer, int buffer_length);
/hardware/qcom/display/msm8996/sdm/include/core/
H A Ddump_interface.h50 @param[inout] buffer String buffer allocated by the client. Filled with null terminated dump
52 @param[in] length Length of the string buffer. Length shall be offset adjusted if any.
59 static DisplayError GetDump(char *buffer, uint32_t length);
/hardware/qcom/display/msm8998/sdm/include/core/
H A Ddump_interface.h50 @param[inout] buffer String buffer allocated by the client. Filled with null terminated dump
52 @param[in] length Length of the string buffer. Length shall be offset adjusted if any.
59 static DisplayError GetDump(char *buffer, uint32_t length);
/hardware/qcom/msm8996/kernel-headers/scsi/ufs/
H A Dioctl.h29 __u8 buffer[0]; member in struct:ufs_ioctl_query_data
/hardware/qcom/msm8996/original-kernel-headers/scsi/ufs/
H A Dioctl.h17 * @buffer: data location
19 * Received: buffer and buf_size (available space for transfered data)
41 * User should specify the size of the buffer (buffer[0] below) where
48 * placeholder for the start of the data buffer where kernel will copy
54 __u8 buffer[0]; member in struct:ufs_ioctl_query_data
/hardware/ril/librilutils/
H A Drecord_stream.c37 unsigned char *buffer; member in struct:RecordStream
55 ret->buffer = (unsigned char *)malloc (maxRecordLen + HEADER_SIZE);
57 ret->unconsumed = ret->buffer;
58 ret->read_end = ret->buffer;
59 ret->buffer_end = ret->buffer + maxRecordLen + HEADER_SIZE;
67 free(rs->buffer);
72 /* returns NULL; if there isn't a full record in the buffer */
102 /* one full line in the buffer */
134 /* is there one record already in the buffer? */
142 // if the buffer i
[all...]

Completed in 740 milliseconds

1234567891011>>