Searched refs:BipImageDescriptor (Results 1 – 9 of 9) sorted by relevance
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/ |
H A D | BipImageDescriptorTest.java | 40 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_encodingConstants() 56 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_encodingObject() 71 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_proprietaryEncoding() 87 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_transformationConstantStretch() 103 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_transformationConstantCrop() 119 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_transformationConstantFill() 135 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_transformationConstantCropThenFill() 151 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_noSize() 165 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_useMaxSize() 181 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in testBuildImageDescriptor_allButSize() [all …]
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/ |
H A D | BipImageDescriptor.java | 53 public class BipImageDescriptor { class 61 private BipImageDescriptor mImageDescriptor = new BipImageDescriptor(); 146 public BipImageDescriptor build() { in build() 184 private BipImageDescriptor() { in BipImageDescriptor() method in BipImageDescriptor 188 public BipImageDescriptor(InputStream inputStream) { in BipImageDescriptor() method in BipImageDescriptor 275 if (!(o instanceof BipImageDescriptor)) return false; in equals() 277 BipImageDescriptor d = (BipImageDescriptor) o; in equals()
|
H A D | RequestGetImage.java | 32 private final BipImageDescriptor mImageDescriptor; 38 public RequestGetImage(String imageHandle, BipImageDescriptor descriptor) { in RequestGetImage()
|
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcp/ |
H A D | CoverArtTest.java | 33 import com.android.bluetooth.avrcpcontroller.BipImageDescriptor; 105 private BipImageDescriptor getDescriptor(int encoding, int width, int height) { in getDescriptor() 106 return new BipImageDescriptor.Builder() in getDescriptor() 254 BipImageDescriptor descriptor = getDescriptor(BipEncoding.JPEG, 200, 200); in testGetImageWithValidDescriptor() 265 BipImageDescriptor descriptor = getDescriptor(BipEncoding.JPEG, 200, 200); in testGetImageWithThumbnailDescriptor() 278 BipImageDescriptor descriptor = getDescriptor(BipEncoding.BMP, 1200, 1200); in testGetImageWithInvalidDescriptor()
|
H A D | AvrcpBipObexServerTest.java | 39 import com.android.bluetooth.avrcpcontroller.BipImageDescriptor; 184 return new BipImageDescriptor.Builder() in makeDescriptor()
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/helpers/ |
H A D | CoverArt.java | 24 import com.android.bluetooth.avrcpcontroller.BipImageDescriptor; 128 public byte[] getImage(BipImageDescriptor descriptor) { in getImage() 147 private boolean isDescriptorValid(BipImageDescriptor descriptor) { in isDescriptorValid()
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/ |
H A D | AvrcpCoverArtManager.java | 379 private BipImageDescriptor determineImageDescriptor(BipImageProperties properties) { in determineImageDescriptor() 383 BipImageDescriptor.Builder builder = new BipImageDescriptor.Builder(); in determineImageDescriptor() 437 BipImageDescriptor descriptor = determineImageDescriptor(properties); in onGetImagePropertiesComplete()
|
H A D | AvrcpBipClient.java | 220 public boolean getImage(String imageHandle, BipImageDescriptor descriptor) { in getImage()
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/ |
H A D | AvrcpBipObexServer.java | 21 import com.android.bluetooth.avrcpcontroller.BipImageDescriptor; 274 BipImageDescriptor descriptor = null; in handleGetImage() 277 descriptor = new BipImageDescriptor(new ByteArrayInputStream(descriptorBytes)); in handleGetImage()
|