Searched refs:USR_XXX (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipEncodingTest.java | 92 testParseMany(inputs, BipEncoding.USR_XXX, "USR-TEST", "TEST", false); in testParseUsrProprietary() 96 testParseMany(inputs, BipEncoding.USR_XXX, "USR-NOKIA-FORMAT1", "NOKIA-FORMAT1", false); in testParseUsrProprietary() 119 BipEncoding encoding = new BipEncoding(BipEncoding.USR_XXX, "test-encoding"); in testCreateProprietaryEncoding() 120 Assert.assertEquals(BipEncoding.USR_XXX, encoding.getType()); in testCreateProprietaryEncoding() 128 BipEncoding encoding = new BipEncoding(BipEncoding.USR_XXX, ""); in testCreateProprietaryEncoding_emptyId() 129 Assert.assertEquals(BipEncoding.USR_XXX, encoding.getType()); in testCreateProprietaryEncoding_emptyId() 162 new BipEncoding(BipEncoding.USR_XXX, null); in testCreateProprietary_nullId()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipEncoding.java | 45 public static final int USR_XXX = 6; field in BipEncoding 90 if (mType == USR_XXX) { in BipEncoding() 109 if (encoding < 0 || encoding > USR_XXX) { in BipEncoding() 115 if (mType == USR_XXX) { in BipEncoding() 166 return USR_XXX; in determineEncoding() 183 if (mType == USR_XXX) return "USR-" + mProprietaryEncodingId; in toString()
|
D | BipImageDescriptor.java | 89 mImageDescriptor.mEncoding = new BipEncoding(BipEncoding.USR_XXX, encoding); in setPropietaryEncoding()
|