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

1 2 3 4 5 6 7 8

  /frameworks/base/opengl/java/android/opengl/
EGLObjectHandle.java 25 private final long mHandle;
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/
EGLObjectHandle.java 25 private final long mHandle;
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));
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
HiiHandle.c 21 UINT8 mHandle[1024 * 8] = {0};
35 // Set Bit 0 in mHandle[0] to 1.
37 mHandle[0] |= 1 << 0;
56 for (Index = 0; Index < sizeof (mHandle) * 8; Index++) {
57 if ((mHandle[Index / 8] & (1 << (Index % 8))) == 0) {
58 mHandle[Index / 8] = (UINT8) (mHandle[Index / 8] | (1 << (Index % 8)));
83 ASSERT ((mHandle [Num / 8] & (1 << (Num % 8))) != 0);
84 mHandle [Num / 8] = (UINT8) (mHandle [Num / 8] & (~(1 << (Num % 8))));
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
AudioStreamOutALSA.cpp 87 if(!strcmp(mHandle->useCase, SND_USE_CASE_VERB_HIFI_LOW_POWER) ||
88 !strcmp(mHandle->useCase, SND_USE_CASE_MOD_PLAY_LPA)) {
91 mHandle->module->setLpaVolume(vol);
94 else if(!strcmp(mHandle->useCase, SND_USE_CASE_VERB_HIFI_TUNNEL) ||
95 !strcmp(mHandle->useCase, SND_USE_CASE_MOD_PLAY_TUNNEL)) {
98 mHandle->module->setCompressedVolume(vol);
101 else if(!strncmp(mHandle->useCase, SND_USE_CASE_VERB_IP_VOICECALL,
102 sizeof(mHandle->useCase)) || !strncmp(mHandle->useCase,
103 SND_USE_CASE_MOD_PLAY_VOIP, sizeof(mHandle->useCase)))
    [all...]
ALSAControl.cpp 45 mHandle = mixer_open(device);
46 ALOGV("ALSAControl: ctor mixer %p", mHandle);
51 if (mHandle) mixer_close(mHandle);
58 if (!mHandle) {
63 ctl = mixer_get_control(mHandle, name, index);
76 if (!mHandle) {
82 ctl = mixer_get_control(mHandle, name, 0);
97 if (!mHandle) {
102 ctl = mixer_get_control(mHandle, name, 0)
    [all...]
AudioStreamInALSA.cpp 138 if((mHandle->handle == NULL) && (mHandle->rxHandle == NULL) &&
139 (strcmp(mHandle->useCase, SND_USE_CASE_VERB_IP_VOICECALL)) &&
140 (strcmp(mHandle->useCase, SND_USE_CASE_MOD_PLAY_VOIP))) {
142 snd_use_case_get(mHandle->ucMgr, "_verb", (const char **)&use_case);
144 if ((mHandle->devices == AudioSystem::DEVICE_IN_VOICE_CALL) &&
152 strlcpy(mHandle->useCase, SND_USE_CASE_MOD_CAPTURE_VOICE,
153 sizeof(mHandle->useCase));
158 strlcpy(mHandle->useCase, SND_USE_CASE_MOD_CAPTURE_VOICE_UL_DL,
159 sizeof(mHandle->useCase))
    [all...]
ALSAStreamOps.cpp 50 mHandle(handle)
58 if((!strcmp(mHandle->useCase, SND_USE_CASE_VERB_IP_VOICECALL)) ||
59 (!strcmp(mHandle->useCase, SND_USE_CASE_MOD_PLAY_VOIP))) {
74 if (mHandle == &(*it)) {
101 if (mHandle->channels != popCount(*channels))
104 if (mHandle->devices & AudioSystem::DEVICE_OUT_ALL) {
135 if (mHandle->sampleRate != *rate)
138 *rate = mHandle->sampleRate;
141 snd_pcm_format_t iformat = mHandle->format;
170 if (mHandle->format != iformat
    [all...]
  /frameworks/av/media/libaudiohal/
EffectHalLocal.cpp 28 : mHandle(handle) {
32 int status = EffectRelease(mHandle);
33 ALOGW_IF(status, "Error releasing effect %p: %s", mHandle, strerror(-status));
34 mHandle = 0;
53 return (*mHandle)->process(mHandle, mInBuffer->audioBuffer(), mOutBuffer->audioBuffer());
57 if ((*mHandle)->process_reverse != NULL) {
63 return (*mHandle)->process_reverse(
64 mHandle, mInBuffer->audioBuffer(), mOutBuffer->audioBuffer());
72 return (*mHandle)->command(mHandle, cmdCode, cmdSize, pCmdData, replySize, pReplyData)
    [all...]
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
InterfaceRequest.java 23 private final MessagePipeHandle mHandle;
31 mHandle = handle;
39 return mHandle.pass();
47 mHandle.close();
Message.java 27 private final List<? extends Handle> mHandle;
43 mHandle = handles;
57 return mHandle;
  /frameworks/ml/nn/runtime/
Memory.cpp 48 if (mHandle) {
49 int fd = mHandle->data[0];
53 native_handle_delete(mHandle);
72 if (mHandle) {
73 native_handle_delete(mHandle);
75 mHandle = native_handle_create(1, 3);
76 if (mHandle == nullptr) {
80 mHandle->data[0] = dupfd;
81 mHandle->data[1] = prot;
82 mHandle->data[2] = (int32_t)(uint32_t)(offset & 0xffffffff)
    [all...]
  /system/core/libutils/
NativeHandle.cpp 27 : mHandle(handle), mOwnsHandle(ownsHandle) {
33 native_handle_close(mHandle);
34 native_handle_delete(mHandle);
  /frameworks/native/libs/gui/
SurfaceControl.cpp 52 : mClient(client), mHandle(handle), mGraphicBufferProducer(gbp)
64 mClient->destroySurface(mHandle);
69 mHandle.clear();
97 return lhs->mHandle == rhs->mHandle;
103 return mClient->setLayerStack(mHandle, layerStack);
109 return mClient->setLayer(mHandle, layer);
115 return mClient->setRelativeLayer(mHandle, relativeTo, layer);
121 return mClient->setPosition(mHandle, x, y);
126 return mClient->setGeometryAppliesWithResize(mHandle);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
IngestObjectInfo.java 14 private int mHandle;
20 mHandle = mtpObjectInfo.getObjectHandle();
27 mHandle = handle;
46 return mHandle;
51 MtpObjectInfo info = device.getObjectInfo(mHandle);
73 return "IngestObjectInfo [mHandle=" + mHandle + ", mDateCreated=" + mDateCreated
84 result = prime * result + mHandle;
109 if (mHandle != other.mHandle) {
    [all...]
  /frameworks/base/media/java/android/media/
AudioPatch.java 32 private final AudioHandle mHandle;
37 mHandle = patchHandle;
60 return mHandle.id();
66 s.append("mHandle: ");
67 s.append(mHandle.toString());
AudioPort.java 69 AudioHandle mHandle;
83 mHandle = handle;
94 return mHandle;
101 return mHandle.id();
200 return mHandle.equals(ap.handle());
205 return mHandle.hashCode();
222 return "{mHandle: " + mHandle
  /system/core/libutils/include/utils/
NativeHandle.h 36 return mHandle;
46 native_handle_t* mHandle;
  /packages/services/Telecomm/src/com/android/server/telecom/
MissedCallNotifier.java 39 private Uri mHandle;
46 mHandle = handle;
53 mHandle = call.getHandle();
66 return mHandle;
70 return mHandle == null ? null : mHandle.getSchemeSpecificPart();
  /system/libhidl/base/include/hidl/
MQDescriptor.h 81 bool isHandleValid() const { return mHandle != nullptr; }
93 return mHandle;
97 return mHandle;
140 ::android::hardware::details::hidl_pointer<native_handle_t> mHandle;
149 const size_t MQDescriptor<T, flavor>::kOffsetOfHandle = offsetof(MQDescriptor, mHandle);
170 : mHandle(nhandle),
185 : mHandle(nHandle), mQuantum(messageSize), mFlags(flavor) {
219 mHandle(nullptr),
222 if (other.mHandle != nullptr) {
223 mHandle = native_handle_create
    [all...]
  /device/google/marlin/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 57 mHandle(NULL),
71 mHandle = dlopen("/vendor/lib/libthermalclient.so", RTLD_NOW);
72 if (!mHandle) {
79 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
87 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
122 dlclose(mHandle);
123 mHandle = NULL;
142 if (mHandle)
143 dlclose(mHandle);
145 mHandle = NULL
    [all...]
  /device/huawei/angler/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 52 mHandle(NULL),
66 mHandle = dlopen("/vendor/lib/libthermalclient.so", RTLD_NOW);
67 if (!mHandle) {
74 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
82 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
117 dlclose(mHandle);
118 mHandle = NULL;
137 if (mHandle)
138 dlclose(mHandle);
140 mHandle = NULL
    [all...]
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 52 mHandle(NULL),
66 mHandle = dlopen("/vendor/lib/libthermalclient.so", RTLD_NOW);
67 if (!mHandle) {
74 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
82 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
117 dlclose(mHandle);
118 mHandle = NULL;
137 if (mHandle)
138 dlclose(mHandle);
140 mHandle = NULL
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL/
QCameraThermalAdapter.cpp 57 mHandle(NULL),
71 mHandle = dlopen("/vendor/lib/libthermalclient.so", RTLD_NOW);
72 if (!mHandle) {
79 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
87 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
122 dlclose(mHandle);
123 mHandle = NULL;
142 if (mHandle)
143 dlclose(mHandle);
145 mHandle = NULL
    [all...]
  /frameworks/av/media/libmediaplayerservice/
TestPlayerStub.cpp 64 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;
  /system/libhwbinder/
BpHwBinder.cpp 91 : mHandle(handle)
96 ALOGV("Creating BpHwBinder %p handle %d\n", this, mHandle);
108 mHandle, code, data, reply, flags);
136 ALOGV("Requesting death notification: %p handle %d\n", this, mHandle);
139 self->requestDeathNotification(mHandle, this);
171 ALOGV("Clearing death notification: %p handle %d\n", this, mHandle);
173 self->clearDeathNotification(mHandle, this);
188 this, mHandle, mObitsSent ? "true" : "false");
196 ALOGV("Clearing sent death notification: %p handle %d\n", this, mHandle);
198 self->clearDeathNotification(mHandle, this)
    [all...]

Completed in 2155 milliseconds

1 2 3 4 5 6 7 8