Searched refs:mId (Results 1 - 25 of 179) sorted by relevance

12345678

/frameworks/base/media/java/android/media/
H A DAudioHandle.java26 private final int mId; field in class:AudioHandle
29 mId = id;
33 return mId;
42 return mId == ah.id();
47 return mId;
52 return Integer.toString(mId);
/frameworks/base/services/core/java/com/android/server/pm/
H A DKeySetHandle.java22 private final long mId; field in class:KeySetHandle
26 mId = id;
34 mId = id;
39 return mId;
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
H A DStream.cpp32 mId = static_cast<audio_stream_type_t>(context.getItemAsInteger(MappingKeyIdentifier));
35 mPolicyPluginInterface->addStream(getFormattedMappingValue(), mId); local
43 mPolicyPluginInterface->setStrategyForStream(mId,
46 mPolicyPluginInterface->setVolumeProfileForStream(mId,
H A DInputSource.cpp36 mId = static_cast<audio_source_t>(context.getItemAsInteger(MappingKeyIdentifier));
38 mPolicyPluginInterface->addInputSource(getFormattedMappingValue(), mId); local
45 return mPolicyPluginInterface->setDeviceForInputSource(mId, applicableInputDevice);
H A DStrategy.cpp38 mId = static_cast<routing_strategy>(context.getItemAsInteger(MappingKeyIdentifier));
41 mPolicyPluginInterface->addStrategy(getFormattedMappingValue(), mId); local
48 return mPolicyPluginInterface->setDeviceForStrategy(mId, applicableOutputDevice);
H A DUsage.cpp37 mId = static_cast<audio_usage_t>(context.getItemAsInteger(MappingKeyIdentifier));
40 mPolicyPluginInterface->addUsage(getFormattedMappingValue(), mId); local
47 return mPolicyPluginInterface->setStrategyForUsage(mId,
H A DInputSource.h46 audio_source_t mId; /**< input source identifier to link with audio.h. */ member in class:InputSource
H A DStrategy.h46 android::routing_strategy mId; /**< strategy identifier to link with audio.h.*/ member in class:Strategy
H A DUsage.h46 audio_usage_t mId; /**< usage identifier to link with audio.h. */ member in class:Usage
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothMasInstance.java24 private final int mId; field in class:BluetoothMasInstance
30 mId = id;
39 return mId == ((BluetoothMasInstance)o).mId;
46 return mId + (mChannel << 8) + (mMsgTypes << 16);
51 return Integer.toString(mId) + ":" + mName + ":" + mChannel + ":" +
71 out.writeInt(mId);
85 return mId;
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DTestAlertActivity.java11 int mId; field in class:TestAlertActivity
18 mId = intent.getIntExtra("id", -1);
19 Log.d("StatusBarTest", "Remembering notification id=" + mId);
26 Log.d("StatusBarTest", "onPause: Canceling notification id=" + mId);
28 nm.cancel(mId);
/frameworks/base/core/java/android/view/inputmethod/
H A DCompletionInfo.java52 private final long mId; field in class:CompletionInfo
67 mId = id;
88 mId = id;
95 mId = source.readLong();
106 return mId;
137 + "\" id=" + mId + " label=" + mLabel + "}";
147 dest.writeLong(mId);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DHeaderItem.java24 private final long mId; field in class:HeaderItem
32 mId = id;
47 return mId;
H A DMultiActionsProvider.java39 private long mId; field in class:MultiActionsProvider.MultiAction
44 mId = id;
105 return mId;
H A DRow.java30 private long mId = NO_ID; field in class:Row
85 mId = id;
108 return mId;
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DAbstractItemHierarchy.java33 private int mId = 0; field in class:AbstractItemHierarchy
40 mId = a.getResourceId(R.styleable.SuwAbstractItem_android_id, 0);
45 mId = id;
49 return mId;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DArgListExpr.java33 private int mId; field in class:ArgListExpr
36 mId = id;
41 return "ArgList[" + mId + "]" + super.computeUniqueKey();
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSelectRequestBuffer.java47 protected final int mId; field in class:SelectRequestBuffer.SelectRequest
51 mId = id;
93 Slog.v(TAG, "calling delayed deviceSelect id:" + mId);
94 tv().deviceSelect(mId, mCallback);
107 Slog.v(TAG, "calling delayed portSelect id:" + mId);
108 tv().doManualPortSwitching(mId, mCallback);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3DummyStream.cpp41 ALOGE("%s: Stream %d: Dummy stream cannot produce buffers!", __FUNCTION__, mId);
49 ALOGE("%s: Stream %d: Dummy stream cannot return buffers!", __FUNCTION__, mId);
60 ALOGE("%s: Stream %d: Dummy stream cannot return buffers!", __FUNCTION__, mId);
67 lines.appendFormat(" Stream[%d]: Dummy\n", mId);
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiPortInfo.java36 private final int mId; field in class:HdmiPortInfo
54 mId = id;
68 return mId;
157 dest.writeInt(mId);
168 s.append("port_id: ").append(mId).append(", ");
182 return mId == other.mId && mType == other.mType && mAddress == other.mAddress
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DStreamingProcessor.cpp46 mId(client->getCameraId()),
104 ALOGE("%s: Camera %d: Device does not exist", __FUNCTION__, mId);
112 ALOGE("%s: Camera %d: Client does not exist", __FUNCTION__, mId);
132 "%s (%d)", __FUNCTION__, mId, strerror(-res), res);
140 "request: %s (%d)", __FUNCTION__, mId,
149 __FUNCTION__, mId, strerror(-res), res);
163 ALOGE("%s: Camera %d: Device does not exist", __FUNCTION__, mId);
174 "%s (%d)", __FUNCTION__, mId, strerror(-res), res);
180 __FUNCTION__, mId, currentWidth, currentHeight,
185 "%s (%d)", __FUNCTION__, mId, strerro
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbConfiguration.java37 private final int mId; field in class:UsbConfiguration
60 mId = id;
73 return mId;
142 StringBuilder builder = new StringBuilder("UsbConfiguration[mId=" + mId +
176 parcel.writeInt(mId);
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DPresResInstanceInfo.java44 private String mId = ""; field in class:PresResInstanceInfo
71 return mId;
79 this.mId = resourceId;
150 dest.writeString(mId);
179 mId = source.readString();
/frameworks/base/core/java/com/android/internal/util/
H A DProgressReporter.java57 private final int mId; field in class:ProgressReporter
81 mId = id;
98 listener.onStarted(mId, null);
99 listener.onProgress(mId, mProgress, mExtras);
105 listener.onFinished(mId, null);
151 notifyProgress(mId, mProgress, mExtras);
192 notifyStarted(mId, null);
193 notifyProgress(mId, mProgress, mExtras);
203 notifyFinished(mId, null);
/frameworks/base/telecomm/java/android/telecom/
H A DPhoneAccountHandle.java44 private final String mId; field in class:PhoneAccountHandle
59 mId = id;
91 return mId;
103 return Objects.hash(mComponentName, mId, mUserHandle);
108 // Note: Log.pii called for mId as it can contain personally identifying phone account
112 .append(Log.pii(mId))
140 out.writeString(mId);

Completed in 2785 milliseconds

12345678