HomeSort by relevance Sort by last modified time
    Searched refs:mId (Results 26 - 50 of 476) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
Row.java 31 private long mId = NO_ID;
86 mId = id;
109 return mId;
Action.java 27 private long mId = NO_ID;
81 mId = id;
88 return mId;
  /hardware/libhardware/modules/camera/
Stream.cpp 36 mId(id),
155 if (id != mId) {
157 __func__, mId, id, mId);
162 __func__, mId, s, mStream);
167 "expect %s(%d)", __func__, mId, typeToString(s->stream_type),
173 "expect %s(%d)", __func__, mId, formatToString(s->format),
179 __func__, mId, s->width, mWidth);
184 __func__, mId, s->height, mHeight);
197 __func__, mId, buf_set->stream, mStream)
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
MockTask.java 26 private final int mId;
31 mId = id;
55 return mName + mId;
  /frameworks/base/telecomm/java/android/telecom/
PhoneAccountHandle.java 44 private final String mId;
59 mId = id;
88 return mId;
101 return Objects.hash(mComponentName, mId, mUserHandle);
106 // Note: Log.pii called for mId as it can contain personally identifying phone account
110 .append(Log.pii(mId))
138 out.writeString(mId);
  /dalvik/hit/src/com/android/hit/
StackFrame.java 25 long mId;
34 mId = id;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
MenuItem.java 38 private int mId;
45 mId = item.mId;
54 mId = id;
92 return new MenuItem(mId, mTitle, mDescriptionGetter, mImageUriGetter,
125 private final int mId;
134 mId = id;
142 return mId;
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasConnectionCache.java 90 LogUtils.d(Eas.LOG_TAG, "Creating new connection manager for HostAuth %d", hostAuth.mId);
113 EmailClientConnectionManager connectionManager = mConnectionMap.get(hostAuth.mId);
116 final long lifetime = now - mConnectionCreationTimes.get(hostAuth.mId);
119 hostAuth.mId);
126 mConnectionMap.put(hostAuth.mId, connectionManager);
127 mConnectionCreationTimes.put(hostAuth.mId, now);
130 hostAuth.mId);
163 LogUtils.d(Eas.LOG_TAG, "Uncaching connection manager for HostAuth %d", hostAuth.mId);
164 EmailClientConnectionManager connectionManager = mConnectionMap.get(hostAuth.mId);
168 mConnectionMap.remove(hostAuth.mId);
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
StreamingProcessor.cpp 44 mId(client->getCameraId()),
86 ALOGE("%s: Camera %d: Device does not exist", __FUNCTION__, mId);
94 ALOGE("%s: Camera %d: Client does not exist", __FUNCTION__, mId);
114 "%s (%d)", __FUNCTION__, mId, strerror(-res), res);
122 "request: %s (%d)", __FUNCTION__, mId,
131 __FUNCTION__, mId, strerror(-res), res);
145 ALOGE("%s: Camera %d: Device does not exist", __FUNCTION__, mId);
156 "%s (%d)", __FUNCTION__, mId, strerror(-res), res);
162 __FUNCTION__, mId, currentWidth, currentHeight,
167 "%s (%d)", __FUNCTION__, mId, strerror(-res), res)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
AttachmentProviderTests.java 94 Uri attachment1Uri = AttachmentUtilities.getAttachmentUri(account1.mId,
96 Uri attachment2Uri = AttachmentUtilities.getAttachmentUri(account1.mId,
98 Uri attachment3Uri = AttachmentUtilities.getAttachmentUri(account1.mId,
110 AttachmentUtilities.getAttachmentUri(account1.mId, attachment1Id).toString());
117 AttachmentUtilities.getAttachmentUri(account1.mId, attachment2Id).toString());
124 AttachmentUtilities.getAttachmentUri(account1.mId, attachment3Id).toString());
129 attachment2Uri = AttachmentUtilities.getAttachmentUri(account1.mId, attachment2Id);
145 attachment3Uri = AttachmentUtilities.getAttachmentUri(account1.mId, attachment3Id);
162 Message m = ProviderTestUtils.setupMessage("1", b.mAccountKey, b.mId, true, false, c, false,
176 "box1", a1.mId, true, mMockContext, Mailbox.TYPE_INBOX)
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3DummyStream.cpp 41 ALOGE("%s: Stream %d: Dummy stream cannot produce buffers!", mId);
49 ALOGE("%s: Stream %d: Dummy stream cannot return buffers!", mId);
60 ALOGE("%s: Stream %d: Dummy stream cannot return buffers!", mId);
67 lines.appendFormat(" Stream[%d]: Dummy\n", mId);
  /frameworks/base/core/java/android/hardware/hdmi/
