Searched refs:mHandle (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/av/libvideoeditor/lvpp/
H A DI420ColorConverter.cpp23 mHandle = dlopen("libI420colorconvert.so", RTLD_NOW);
25 if (mHandle == NULL) {
32 (void (*)(I420ColorConverter*)) dlsym(mHandle, "getI420ColorConverter");
36 dlclose(mHandle);
37 mHandle = NULL;
48 return mHandle != NULL;
52 if (mHandle) {
53 dlclose(mHandle);
H A DI420ColorConverter.h32 void* mHandle; member in class:I420ColorConverter
/frameworks/base/core/java/android/webkit/
H A DClientCertRequestHandler.java38 private final int mHandle; field in class:ClientCertRequestHandler
46 mHandle = handle;
71 mBrowserFrame.nativeSslClientCert(mHandle, 0, null);
84 mBrowserFrame.nativeSslClientCert(mHandle, ctx, chainBytes);
95 mBrowserFrame.nativeSslClientCert(mHandle, key, chainBytes);
106 mBrowserFrame.nativeSslClientCert(mHandle, 0, null);
118 mBrowserFrame.nativeSslClientCert(mHandle, 0, null);
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.cpp64 mHandle(NULL), mNewPlayer(NULL), mDeletePlayer(NULL),
117 if (!isTestUrl(url) || NULL != mHandle) {
135 mHandle = ::dlopen(mFilename, RTLD_NOW | RTLD_GLOBAL);
136 if (!mHandle) {
144 mNewPlayer = reinterpret_cast<NEW_PLAYER>(dlsym(mHandle,
155 mDeletePlayer = reinterpret_cast<DELETE_PLAYER>(dlsym(mHandle,
184 if (mHandle) {
185 ::dlclose(mHandle);
186 mHandle = NULL;
H A DTestPlayerStub.h119 void *mHandle; // returned by dlopen member in class:android::TestPlayerStub
/frameworks/native/libs/binder/
H A DBpBinder.cpp90 : mHandle(handle)
95 ALOGV("Creating BpBinder %p handle %d\n", this, mHandle);
165 mHandle, code, data, reply, flags);
193 ALOGV("Requesting death notification: %p handle %d\n", this, mHandle);
196 self->requestDeathNotification(mHandle, this);
229 ALOGV("Clearing death notification: %p handle %d\n", this, mHandle);
231 self->clearDeathNotification(mHandle, this);
246 this, mHandle, mObitsSent ? "true" : "false");
254 ALOGV("Clearing sent death notification: %p handle %d\n", this, mHandle);
256 self->clearDeathNotification(mHandle, thi
[all...]
/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp88 mHandle(NULL),
94 CHECK(mHandle == NULL);
98 CHECK(mHandle == NULL);
100 mHandle = handle;
141 CHECK_EQ(OMX_GetState(mHandle, &state), OMX_ErrorNone);
149 while ((err = OMX_GetState(mHandle, &state)) == OMX_ErrorNone
178 while ((err = OMX_GetState(mHandle, &state)) == OMX_ErrorNone
206 static_cast<OMX_COMPONENTTYPE *>(mHandle));
209 mHandle = NULL;
228 OMX_ERRORTYPE err = OMX_SendCommand(mHandle, cm
[all...]
/frameworks/base/core/java/android/hardware/
H A DSensor.java128 private int mHandle; field in class:Sensor
198 return mHandle;
/frameworks/base/media/java/android/mtp/
H A DMtpObjectInfo.java25 private int mHandle; field in class:MtpObjectInfo
56 return mHandle;
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java101 private View mHandle; field in class:SlidingDrawer
238 mHandle = findViewById(mHandleId);
239 if (mHandle == null) {
243 mHandle.setOnClickListener(new DrawerToggler());
265 final View handle = mHandle;
284 final View handle = mHandle;
318 final View handle = mHandle;
360 final View handle = mHandle;
380 final int top = mHandle.getTop();
384 final int left = mHandle
[all...]
/frameworks/av/media/mtp/
H A DMtpObjectInfo.h28 MtpObjectHandle mHandle; member in class:android::MtpObjectInfo
H A DMtpObjectInfo.cpp28 : mHandle(handle),
94 ALOGD("MtpObject Info %08X: %s\n", mHandle, mName);
H A DMtpServer.h75 MtpObjectHandle mHandle; member in class:android::MtpServer::ObjectEdit
83 : mHandle(handle), mPath(path), mSize(size), mFormat(format), mFD(fd) {
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp67 mHandle(new tagvideoDecControls),
92 PVCleanUpVideoDecoder(mHandle);
95 delete mHandle;
96 mHandle = NULL;
166 memset(mHandle, 0, sizeof(tagvideoDecControls));
371 mHandle, vol_data, &vol_size, 1, mWidth, mHeight, mode);
381 MP4DecodingMode actualMode = PVGetDecBitstreamMode(mHandle);
388 PVSetPostProcType((VideoDecControls *) mHandle, 0);
411 PVSetReferenceYUV(mHandle, outHeader->pBuffer);
429 mHandle,
[all...]
H A DSoftMPEG4.h60 tagvideoDecControls *mHandle; member in struct:android::SoftMPEG4
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp182 mHandle(new tagAVCHandle),
201 CHECK(mHandle != NULL);
202 memset(mHandle, 0, sizeof(tagAVCHandle));
203 mHandle->AVCObject = NULL;
204 mHandle->userData = this;
205 mHandle->CBAVC_DPBAlloc = DpbAllocWrapper;
206 mHandle->CBAVC_FrameBind = BindFrameWrapper;
207 mHandle->CBAVC_FrameUnbind = UnbindFrameWrapper;
208 mHandle->CBAVC_Malloc = MallocWrapper;
209 mHandle
[all...]
H A DSoftAVCEncoder.h90 tagAVCHandle *mHandle; member in struct:android::SoftAVCEncoder
/frameworks/native/libs/gui/
H A DSensor.cpp33 : mHandle(0), mType(0),
44 mHandle = hwSensor->handle;
66 return mHandle;
145 offset += write(buffer, offset, mHandle);
184 offset += read(buffer, offset, &mHandle);
/frameworks/native/include/binder/
H A DBpBinder.h32 inline int32_t handle() const { return mHandle; }
100 const int32_t mHandle; member in class:android::BpBinder
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp90 mHandle(new tagvideoEncControls),
114 CHECK(mHandle != NULL);
115 memset(mHandle, 0, sizeof(tagvideoEncControls));
192 if (!PVInitVideoEncoder(mHandle, mEncParams)) {
210 PVCleanUpVideoEncoder(mHandle);
218 delete mHandle;
219 mHandle = NULL;
616 if (!PVGetVolHeader(mHandle, outPtr, &dataLength, 0)) {
666 if (!PVEncodeVideoFrame(mHandle, &vin, &vout,
668 !PVGetHintTrack(mHandle,
[all...]
H A DSoftMPEG4Encoder.h73 tagvideoEncControls *mHandle; member in struct:android::SoftMPEG4Encoder
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.h64 void *mHandle; member in struct:android::SoftAVC
H A DSoftAVC.cpp65 mHandle(NULL),
86 H264SwDecRelease(mHandle);
87 mHandle = NULL;
164 if (H264SwDecInit(&mHandle, 0) == H264SWDEC_OK) {
339 ret = H264SwDecDecode(mHandle, &inPicture, &outPicture);
347 CHECK(H264SwDecGetInfo(mHandle, &decoderInfo) == H264SWDEC_OK);
360 if (H264SwDecNextPicture(mHandle, &decodedPicture, 0)
401 H264SwDecNextPicture(mHandle, &decodedPicture, 0)
480 H264SwDecNextPicture(mHandle, &decodedPicture, 1 /* flush */)) {
/frameworks/native/include/gui/
H A DSensor.h82 int32_t mHandle; member in class:android::Sensor
/frameworks/av/media/libstagefright/include/
H A DOMXNodeInstance.h99 OMX_HANDLETYPE mHandle; member in struct:android::OMXNodeInstance

Completed in 318 milliseconds

12