Home
last modified time | relevance | path

Searched refs:mHandle (Results 1 – 25 of 33) sorted by relevance

12

/frameworks/media/libvideoeditor/lvpp/
DI420ColorConverter.cpp23 mHandle = dlopen("libI420colorconvert.so", RTLD_NOW); in I420ColorConverter()
25 if (mHandle == NULL) { in I420ColorConverter()
32 (void (*)(I420ColorConverter*)) dlsym(mHandle, "getI420ColorConverter"); in I420ColorConverter()
36 dlclose(mHandle); in I420ColorConverter()
37 mHandle = NULL; in I420ColorConverter()
48 return mHandle != NULL; in isLoaded()
52 if (mHandle) { in ~I420ColorConverter()
53 dlclose(mHandle); in ~I420ColorConverter()
DI420ColorConverter.h32 void* mHandle;
/frameworks/base/libs/binder/
DBpBinder.cpp90 : mHandle(handle) in BpBinder()
95 LOGV("Creating BpBinder %p handle %d\n", this, mHandle); in BpBinder()
165 mHandle, code, data, reply, flags); in transact()
193 LOGV("Requesting death notification: %p handle %d\n", this, mHandle); in linkToDeath()
196 self->requestDeathNotification(mHandle, this); in linkToDeath()
229 LOGV("Clearing death notification: %p handle %d\n", this, mHandle); in unlinkToDeath()
231 self->clearDeathNotification(mHandle, this); in unlinkToDeath()
246 this, mHandle, mObitsSent ? "true" : "false"); in sendObituary()
254 LOGV("Clearing sent death notification: %p handle %d\n", this, mHandle); in sendObituary()
256 self->clearDeathNotification(mHandle, this); in sendObituary()
[all …]
/frameworks/base/media/libstagefright/omx/
DOMXNodeInstance.cpp88 mHandle(NULL), in OMXNodeInstance()
94 CHECK_EQ(mHandle, NULL); in ~OMXNodeInstance()
98 CHECK_EQ(mHandle, NULL); in setHandle()
100 mHandle = handle; in setHandle()
141 CHECK_EQ(OMX_GetState(mHandle, &state), OMX_ErrorNone); in freeNode()
149 while ((err = OMX_GetState(mHandle, &state)) == OMX_ErrorNone in freeNode()
178 while ((err = OMX_GetState(mHandle, &state)) == OMX_ErrorNone in freeNode()
206 static_cast<OMX_COMPONENTTYPE *>(mHandle)); in freeNode()
209 mHandle = NULL; in freeNode()
228 OMX_ERRORTYPE err = OMX_SendCommand(mHandle, cmd, param, NULL); in sendCommand()
[all …]
/frameworks/base/media/libmediaplayerservice/
DTestPlayerStub.cpp64 mHandle(NULL), mNewPlayer(NULL), mDeletePlayer(NULL), in TestPlayerStub()
117 if (!isTestUrl(url) || NULL != mHandle) { in setDataSource()
135 mHandle = ::dlopen(mFilename, RTLD_NOW | RTLD_GLOBAL); in setDataSource()
136 if (!mHandle) { in setDataSource()
144 mNewPlayer = reinterpret_cast<NEW_PLAYER>(dlsym(mHandle, in setDataSource()
155 mDeletePlayer = reinterpret_cast<DELETE_PLAYER>(dlsym(mHandle, in setDataSource()
184 if (mHandle) { in resetInternal()
185 ::dlclose(mHandle); in resetInternal()
186 mHandle = NULL; in resetInternal()
/frameworks/base/core/java/android/webkit/
DClientCertRequestHandler.java35 private final int mHandle; field in ClientCertRequestHandler
43 mHandle = handle; in ClientCertRequestHandler()
57 mBrowserFrame.nativeSslClientCert(mHandle, null, null); in proceed()
61 mBrowserFrame.nativeSslClientCert(mHandle, privateKeyBytes, chainBytes); in proceed()
68 mBrowserFrame.nativeSslClientCert(mHandle, null, null); in ignore()
76 mBrowserFrame.nativeSslClientCert(mHandle, null, null); in cancel()
/frameworks/base/media/libstagefright/codecs/avc/enc/
DAVCEncoder.cpp183 mHandle = new tagAVCHandle; in AVCEncoder()
184 memset(mHandle, 0, sizeof(tagAVCHandle)); in AVCEncoder()
185 mHandle->AVCObject = NULL; in AVCEncoder()
186 mHandle->userData = this; in AVCEncoder()
187 mHandle->CBAVC_DPBAlloc = DpbAllocWrapper; in AVCEncoder()
188 mHandle->CBAVC_FrameBind = BindFrameWrapper; in AVCEncoder()
189 mHandle->CBAVC_FrameUnbind = UnbindFrameWrapper; in AVCEncoder()
190 mHandle->CBAVC_Malloc = MallocWrapper; in AVCEncoder()
191 mHandle->CBAVC_Free = FreeWrapper; in AVCEncoder()
203 delete mHandle; in ~AVCEncoder()
[all …]
/frameworks/base/core/java/android/widget/
DSlidingDrawer.java100 private View mHandle; field in SlidingDrawer
237 mHandle = findViewById(mHandleId); in onFinishInflate()
238 if (mHandle == null) { in onFinishInflate()
242 mHandle.setOnClickListener(new DrawerToggler()); in onFinishInflate()
264 final View handle = mHandle; in onMeasure()
283 final View handle = mHandle; in dispatchDraw()
317 final View handle = mHandle; in onLayout()
359 final View handle = mHandle; in onInterceptTouchEvent()
379 final int top = mHandle.getTop(); in onInterceptTouchEvent()
383 final int left = mHandle.getLeft(); in onInterceptTouchEvent()
[all …]
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/
DSoftMPEG4.cpp67 mHandle(new tagvideoDecControls), in SoftMPEG4()
92 PVCleanUpVideoDecoder(mHandle); in ~SoftMPEG4()
95 delete mHandle; in ~SoftMPEG4()
96 mHandle = NULL; in ~SoftMPEG4()
166 memset(mHandle, 0, sizeof(tagvideoDecControls)); in initDecoder()
371 mHandle, vol_data, &vol_size, 1, mWidth, mHeight, mode); in onQueueFilled()
381 MP4DecodingMode actualMode = PVGetDecBitstreamMode(mHandle); in onQueueFilled()
388 PVSetPostProcType((VideoDecControls *) mHandle, 0); in onQueueFilled()
411 PVSetReferenceYUV(mHandle, outHeader->pBuffer); in onQueueFilled()
425 mHandle, &bitstream, &timestamp, &bufferSize, in onQueueFilled()
[all …]
DSoftMPEG4.h60 tagvideoDecControls *mHandle; member
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/
DM4vH263Encoder.cpp183 mHandle = new tagvideoEncControls; in M4vH263Encoder()
184 memset(mHandle, 0, sizeof(tagvideoEncControls)); in M4vH263Encoder()
196 delete mHandle; in ~M4vH263Encoder()
321 if (!PVInitVideoEncoder(mHandle, mEncParams)) { in start()
328 if (!PVGetMaxVideoFrameSize(mHandle, &maxSize)) { in start()
363 CHECK(PVCleanUpVideoEncoder(mHandle)); in stop()
388 if (!PVGetVolHeader(mHandle, outPtr, &dataLength, 0)) { in read()
460 if (!PVEncodeVideoFrame(mHandle, &vin, &vout, in read()
462 !PVGetHintTrack(mHandle, &hintTrack)) { in read()
470 CHECK_EQ(NULL, PVGetOverrunBuffer(mHandle)); in read()
/frameworks/base/libs/gui/
DSensor.cpp33 : mHandle(0), mType(0), in Sensor()
43 mHandle = hwSensor->handle; in Sensor()
65 return mHandle; in getHandle()
143 offset += write(buffer, offset, mHandle); in flatten()
181 offset += read(buffer, offset, &mHandle); in unflatten()
/frameworks/base/core/java/android/hardware/
DSensor.java128 private int mHandle; field in Sensor
199 return mHandle; in getHandle()
/frameworks/base/media/java/android/mtp/
DMtpObjectInfo.java25 private int mHandle; field in MtpObjectInfo
56 return mHandle; in getObjectHandle()
/frameworks/base/media/libstagefright/codecs/on2/h264dec/
DSoftAVC.cpp65 mHandle(NULL), in SoftAVC()
85 H264SwDecRelease(mHandle); in ~SoftAVC()
86 mHandle = NULL; in ~SoftAVC()
163 if (H264SwDecInit(&mHandle, 0) == H264SWDEC_OK) { in initDecoder()
339 ret = H264SwDecDecode(mHandle, &inPicture, &outPicture); in onQueueFilled()
347 CHECK(H264SwDecGetInfo(mHandle, &decoderInfo) == H264SWDEC_OK); in onQueueFilled()
360 if (H264SwDecNextPicture(mHandle, &decodedPicture, 0) in onQueueFilled()
396 H264SwDecNextPicture(mHandle, &decodedPicture, 0) in onQueueFilled()
479 H264SwDecNextPicture(mHandle, &decodedPicture, 1 /* flush */)) { in drainAllOutputBuffers()
DSoftAVC.h64 void *mHandle; member
/frameworks/base/media/mtp/
DMtpObjectInfo.cpp28 : mHandle(handle), in MtpObjectInfo()
94 LOGD("MtpObject Info %08X: %s\n", mHandle, mName); in print()
DMtpServer.h75 MtpObjectHandle mHandle;
83 : mHandle(handle), mPath(path), mSize(size), mFormat(format), mFD(fd) { in ObjectEdit()
DMtpObjectInfo.h28 MtpObjectHandle mHandle;
/frameworks/base/include/binder/
DBpBinder.h32 inline int32_t handle() const { return mHandle; } in handle()
100 const int32_t mHandle;
/frameworks/base/media/libstagefright/include/
DM4vH263Decoder.h52 tagvideoDecControls *mHandle; member
DM4vH263Encoder.h66 tagvideoEncControls *mHandle; member
DAVCDecoder.h54 tagAVCHandle *mHandle; member
DAVCEncoder.h74 tagAVCHandle *mHandle; member
/frameworks/base/include/gui/
DSensor.h82 int32_t mHandle; variable

12