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

123

/frameworks/base/opengl/java/android/opengl/
H A DEGLObjectHandle.java25 private final long mHandle; field in class:EGLObjectHandle
33 mHandle = handle;
36 mHandle = handle;
44 if ((mHandle & 0xffffffffL) != mHandle) {
47 return (int)mHandle;
58 return mHandle;
67 result = 31 * result + (int) (mHandle ^ (mHandle >>> 32));
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLObjectHandle.java25 private final long mHandle; field in class:EGLObjectHandle
33 mHandle = handle;
36 mHandle = handle;
44 if ((mHandle & 0xffffffffL) != mHandle) {
47 return (int)mHandle;
58 return mHandle;
67 result = 31 * result + (int) (mHandle ^ (mHandle >>> 32));
/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/base/media/java/android/media/
H A DAudioPort.java69 AudioHandle mHandle; field in class:AudioPort
79 mHandle = handle;
88 return mHandle;
169 return mHandle.equals(ap.handle());
174 return mHandle.hashCode();
191 return "{mHandle: " + mHandle
H A DAudioPatch.java32 private final AudioHandle mHandle; field in class:AudioPatch
37 mHandle = patchHandle;
59 s.append("mHandle: ");
60 s.append(mHandle.toString());
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.cpp64 mHandle(NULL), mNewPlayer(NULL), mDeletePlayer(NULL),
119 if (!isTestUrl(url) || NULL != mHandle) {
137 mHandle = ::dlopen(mFilename, RTLD_NOW | RTLD_GLOBAL);
138 if (!mHandle) {
146 mNewPlayer = reinterpret_cast<NEW_PLAYER>(dlsym(mHandle,
157 mDeletePlayer = reinterpret_cast<DELETE_PLAYER>(dlsym(mHandle,
186 if (mHandle) {
187 ::dlclose(mHandle);
188 mHandle = NULL;
/frameworks/native/libs/gui/
H A DSurfaceControl.cpp51 : mClient(client), mHandle(handle), mGraphicBufferProducer(gbp)
63 mClient->destroySurface(mHandle);
68 mHandle.clear();
89 return lhs->mHandle == rhs->mHandle;
95 return mClient->setLayerStack(mHandle, layerStack);
100 return mClient->setLayer(mHandle, layer);
105 return mClient->setPosition(mHandle, x, y);
110 return mClient->setSize(mHandle, w, h);
115 return mClient->hide(mHandle);
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DConferenceParticipant.java32 private final Uri mHandle; field in class:ConferenceParticipant
61 mHandle = handle;
102 dest.writeParcelable(mHandle, 0);
117 sb.append(mHandle);
132 return 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/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp65 mHandle(new tagvideoDecControls),
83 PVCleanUpVideoDecoder(mHandle);
86 delete mHandle;
87 mHandle = NULL;
91 memset(mHandle, 0, sizeof(tagvideoDecControls));
141 PVCleanUpVideoDecoder(mHandle);
160 mHandle, vol_data, &vol_size, 1,
171 MP4DecodingMode actualMode = PVGetDecBitstreamMode(mHandle);
178 PVSetPostProcType((VideoDecControls *) mHandle, 0);
206 PVSetReferenceYUV(mHandle, outHeade
[all...]
H A DSoftMPEG4.h55 tagvideoDecControls *mHandle; member in struct:android::SoftMPEG4
/frameworks/base/media/java/android/mtp/
H A DMtpObjectInfo.java25 private int mHandle; field in class:MtpObjectInfo
56 return mHandle;
/frameworks/base/services/core/java/com/android/server/am/
H A DUserStartedState.java35 public final UserHandle mHandle; field in class:UserStartedState
44 mHandle = handle;
/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp62 CloseArchive(mHandle);
86 const int32_t error = FindEntry(mHandle, entryName, &(data->entry));
135 int32_t error = StartIteration(mHandle, &(ze->cookie), NULL /* prefix */);
197 int fd = GetFileDescriptor(mHandle);
224 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry),
242 const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd);
/frameworks/base/core/java/android/os/
H A DUserHandle.java71 final int mHandle; field in class:UserHandle
254 mHandle = h;
263 return mHandle;
268 return "UserHandle{" + mHandle + "}";
276 return mHandle == other.mHandle;
285 return mHandle;
293 out.writeInt(mHandle);
351 mHandle = in.readInt();
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp171 mHandle(new tagAVCHandle),
196 CHECK(mHandle != NULL);
197 memset(mHandle, 0, sizeof(tagAVCHandle));
198 mHandle->AVCObject = NULL;
199 mHandle->userData = this;
200 mHandle->CBAVC_DPBAlloc = DpbAllocWrapper;
201 mHandle->CBAVC_FrameBind = BindFrameWrapper;
202 mHandle->CBAVC_FrameUnbind = UnbindFrameWrapper;
203 mHandle->CBAVC_Malloc = MallocWrapper;
204 mHandle
[all...]
/frameworks/av/services/audioflinger/
H A DPatchPanel.h58 mAudioPatch(*patch), mHandle(AUDIO_PATCH_HANDLE_NONE),
64 audio_patch_handle_t mHandle; member in class:PatchPanel::Patch
/frameworks/base/include/androidfw/
H A DZipFileRO.h159 ZipFileRO(ZipArchiveHandle handle, char* fileName) : mHandle(handle),
164 const ZipArchiveHandle mHandle; member in class:android::ZipFileRO
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java106 private View mHandle; field in class:SlidingDrawer
264 mHandle = findViewById(mHandleId);
265 if (mHandle == null) {
269 mHandle.setOnClickListener(new DrawerToggler());
291 final View handle = mHandle;
310 final View handle = mHandle;
344 final View handle = mHandle;
386 final View handle = mHandle;
406 final int top = mHandle.getTop();
410 final int left = mHandle
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapEventReport.java62 private final String mHandle; field in class:BluetoothMapEventReport
79 mHandle = attrs.get("handle");
84 mHandle = null;
140 return mHandle;
173 json.put("handle", mHandle);
H A DBluetoothMapMessage.java35 private final String mHandle; field in class:BluetoothMapMessage
84 mHandle = attrs.get("handle");
173 json.put("handle", mHandle);
202 return mHandle;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.h54 void *mHandle; member in struct:android::SoftAVC
H A DSoftAVC.cpp59 mHandle(NULL),
77 H264SwDecRelease(mHandle);
78 mHandle = NULL;
96 if (H264SwDecInit(&mHandle, 0) == H264SWDEC_OK) {
155 ret = H264SwDecDecode(mHandle, &inPicture, &outPicture);
163 CHECK(H264SwDecGetInfo(mHandle, &decoderInfo) == H264SWDEC_OK);
173 if (H264SwDecNextPicture(mHandle, &decodedPicture, 0)
277 mHandle, &decodedPicture, eos /* flush */)) {
/frameworks/av/media/mtp/
H A DMtpObjectInfo.h28 MtpObjectHandle mHandle; member in class:android::MtpObjectInfo
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp80 mHandle(new tagvideoEncControls),
106 CHECK(mHandle != NULL);
107 memset(mHandle, 0, sizeof(tagvideoEncControls));
184 if (!PVInitVideoEncoder(mHandle, mEncParams)) {
202 PVCleanUpVideoEncoder(mHandle);
210 delete mHandle;
211 mHandle = NULL;
386 if (!PVGetVolHeader(mHandle, outPtr, &dataLength, 0)) {
458 if (!PVEncodeVideoFrame(mHandle, &vin, &vout,
460 !PVGetHintTrack(mHandle,
[all...]

Completed in 1155 milliseconds

123