/packages/providers/MediaProvider/tests/src/com/android/providers/media/ |
D | PickerProviderMediaGenerator.java | 101 long generation, String albumId, String[] mimeTypes, long sizeBytes, int pageSize) { in getMedia() argument 102 return getMedia(generation, albumId, mimeTypes, sizeBytes, null, pageSize); in getMedia() 106 long generation, in getMedia() argument 115 generation, in getMedia() 127 mCollectionId, generation > 0, albumId != null, mNextPageToken, in getMedia() 160 public Cursor getDeletedMedia(long generation) { in getDeletedMedia() argument 161 return getDeletedMedia(generation, /* pageToken= */ null); in getDeletedMedia() 163 public Cursor getDeletedMedia(long generation, String pageToken) { in getDeletedMedia() argument 164 final Cursor cursor = getCursor(mDeletedMedia, generation, /* albumId */ STRING_DEFAULT, in getDeletedMedia() 172 buildCursorExtras(mCollectionId, generation > 0, false, mNextPageToken, in getDeletedMedia() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/util/ |
D | ExpirableCache.java | 101 private final AtomicInteger generation; field in ExpirableCache 107 generation = new AtomicInteger(0); in ExpirableCache() 204 generation.incrementAndGet(); in expireAll() 213 return new GenerationalCachedValue<V>(value, generation); in newCachedValue() 244 private final int generation; field in ExpirableCache.GenerationalCachedValue 256 generation = this.cacheGeneration.get(); in GenerationalCachedValue() 266 return generation != cacheGeneration.get(); in isExpired()
|
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/data/ |
D | ExternalDbFacade.java | 280 public Cursor queryDeletedMedia(long generation) { 285 String[] selectionArgs = new String[] {String.valueOf(generation)}; 291 cursor.setExtras(getCursorExtras(generation, /* albumId */ null, /*pageSize*/ -1, 300 public Cursor queryMedia(long generation, String albumId, String[] mimeTypes, int pageSize, 310 selectionArgs.add(String.valueOf(generation)); 332 cursor.setExtras(getCursorExtras(generation, albumId, pageSize, nextPageToken)); 377 private Bundle getCursorExtras(long generation, String albumId, int pageSize, 382 if (generation > LONG_DEFAULT) { 410 private Cursor getMediaCollectionInfoCursor(long generation) { 411 final String[] selectionArgs = new String[] {String.valueOf(generation)}; [all …]
|
D | CloudProviderQueryExtras.java | 86 long sizeBytes, long generation, int limit, boolean isFavorite, boolean isVideo, in CloudProviderQueryExtras() argument 94 mGeneration = generation; in CloudProviderQueryExtras() 122 final long generation = LONG_DEFAULT; in fromMediaStoreBundle() local 141 generation, limit, isFavorite, isVideo, isLocalOnly, pageSize, dateTakenBeforeMs, in fromMediaStoreBundle() 157 final long generation = bundle.getLong(CloudMediaProviderContract.EXTRA_SYNC_GENERATION, in fromCloudMediaBundle() local 176 generation, limit, isFavorite, isVideo, isLocalOnly, pageSize, dateTakenBeforeMs, in fromCloudMediaBundle()
|
/packages/modules/GeoTZ/ |
D | README.md | 17 - Code for a host sample / reference data generation pipeline. See 35 generation on host, and the file's use on host and device. See 40 generation on host, and the file's use on host and device. See 46 project. Used as input for the reference data generation pipeline. 61 - Runs the `data_pipeline` data generation pipeline. It takes data from
|
/packages/modules/Gki/libkver/ |
D | test.cpp | 58 EXPECT_EQ(1, res->generation()); in TEST() 98 EXPECT_EQ(1, res->generation()); in TEST() 121 EXPECT_EQ(1, res->generation()); in TEST()
|
D | kmi_version.cpp | 43 android_release(), generation()); in string() 47 return std::make_tuple(version(), patch_level(), android_release(), generation()); in tuple()
|
D | kernel_release.cpp | 45 sub_level(), android_release(), generation()); in string()
|
D | utils.cpp | 78 kmi_version.android_release(), kmi_version.generation()); in GetApexName()
|
/packages/modules/Gki/libkver/include/kver/ |
D | kernel_release.h | 51 uint64_t generation() const { return kmi_version().generation(); } in generation() function
|
D | kmi_version.h | 43 uint64_t generation() const { return gen_; } in generation() function
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/ |
D | MtpDeviceIndex.java | 437 protected boolean isAtGeneration(MtpDevice device, long generation) { in isAtGeneration() argument 438 return (mGeneration == generation) && (mDevice == device); in isAtGeneration() 441 protected synchronized boolean setIndexingResults(MtpDevice device, long generation, in setIndexingResults() argument 443 if (!isAtGeneration(device, generation)) { in setIndexingResults()
|
/packages/apps/DocumentsUI/ |
D | flags.aconfig | 15 description: "Enables the next generation search functionality." 23 description: "Enables the next generation ZIP functionality."
|
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/icons/mono/ |
D | MonoIconThemeControllerTest.kt | 70 fun `createThemedBitmap when mono generation is disabled`() { in createThemedBitmap when mono generation is disabled() 79 fun `createThemedBitmap when mono generation is enabled`() { in createThemedBitmap when mono generation is enabled()
|
/packages/modules/GeoTZ/s2storage/ |
D | README.md | 14 * `tools/` - host tooling to support generation / debugging / testing of data 20 generation, while the "readonly" would be used on both host and device.
|
/packages/modules/Bluetooth/pandora/interfaces/pandora_experimental/ |
D | os.proto | 54 // just for code-generation convenience. This is what we put in the Connection.cookie.
|
/packages/modules/Bluetooth/system/gd/packet/parser/ |
D | packetgen.gni | 22 # sources: PDL files to use for generation.
|
D | README | 49 Every field handles its own generation.
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | HostapdHalHidlImp.java | 1249 public int mapHalGenerationToWifiStandard(int generation) { in mapHalGenerationToWifiStandard() argument 1250 switch (generation) { in mapHalGenerationToWifiStandard() 1279 int frequency, int bandwidth, int generation, byte[] apIfaceInstanceMacAddress) { in onApInstanceInfoChanged() argument 1286 mapHalGenerationToWifiStandard(generation), in onApInstanceInfoChanged()
|
D | HostapdHalAidlImp.java | 424 mapHalGenerationToWifiStandard(info.generation), in onApInstanceInfoChanged() 853 public int mapHalGenerationToWifiStandard(int generation) { in mapHalGenerationToWifiStandard() argument 854 switch (generation) { in mapHalGenerationToWifiStandard()
|
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/ |
D | PickerSyncController.java | 1384 final long generation = bundle.getLong(LAST_MEDIA_SYNC_GENERATION); in cacheMediaCollectionInfoInternal() local 1387 editor.putLong(getPrefsKey(isLocal, LAST_MEDIA_SYNC_GENERATION), generation); in cacheMediaCollectionInfoInternal() local 1441 final long generation = mSyncPrefs.getLong( in getCachedMediaCollectionInfo() local 1445 bundle.putLong(LAST_MEDIA_SYNC_GENERATION, generation); in getCachedMediaCollectionInfo() 2078 static SyncRequestParams forIncremental(long generation, Bundle latestMediaCollectionInfo) { in forIncremental() argument 2079 return new SyncRequestParams(SYNC_TYPE_MEDIA_INCREMENTAL, generation, in forIncremental()
|
/packages/modules/AdServices/adservices/libraries/cobalt/proto/ |
D | unencrypted_observation_store.proto | 29 // the DB during observation generation.
|
/packages/modules/common/sdk/ |
D | Android.bp | 24 // Use the source of annotations that affect metalava doc generation, since 25 // the relevant generation instructions are themselves in javadoc, which is
|
/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/data/ |
D | ExternalDbFacadeTest.java | 1298 long generation = bundle.getLong(MediaCollectionInfo.LAST_MEDIA_SYNC_GENERATION); in assertMediaCollectionInfo() local 1302 .that(generation).isEqualTo(expectedGeneration); in assertMediaCollectionInfo() 1312 private static ContentValues getContentValues(long dateTakenMs, long generation) { in getContentValues() argument 1319 cv.put(MediaColumns.GENERATION_MODIFIED, generation); in getContentValues()
|
/packages/modules/Virtualization/guest/authfs/src/ |
D | fusefs.rs | 554 generation: 0, in lookup() 684 generation: 0, in create() 870 generation: 0, in mkdir()
|