/system/core/include/cutils/ |
native_handle.h | 26 int version; /* sizeof(native_handle_t) */ 30 } native_handle_t; typedef in typeref:struct:native_handle 35 * closes the file descriptors contained in this native_handle_t 40 int native_handle_close(const native_handle_t* h); 46 * creates a native_handle_t and initializes it. must be destroyed with 50 native_handle_t* native_handle_create(int numFds, int numInts); 55 * frees a native_handle_t allocated with native_handle_create(). 56 * This ONLY frees the memory allocated for the native_handle_t, but doesn't 62 int native_handle_delete(native_handle_t* h);
|
/hardware/qcom/display/msm8960/libgenlock/ |
genlock.h | 62 genlock_status_t genlock_create_lock(native_handle_t *buffer_handle); 71 genlock_status_t genlock_release_lock(native_handle_t *buffer_handle); 79 genlock_status_t genlock_attach_lock(native_handle_t *buffer_handle); 95 genlock_status_t genlock_lock_buffer(native_handle_t *buffer_handle, 105 genlock_status_t genlock_unlock_buffer(native_handle_t *buffer_handle); 114 genlock_status_t genlock_wait(native_handle_t *buffer_handle, int timeout); 123 genlock_status_t genlock_write_to_read(native_handle_t *buffer_handle,
|
genlock.cpp | 67 genlock_status_t perform_lock_unlock_operation(native_handle_t *buffer_handle, 142 genlock_status_t genlock_create_lock(native_handle_t *buffer_handle) 197 genlock_status_t genlock_release_lock(native_handle_t *buffer_handle) 227 genlock_status_t genlock_attach_lock(native_handle_t *buffer_handle) 275 genlock_status_t genlock_lock_buffer(native_handle_t *buffer_handle, 304 genlock_status_t genlock_unlock_buffer(native_handle_t *buffer_handle) 322 genlock_status_t genlock_wait(native_handle_t *buffer_handle, int timeout) { 359 genlock_status_t genlock_write_to_read(native_handle_t *buffer_handle,
|
/system/core/include/utils/ |
NativeHandle.h | 23 typedef struct native_handle native_handle_t; typedef in typeref:struct:native_handle 29 // Create a refcounted wrapper around a native_handle_t, and declare 33 static sp<NativeHandle> create(native_handle_t* handle, bool ownsHandle); 35 const native_handle_t* handle() const { 43 NativeHandle(native_handle_t* handle, bool ownsHandle); 46 native_handle_t* mHandle;
|
/system/core/libcutils/ |
native_handle.c | 31 native_handle_t* native_handle_create(int numFds, int numInts) 37 size_t mallocSize = sizeof(native_handle_t) + (sizeof(int) * (numFds + numInts)); 38 native_handle_t* h = malloc(mallocSize); 40 h->version = sizeof(native_handle_t); 47 int native_handle_delete(native_handle_t* h) 50 if (h->version != sizeof(native_handle_t)) 57 int native_handle_close(const native_handle_t* h) 59 if (h->version != sizeof(native_handle_t))
|
/system/core/libutils/ |
NativeHandle.cpp | 23 native_handle_t* handle, bool ownsHandle) { 27 NativeHandle::NativeHandle(native_handle_t* handle, bool ownsHandle)
|
/hardware/intel/img/hwcomposer/merrifield/ips/penwell/ |
PnwGrallocBuffer.h | 26 native_handle_t base;
|
/external/drm_gralloc/ |
gralloc_drm_handle.h | 37 native_handle_t base; 62 ((sizeof(struct gralloc_drm_handle_t) - sizeof(native_handle_t))/sizeof(int)) \
|
/frameworks/av/include/camera/ |
ICameraRecordingProxy.h | 87 virtual void releaseRecordingFrameHandle(native_handle_t *handle) = 0;
|
ICameraRecordingProxyListener.h | 40 native_handle_t* handle) = 0;
|
Camera.h | 46 virtual void postRecordingFrameHandleTimestamp(nsecs_t timestamp, native_handle_t* handle) = 0; 119 void releaseRecordingFrameHandle(native_handle_t *handle); 168 virtual void recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle); 179 virtual void releaseRecordingFrameHandle(native_handle_t* handle);
|
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/ |
TngGrallocBufferMapper.h | 46 native_handle_t* mClonedHandle;
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/tangier/ |
TngGrallocBufferMapper.h | 45 native_handle_t* mClonedHandle;
|
/frameworks/av/include/camera/android/hardware/ |
ICameraClient.h | 43 native_handle_t* handle) = 0;
|
ICamera.h | 102 virtual void releaseRecordingFrameHandle(native_handle_t *handle) = 0;
|
/hardware/intel/common/omx-components/videocodec/securevideo/moorefield/ |
OMXVideoDecoderAVCSecure.cpp | 175 native_handle_t *native_handle = (native_handle_t *)pInput->pBuffer; 279 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer; 355 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer; 382 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer; 451 native_handle_t *native_handle = (native_handle_t *)buffer->pBuffer [all...] |
/external/drm_hwcomposer/ |
drmhwcomposer.h | 84 DrmHwcNativeHandle(const gralloc_module_t *gralloc, native_handle_t *handle) 116 native_handle_t *handle_ = NULL;
|
/frameworks/av/camera/ |
ICameraRecordingProxyListener.cpp | 52 void recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle) { 94 native_handle_t* handle = data.readNativeHandle();
|
ICameraClient.cpp | 85 void recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle) { 147 native_handle_t* handle = data.readNativeHandle();
|
/hardware/libhardware/modules/gralloc/ |
gralloc_priv.h | 83 return (((sizeof(private_handle_t) - sizeof(native_handle_t))/sizeof(int)) - sNumFds);
|
/hardware/ti/omap4-aah/hwc/ |
hal_public.h | 46 native_handle_t base;
|
/hardware/ti/omap4xxx/hwc/ |
hal_public.h | 46 native_handle_t base;
|
/hardware/qcom/display/msm8996/libgralloc1/ |
gr_priv_handle.h | 36 struct private_handle_t : public native_handle_t { 98 return ((sizeof(private_handle_t) - sizeof(native_handle_t)) / sizeof(int)) - kNumFds;
|
/frameworks/av/include/media/stagefright/ |
CameraSourceTimeLapse.h | 154 native_handle_t* handle);
|
/hardware/libhardware/include/hardware/ |
tv_input.h | 293 native_handle_t* sideband_stream_source_handle;
|