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

12

/frameworks/base/opengl/java/android/opengl/
H A DEGLObjectHandle.java25 private final int mHandle; field in class:EGLObjectHandle
28 mHandle = handle;
40 return mHandle;
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLObjectHandle.java25 private final int mHandle; field in class:EGLObjectHandle
28 mHandle = handle;
40 return mHandle;
/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/compile/libbcc/lib/ExecutionEngine/
H A DSymbolResolvers.cpp64 mHandle = ::dlopen(pFileName, flags);
65 if (mHandle == NULL) {
85 assert((mHandle != NULL) && "Invalid DyldSymbolResolver!");
86 return ::dlsym(mHandle, pName);
90 if (mHandle != NULL) {
91 ::dlclose(mHandle);
92 mHandle = 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;
/frameworks/native/libs/gui/
H A DSurfaceControl.cpp52 : mClient(client), mHandle(handle), mGraphicBufferProducer(gbp)
64 mClient->destroySurface(mHandle);
69 mHandle.clear();
90 return lhs->mHandle == rhs->mHandle;
97 return client->setLayerStack(mHandle, layerStack);
103 return client->setLayer(mHandle, layer);
109 return client->setPosition(mHandle, x, y);
115 return client->setSize(mHandle, w, h);
121 return client->hide(mHandle);
[all...]
H A DSensor.cpp33 : mHandle(0), mType(0),
44 mHandle = hwSensor->handle;
75 return mHandle;
146 FlattenableUtils::write(buffer, size, mHandle);
192 FlattenableUtils::read(buffer, size, mHandle);
/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/base/core/java/android/os/
H A DUserHandle.java67 final int mHandle; field in class:UserHandle
217 mHandle = h;
222 return mHandle;
227 return "UserHandle{" + mHandle + "}";
235 return mHandle == other.mHandle;
244 return mHandle;
252 out.writeInt(mHandle);
310 mHandle = in.readInt();
/frameworks/base/media/java/android/mtp/
H A DMtpObjectInfo.java25 private int mHandle; field in class:MtpObjectInfo
56 return mHandle;
/frameworks/base/services/java/com/android/server/am/
H A DUserStartedState.java35 public final UserHandle mHandle; field in class:UserStartedState
44 mHandle = handle;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp64 mHandle(new tagvideoDecControls),
82 PVCleanUpVideoDecoder(mHandle);
85 delete mHandle;
86 mHandle = NULL;
90 memset(mHandle, 0, sizeof(tagvideoDecControls));
153 mHandle, vol_data, &vol_size, 1, mWidth, mHeight, mode);
163 MP4DecodingMode actualMode = PVGetDecBitstreamMode(mHandle);
170 PVSetPostProcType((VideoDecControls *) mHandle, 0);
193 PVSetReferenceYUV(mHandle, outHeader->pBuffer);
216 mHandle,
[all...]
H A DSoftMPEG4.h55 tagvideoDecControls *mHandle; member in struct:android::SoftMPEG4
/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp96 mHandle(NULL),
102 CHECK(mHandle == NULL);
106 CHECK(mHandle == NULL);
108 mHandle = handle;
160 CHECK_EQ(OMX_GetState(mHandle, &state), OMX_ErrorNone);
168 while ((err = OMX_GetState(mHandle, &state)) == OMX_ErrorNone
197 while ((err = OMX_GetState(mHandle, &state)) == OMX_ErrorNone
225 static_cast<OMX_COMPONENTTYPE *>(mHandle));
228 mHandle = NULL;
264 OMX_ERRORTYPE err = OMX_SendCommand(mHandle, cm
[all...]
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java106 private View mHandle; field in class:SlidingDrawer
243 mHandle = findViewById(mHandleId);
244 if (mHandle == null) {
248 mHandle.setOnClickListener(new DrawerToggler());
270 final View handle = mHandle;
289 final View handle = mHandle;
323 final View handle = mHandle;
365 final View handle = mHandle;
385 final int top = mHandle.getTop();
389 final int left = mHandle
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.h54 void *mHandle; member in struct:android::SoftAVC
H A DSoftAVC.cpp59 mHandle(NULL),
76 H264SwDecRelease(mHandle);
77 mHandle = NULL;
95 if (H264SwDecInit(&mHandle, 0) == H264SWDEC_OK) {
154 ret = H264SwDecDecode(mHandle, &inPicture, &outPicture);
162 CHECK(H264SwDecGetInfo(mHandle, &decoderInfo) == H264SWDEC_OK);
175 if (H264SwDecNextPicture(mHandle, &decodedPicture, 0)
282 mHandle, &decodedPicture, eos /* flush */)) {
/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/base/core/java/android/hardware/
H A DSensor.java316 private int mHandle; field in class:Sensor
406 return mHandle;
/frameworks/native/include/gui/
H A DSurfaceControl.h50 return mHandle!=0 && mClient!=0;
95 sp<IBinder> mHandle; member in class:android::SurfaceControl
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp190 mHandle(new tagAVCHandle),
209 CHECK(mHandle != NULL);
210 memset(mHandle, 0, sizeof(tagAVCHandle));
211 mHandle->AVCObject = NULL;
212 mHandle->userData = this;
213 mHandle->CBAVC_DPBAlloc = DpbAllocWrapper;
214 mHandle->CBAVC_FrameBind = BindFrameWrapper;
215 mHandle->CBAVC_FrameUnbind = UnbindFrameWrapper;
216 mHandle->CBAVC_Malloc = MallocWrapper;
217 mHandle
[all...]
/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

Completed in 4622 milliseconds

12