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

1 2 3 4 5 6 7 8

  /hardware/interfaces/audio/common/all-versions/default/
EffectMap.cpp 35 uint64_t newId = makeUniqueId();
37 mEffects.add(newId, handle);
38 return newId;
  /packages/apps/TV/src/com/android/tv/dvr/data/
IdGenerator.java 37 public long newId() {
  /system/netd/server/dns/
DnsTlsQueryMap.cpp 35 int32_t newId = getFreeId();
36 if (newId < 0) {
40 Query q = { .newId = static_cast<uint16_t>(newId), .query = query };
43 std::tie(it, inserted) = mQueries.emplace(newId, q);
56 void DnsTlsQueryMap::markTried(uint16_t newId) {
58 auto it = mQueries.find(newId);
DnsTlsQueryMap.h 41 uint16_t newId;
73 void markTried(uint16_t newId);
95 // Outstanding queries by newId.
98 // Get a "newId" number that is not currently in use. Returns -1 if there are none.
DnsTlsTransport.cpp 60 bool sent = mSocket->query(q.newId, netdutils::drop(q.query, 2));
62 mQueries.markTried(q.newId);
  /hardware/libhardware_legacy/include/hardware_legacy/
IMountService.h 56 virtual int renameSecureContainer(String16 oldId, String16 newId) = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SnailSource.java 59 public static synchronized int newId() {
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/
EnableZenModeDialogTest.java 79 mController.mForeverId = Condition.newId(mContext).appendPath("forever").build();
96 Uri alarm = Condition.newId(mContext).appendPath("alarm").build();
98 Uri countdown = Condition.newId(mContext).appendPath("countdown").build();
  /packages/apps/Dialer/java/com/android/dialer/shortcuts/
DynamicShortcuts.java 198 String newId = entry.getKey();
200 if (!containsShortcut(oldDynamicShortcuts, newId)) {
203 delta.shortcutsToAddById.put(newId, newShortcut);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
SPVRemapper.h 204 inline spv::Id localId(spv::Id id, spv::Id newId);
216 bool isNewIdMapped(spv::Id newId) const { return isMapped(newId); }
SPVRemapper.cpp 247 spv::Id spirvbin_t::localId(spv::Id id, spv::Id newId)
249 assert(id != spv::NoResult && newId != spv::NoResult);
254 if (newId != unmapped && newId != unused) {
262 if (isNewIdMapped(newId))
263 error(std::string("ID already used in module: ") + std::to_string(newId));
265 msg(4, 4, std::string("map: ") + std::to_string(id) + " -> " + std::to_string(newId));
266 setMapped(newId);
267 largestNewId = std::max(largestNewId, newId);
270 return idMapL[id] = newId;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 193 String newId = ensureIdMatchesType(element, mTypeFqcn, rootEdit);
195 if (oldId != null && newId != null) {
205 oldId, newId);
  /frameworks/base/libs/storage/include/storage/
IMountService.h 59 const String16& newId) = 0;
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp     [all...]
  /packages/apps/Music/src/com/android/music/
MusicPicker.java 631 long newId = mCursor.getLong(mCursor.getColumnIndex(MediaStore.Audio.Media._ID));
632 mSelectedUri = ContentUris.withAppendedId(uri, newId);
634 mSelectedId = newId;
635 if (newId != mPlayingId || mMediaPlayer == null) {
644 mPlayingId = newId;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 301 static String describePath(List<Constraint> path, String newName, String newId) {
312 BaseLayoutRule.stripIdPrefix(newId));
  /system/netd/tests/
dns_tls_test.cpp 788 EXPECT_EQ(0, f0->query.newId);
789 EXPECT_EQ(1, f1->query.newId);
790 EXPECT_EQ(2, f2->query.newId);
798 EXPECT_EQ(0, all[0].newId);
799 EXPECT_EQ(1, all[1].newId);
800 EXPECT_EQ(2, all[2].newId);
845 EXPECT_EQ(i, futures[i]->query.newId);
867 EXPECT_EQ(40000, f->query.newId);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 714 long newId = getId(results[recvIndex].uri);
715 mHostAuthKeyRecv = newId;
716 mHostAuthRecv.mId = newId;
719 long newId = getId(results[sendIndex].uri);
720 mHostAuthKeySend = newId;
721 mHostAuthSend.mId = newId;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 355 for (final Long newId : newIds) {
356 mSuggestedContactIds[i++] = newId;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java     [all...]
  /frameworks/base/core/java/android/service/notification/
Condition.java 235 public static Uri.Builder newId(Context context) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java     [all...]
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java     [all...]
  /external/swiftshader/src/OpenGL/compiler/
intermediate.h 420 void setId(int newId) { id = newId; }
  /frameworks/base/libs/storage/
IMountService.cpp 354 int32_t renameSecureContainer(const String16& oldId, const String16& newId)
359 data.writeString16(newId);

Completed in 675 milliseconds

1 2 3 4 5 6 7 8