HdmiPortInfo.java 36 private final int mId;
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
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBatch.java 66 public int mId;
115 if (V) Log.v(TAG, "New Batch created for info " + info.mId);
128 mListener.onShareAdded(info.mId);
147 mListener.onShareDeleted(info.mId);
159 if (V) Log.v(TAG, "batch " + this.mId + " is canceled");
172 if (V) Log.v(TAG, "Cancel batch for info " + info.mId);
174 Constants.updateShareStatus(mContext, info.mId, BluetoothShare.STATUS_CANCELED);
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
VideoCaptureFactory.java 32 final int mId;
38 mId = id;
46 private final int mId;
78 mId = index;
79 mCameraInfo = isSpecialCamera(index) ? null : getCameraInfo(mId);
116 return mId;
121 if (isSpecialCamera(mId)) {
122 return VideoCaptureTango.getCamParams(toSpecialCameraId(mId)).mName;
130 return "camera " + mId + ", facing " + (mCameraInfo.facing ==
138 if (isSpecialCamera(mId)) {
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
AddressUiComponent.java 41 private AddressField mId;
58 mId = id;
72 switch (mId) {
134 return mId;
138 mId = id;
  /frameworks/base/core/java/android/hardware/usb/
UsbConfiguration.java 37 private final int mId;
60 mId = id;
73 return mId;
142 StringBuilder builder = new StringBuilder("UsbConfiguration[mId=" + mId +
176 parcel.writeInt(mId);
  /frameworks/base/core/java/android/print/
PrinterInfo.java 42 private PrinterId mId;
67 mId = other.mId;
88 return mId;
132 mId = parcel.readParcelable(null);
146 parcel.writeParcelable(mId, flags);
157 result = prime * result + ((mId != null) ? mId.hashCode() : 0);
177 if (mId == null) {
178 if (other.mId != null)
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvTrackInfo.java 43 private final String mId;
56 mId = id;
68 mId = in.readString();
90 return mId;
175 dest.writeString(mId);
202 private final String mId;
230 mId = id;
328 return new TvTrackInfo(mType, mId, mLanguage, mAudioChannelCount, mAudioSampleRate,
  /external/chromium_org/third_party/angle/src/common/
RefCountObject.cpp 16 mId = id;
  /frameworks/base/core/java/android/hardware/camera2/params/
Face.java 55 private final int mId;
104 mId = id;
192 return mId;
251 mBounds, mScore, mId, mLeftEye, mRightEye, mMouth);
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
ProgressService.java 45 private final int mId;
50 mId = id;
58 Log.v(TAG, "id: " + mId + " when: " + mWhen + " progress: " + mProgress);
59 noMa.notify(NotificationService.NOTIFICATION_ID + mId,
  /cts/suite/audio_quality/lib/src/task/
TaskOutput.cpp 57 android::sp<Buffer> buffer = getTestCase()->findBuffer(mId);
59 LOGE("cannot find buffer %s", mId.string());
69 int id = getTestCase()->getRemoteAudio()->getDataId(mId);
  /frameworks/base/core/java/android/printservice/
PrintServiceInfo.java 55 private final String mId;
71 mId = parcel.readString();
88 mId = new ComponentName(resolveInfo.serviceInfo.packageName,
169 return mId;
228 parcel.writeString(mId);
237 return 31 + ((mId == null) ? 0 : mId.hashCode());
252 if (mId == null) {
253 if (other.mId != null) {
256 } else if (!mId.equals(other.mId))
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
TrafficFlags.java 59 return (int)account.mId | REASON_SYNC;
70 return (int)account.mId | REASON_ATTACHMENT_USER;
81 return (int)account.mId | REASON_SYNC;
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
MockImage.java 10 private final long mId;
15 mId = id;
46 return mId;

Completed in 579 milliseconds

12 3 4 5 6 7 8 91011>>