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

1 2 3 4 5 6 7

  /dalvik/hit/src/com/android/hit/
ThreadObj.java 20 long mId;
24 mId = id;
RootObj.java 43 mId = id;
52 theClass = state.findClass(mId);
54 Instance instance = state.findReference(mId);
71 instance = mHeap.mState.findClass(mId);
73 instance = mHeap.mState.findReference(mId);
109 return String.format("%s@0x08x", mType.getName(), mId);
StackFrame.java 25 long mId;
34 mId = id;
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockTextAppearanceFactory.java 47 private final int mId;
49 mId = id;
52 return mId;
  /system/core/nexus/
SupplicantStatus.h 23 int mId;
36 int getId() { return mId; }
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
TestAlertActivity.java 11 int mId;
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/
CompletionInfo.java 30 final long mId;
39 mId = id;
49 mId = id;
56 mId = source.readLong();
67 return mId;
98 + "\" id=" + mId + " label=" + mLabel + "}";
108 dest.writeLong(mId);
  /frameworks/base/core/java/android/webkit/
WebHistoryItem.java 31 private final int mId;
53 mId = sNextId++;
65 mId = sNextId++;
78 mId = item.mId;
88 return mId;
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 82 long account1Id = account1.mId;
100 long account1Id = account1.mId;
143 final long account1Id = account1.mId;
144 final long account2Id = account2.mId;
167 return Account.CONTENT_URI.buildUpon().appendEncodedPath("" + account.mId).build();
174 assertTrue(Account.isValidId(mMockContext, account1.mId));
175 assertTrue(Account.isValidId(mMockContext, account2.mId));
327 long account1Id = account1.mId;
330 long box1Id = box1.mId;
369 long account1Id = account1.mId;
    [all...]
AttachmentProviderTests.java 122 Uri attachment1Uri = AttachmentProvider.getAttachmentUri(account1.mId, attachment1Id);
123 Uri attachment2Uri = AttachmentProvider.getAttachmentUri(account1.mId, attachment2Id);
124 Uri attachment3Uri = AttachmentProvider.getAttachmentUri(account1.mId, attachment3Id);
140 AttachmentProvider.getAttachmentUri(account1.mId, attachment1Id).toString();
147 AttachmentProvider.getAttachmentUri(account1.mId, attachment2Id).toString();
154 AttachmentProvider.getAttachmentUri(account1.mId, attachment3Id).toString();
159 attachment2Uri = AttachmentProvider.getAttachmentUri(account1.mId, attachment2Id);
174 attachment3Uri = AttachmentProvider.getAttachmentUri(account1.mId, attachment3Id);
206 Uri attachment1Uri = AttachmentProvider.getAttachmentUri(account1.mId, attachment1Id);
245 Uri uri = AttachmentProvider.getAttachmentUri(account1.mId, attachment2Id)
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
MockTask.java 26 private final int mId;
31 mId = id;
55 return mName + mId;
  /packages/apps/Gallery3D/src/com/cooliris/media/
Texture.java 30 int mId;
42 mId = 0;
  /packages/apps/Camera/src/com/android/camera/ui/
BasicTexture.java 15 protected int mId;
26 mId = id;
50 return mId;
63 mGL.glDeleteTextures(1, new int[]{mId}, 0);
  /frameworks/base/core/java/android/nfc/
NdefRecord.java 148 private final byte[] mId;
191 mId = id.clone();
208 mId = null;
239 return mId.clone();
253 return generate(mFlags, mTnf, mType, mId, mPayload);
264 dest.writeInt(mId.length);
265 dest.writeByteArray(mId);
Tag.java 80 /*package*/ final byte[] mId;
96 mId = id;
146 return mId;
187 .append(mId)
228 writeBytesWithNull(dest, mId);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBatch.java 67 public int mId;
116 if (V) Log.v(TAG, "New Batch created for info " + info.mId);
129 mListener.onShareAdded(info.mId);
148 mListener.onShareDeleted(info.mId);
160 if (V) Log.v(TAG, "batch " + this.mId + " is canceled");
173 if (V) Log.v(TAG, "Cancel batch for info " + info.mId);
175 Constants.updateShareStatus(mContext, info.mId, BluetoothShare.STATUS_CANCELED);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractPublicApiTest.java 34 final long mId;
37 this.mId = downloadId;
45 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
56 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
67 ParcelFileDescriptor downloadedFile = mManager.openDownloadedFile(mId);
  /packages/apps/Email/tests/src/com/android/exchange/
SyncManagerAccountTests.java 142 resolver.delete(ContentUris.withAppendedId(Account.CONTENT_URI, firstAccount.mId),
169 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", acct1.mId, true, context);
170 Mailbox box2 = ProviderTestUtils.setupMailbox("box2", acct1.mId, true, context);
172 Mailbox box3 = ProviderTestUtils.setupMailbox("box3", acct2.mId, true, context);
173 Mailbox box4 = ProviderTestUtils.setupMailbox("box4", acct2.mId, true, context);
177 errorMap.put(box1.mId, securityErrorAccount1);
178 errorMap.put(box2.mId, ioError);
179 errorMap.put(box3.mId, securityErrorAccount2);
180 errorMap.put(box4.mId, securityErrorAccount2);
188 assertNotNull(errorMap.get(box2.mId));
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
HashMapPerfTest.java 35 String mId;
44 mId = new String(chars, 0, len);
48 return mId;
  /packages/apps/Camera/src/com/android/camera/gallery/
BaseImage.java 39 protected long mId;
46 mId = id;
77 long id = mId;
  /packages/apps/Camera/tests/src/com/android/camera/gallery/
MockImage.java 10 private final long mId;
15 mId = id;
46 return mId;
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
MockImage.java 10 private final long mId;
15 mId = id;
46 return mId;
  /packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 106 long accountId = account.mId;
129 long accountId = account.mId;
134 long boxId = box.mId;
162 long account1Id = account1.mId;
164 long box1Id = box1.mId;
168 long box2Id = box2.mId;
172 long message1Id = message1.mId;
186 long message2Id = message2.mId;
202 long account1Id = account1.mId;
204 long box1Id = box1.mId;
    [all...]
  /frameworks/base/vpn/java/android/net/vpn/
VpnProfile.java 33 private String mId; // unique identifier
55 mId = id;
59 return mId;
139 mId = in.readString();
167 parcel.writeString(mId);
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 100 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", acct.mId, true, mMockContext);
104 Message msg1 = ProviderTestUtils.setupMessage("message1", acct.mId, box1.mId,
106 ids.add(msg1.mId);
107 Message msg2 = ProviderTestUtils.setupMessage("message2", acct.mId, box1.mId,
109 ids.add(msg2.mId);
110 Message msg3 = ProviderTestUtils.setupMessage("message3", acct.mId, box1.mId,
112 ids.add(msg3.mId);
    [all...]

Completed in 161 milliseconds

1 2 3 4 5 6 7