HomeSort by relevance Sort by last modified time
    Searched refs:mHandle (Results 1 - 25 of 53) sorted by null

1 2 3

  /frameworks/base/opengl/java/android/opengl/
EGLObjectHandle.java 25 private final int mHandle;
28 mHandle = handle;
40 return mHandle;
  /frameworks/native/opengl/tools/glgen/static/egl/
EGLObjectHandle.java 25 private final int mHandle;
28 mHandle = handle;
40 return mHandle;
  /frameworks/av/libvideoeditor/lvpp/
I420ColorConverter.cpp 23 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);
I420ColorConverter.h 32 void* mHandle;
  /frameworks/compile/libbcc/lib/ExecutionEngine/
SymbolResolvers.cpp 38 mHandle = ::dlopen(pFileName, flags);
39 if (mHandle == NULL) {
59 assert((mHandle != NULL) && "Invalid DyldSymbolResolver!");
60 return ::dlsym(mHandle, pName);
64 ::dlclose(mHandle);
  /frameworks/base/core/java/android/webkit/
ClientCertRequestHandler.java 38 private final int mHandle;
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/
TestPlayerStub.cpp 64 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/core/java/android/os/
UserHandle.java 65 final int mHandle;
165 mHandle = h;
170 return mHandle;
175 return "UserHandle{" + mHandle + "}";
183 return mHandle == other.mHandle;
192 return mHandle;
200 out.writeInt(mHandle);
258 mHandle = in.readInt();
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeP2pDevice.java 26 private int mHandle;
64 return mHandle;
NativeLlcpConnectionlessSocket.java 30 private int mHandle;
69 return mHandle;
NativeLlcpServiceSocket.java 29 private int mHandle;
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeP2pDevice.java 26 private int mHandle;
64 return mHandle;
NativeLlcpConnectionlessSocket.java 30 private int mHandle;
69 return mHandle;
NativeLlcpServiceSocket.java 29 private int mHandle;
  /frameworks/native/libs/binder/
BpBinder.cpp 90 : 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, this)
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMXNodeInstance.cpp 88 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, cmd, param, NULL)
    [all...]
  /frameworks/base/core/java/android/hardware/
Sensor.java 128 private int mHandle;
198 return mHandle;
  /frameworks/base/media/java/android/mtp/
MtpObjectInfo.java 25 private int mHandle;
56 return mHandle;
  /frameworks/base/services/java/com/android/server/am/
UserStartedState.java 35 public final UserHandle mHandle;
44 mHandle = handle;
  /frameworks/av/media/mtp/
MtpObjectInfo.h 28 MtpObjectHandle mHandle;
MtpObjectInfo.cpp 28 : mHandle(handle),
94 ALOGD("MtpObject Info %08X: %s\n", mHandle, mName);
  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 106 private View mHandle;
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.getLeft()
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.h 60 tagvideoDecControls *mHandle;
SoftMPEG4.cpp 67 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, &bitstream, &timestamp, &tmp
    [all...]
  /frameworks/native/include/binder/
BpBinder.h 32 inline int32_t handle() const { return mHandle; }
100 const int32_t mHandle;

Completed in 1361 milliseconds

1 2 3