HomeSort by relevance Sort by last modified time
    Searched refs:channelsUri (Results 1 - 3 of 3) sorted by null

  /packages/providers/TvProvider/tests/src/com/android/providers/tv/
ParametersTest.java 105 private void verifyChannelQuery(Uri channelsUri, int expectedCount, boolean expectedException) {
107 verifyChannelCount(channelsUri, expectedCount);
109 fail("Query:{Uri=" + channelsUri + "} should throw exception");
118 private void verifyChannelUpdate(Uri channelsUri, ContentValues values,
121 int count = mResolver.update(channelsUri, values, null, null);
123 fail("Update:{Uri=" + channelsUri + "} should throw exception");
133 private void verifyChannelDelete(Uri channelsUri, int expectedCount,
136 int count = mResolver.delete(channelsUri, null, null);
138 fail("Delete:{Uri=" + channelsUri + "} should throw exception");
  /packages/apps/TV/tests/common/src/com/android/tv/testing/data/
ChannelUtils.java 71 Uri channelsUri = TvContract.buildChannelsUriForInput(inputId);
74 try (Cursor cursor = resolver.query(channelsUri, projection, null, null, null)) {
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/
TvContractUtils.java 73 Uri channelsUri = TvContract.buildChannelsUriForInput(inputId);
78 cursor = resolver.query(channelsUri, projection, null, null, null);

Completed in 535 milliseconds