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

12

/frameworks/media/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.java36 private final int mHandle; field in class:ClientCertRequestHandler
44 mHandle = handle;
60 mBrowserFrame.nativeSslClientCert(mHandle, privateKeyBytes, chainBytes);
66 mBrowserFrame.nativeSslClientCert(mHandle, null, null);
79 mBrowserFrame.nativeSslClientCert(mHandle, null, null);
91 mBrowserFrame.nativeSslClientCert(mHandle, null, null);
/frameworks/base/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;
/frameworks/base/libs/binder/
H A DBpBinder.cpp90 : mHandle(handle)
95 LOGV("Creating BpBinder %p handle %d\n", this, mHandle);
165 mHandle, code, data, reply, flags);
193 LOGV("Requesting death notification: %p handle %d\n", this, mHandle);
196 self->requestDeathNotification(mHandle, this);
229 LOGV("Clearing death notification: %p handle %d\n", this, mHandle);
231 self->clearDeathNotification(mHandle, this);
246 this, mHandle, mObitsSent ? "true" : "false");
254 LOGV("Clearing sent death notification: %p handle %d\n", this, mHandle);
256 self->clearDeathNotification(mHandle, thi
[all...]
/frameworks/base/media/libstagefright/omx/
H A DOMXNodeInstance.cpp88 mHandle(NULL),
94 CHECK_EQ(mHandle, NULL);
98 CHECK_EQ(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
199 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.java100 private View mHandle; field in class:SlidingDrawer
237 mHandle = findViewById(mHandleId);
238 if (mHandle == null) {
242 mHandle.setOnClickListener(new DrawerToggler());
264 final View handle = mHandle;
283 final View handle = mHandle;
317 final View handle = mHandle;
359 final View handle = mHandle;
379 final int top = mHandle.getTop();
383 final int left = mHandle
[all...]
/frameworks/base/media/libstagefright/codecs/avc/enc/
H A DAVCEncoder.cpp183 mHandle = new tagAVCHandle;
184 memset(mHandle, 0, sizeof(tagAVCHandle));
185 mHandle->AVCObject = NULL;
186 mHandle->userData = this;
187 mHandle->CBAVC_DPBAlloc = DpbAllocWrapper;
188 mHandle->CBAVC_FrameBind = BindFrameWrapper;
189 mHandle->CBAVC_FrameUnbind = UnbindFrameWrapper;
190 mHandle->CBAVC_Malloc = MallocWrapper;
191 mHandle->CBAVC_Free = FreeWrapper;
203 delete mHandle;
[all...]
/frameworks/base/media/libstagefright/include/
H A DM4vH263Decoder.h52 tagvideoDecControls *mHandle; member in struct:android::M4vH263Decoder
H A DAVCDecoder.h54 tagAVCHandle *mHandle; member in struct:android::AVCDecoder
H A DAVCEncoder.h74 tagAVCHandle *mHandle; member in struct:android::AVCEncoder
H A DM4vH263Encoder.h66 tagvideoEncControls *mHandle; member in struct:android::M4vH263Encoder
/frameworks/base/media/mtp/
H A DMtpObjectInfo.h28 MtpObjectHandle mHandle; member in class:android::MtpObjectInfo
H A DMtpObjectInfo.cpp28 : mHandle(handle),
94 LOGD("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/base/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);
430 mHandle,
[all...]
H A DSoftMPEG4.h60 tagvideoDecControls *mHandle; member in struct:android::SoftMPEG4
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/
H A DM4vH263Encoder.cpp183 mHandle = new tagvideoEncControls;
184 memset(mHandle, 0, sizeof(tagvideoEncControls));
196 delete mHandle;
321 if (!PVInitVideoEncoder(mHandle, mEncParams)) {
328 if (!PVGetMaxVideoFrameSize(mHandle, &maxSize)) {
363 CHECK(PVCleanUpVideoEncoder(mHandle));
388 if (!PVGetVolHeader(mHandle, outPtr, &dataLength, 0)) {
460 if (!PVEncodeVideoFrame(mHandle, &vin, &vout,
462 !PVGetHintTrack(mHandle, &hintTrack)) {
470 CHECK_EQ(NULL, PVGetOverrunBuffer(mHandle));
[all...]
/frameworks/base/libs/gui/
H A DSensor.cpp33 : mHandle(0), mType(0),
43 mHandle = hwSensor->handle;
65 return mHandle;
143 offset += write(buffer, offset, mHandle);
181 offset += read(buffer, offset, &mHandle);
/frameworks/base/include/binder/
H A DBpBinder.h32 inline int32_t handle() const { return mHandle; }
100 const int32_t mHandle; member in class:android::BpBinder
/frameworks/base/include/gui/
H A DSensor.h82 int32_t mHandle; member in class:android::Sensor
/frameworks/base/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 */)) {

Completed in 427 milliseconds

12