HomeSort by relevance Sort by last modified time
    Searched refs:mHandle (Results 1 - 25 of 188) 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...]
  /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/native/libs/ui/include/ui/
DetachedBufferHandle.h 37 pdx::LocalChannelHandle& handle() { return mHandle; }
38 const pdx::LocalChannelHandle& handle() const { return mHandle; }
41 bool isValid() const { return mHandle.valid(); }
45 explicit DetachedBufferHandle(pdx::LocalChannelHandle handle) : mHandle(std::move(handle)) {}
47 pdx::LocalChannelHandle mHandle;
  /frameworks/ml/nn/runtime/
Memory.cpp 52 if (mHandle) {
53 int fd = mHandle->data[0];
57 native_handle_delete(mHandle);
83 if (mHandle) {
84 native_handle_delete(mHandle);
86 mHandle = native_handle_create(1, 3);
87 if (mHandle == nullptr) {
91 mHandle->data[0] = dupfd;
92 mHandle->data[1] = prot;
93 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);
  /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();
201 return mHandle.equals(ap.handle());
206 return mHandle.hashCode();
223 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...]
  /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...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/
AcpiSupport.c 26 EFI_HANDLE mHandle = NULL;
72 &mHandle,
82 &mHandle,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AcpiTable.c 23 EFI_HANDLE mHandle = NULL;
71 &mHandle,
80 &mHandle,
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeP2pDevice.java 26 private int mHandle;
66 return mHandle;

Completed in 660 milliseconds

1 2 3 4 5 6 7 8