Searched defs:cookie (Results 1 - 6 of 6) sorted by relevance
/hardware/ti/omap4xxx/camera/ |
H A D | SensorListener.cpp | 173 void SensorListener::setCallbacks(orientation_callback_t orientation_cb, void *cookie) { argument 179 mCbCookie = cookie;
|
H A D | BaseCameraAdapter.cpp | 131 void BaseCameraAdapter::enableMsgType(int32_t msgs, frame_callback callback, event_callback eventCb, void* cookie) argument 139 mFrameSubscribers.add((int) cookie, callback); 143 mFrameDataSubscribers.add((int) cookie, callback); 147 mImageSubscribers.add((int) cookie, callback); 151 mRawSubscribers.add((int) cookie, callback); 155 mVideoSubscribers.add((int) cookie, callback); 159 mFocusSubscribers.add((int) cookie, eventCb); 160 mShutterSubscribers.add((int) cookie, eventCb); 161 mZoomSubscribers.add((int) cookie, eventCb); 162 mFaceSubscribers.add((int) cookie, eventC 172 disableMsgType(int32_t msgs, void* cookie) argument [all...] |
H A D | CameraHal.cpp | 61 static void orientation_cb(uint32_t orientation, uint32_t tilt, void* cookie) { argument 64 if (cookie) { 65 camera = (CameraHal*) cookie; 91 @param[in] user Callback cookie
|
/hardware/libhardware/include/hardware/ |
H A D | audio_effect.h | 746 typedef int32_t (* buffer_function_t)(void *cookie, audio_buffer_t *buffer); 751 void *cookie; // for use by client of buffer provider functions member in struct:buffer_provider_s
|
/hardware/ril/libril/ |
H A D | ril.cpp | 312 void* cookie) { 310 nullParcelReleaseFunction(const uint8_t* data, size_t dataSize, const size_t* objects, size_t objectsSize, void* cookie) argument
|
/hardware/ti/omap4xxx/camera/inc/ |
H A D | CameraHal.h | 420 virtual void enableMsgType(int32_t msgs, frame_callback frameCb=NULL, event_callback eventCb=NULL, void* cookie=NULL) = 0; 421 virtual void disableMsgType(int32_t msgs, void* cookie) = 0; 458 FrameProvider(FrameNotifier *fn, void* cookie, frame_callback frameCallback) argument 459 :mFrameNotifier(fn), mCookie(cookie),mFrameCallback(frameCallback) { } 479 EventProvider(MessageNotifier *mn, void* cookie, event_callback eventCallback) argument 480 :mEventNotifier(mn), mCookie(cookie), mEventCallback(eventCallback) {} 806 void *cookie = NULL) = 0; 807 virtual void disableMsgType(int32_t msgs, void* cookie) = 0;
|
Completed in 161 milliseconds