Home
last modified time | relevance | path

Searched refs:USR_XXX (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/
DBipEncodingTest.java86 testParseMany(inputs, BipEncoding.USR_XXX, "USR-TEST", "TEST", false); in testParseUsrProprietary()
90 testParseMany(inputs, BipEncoding.USR_XXX, "USR-NOKIA-FORMAT1", "NOKIA-FORMAT1", false); in testParseUsrProprietary()
106 BipEncoding encoding = new BipEncoding(BipEncoding.USR_XXX, "test-encoding"); in testCreateProprietaryEncoding()
107 Assert.assertEquals(BipEncoding.USR_XXX, encoding.getType()); in testCreateProprietaryEncoding()
115 BipEncoding encoding = new BipEncoding(BipEncoding.USR_XXX, ""); in testCreateProprietaryEncoding_emptyId()
116 Assert.assertEquals(BipEncoding.USR_XXX, encoding.getType()); in testCreateProprietaryEncoding_emptyId()
149 BipEncoding encoding = new BipEncoding(BipEncoding.USR_XXX, null); in testCreateProprietary_nullId()
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/
DBipEncoding.java50 public static final int USR_XXX = 6; field in BipEncoding
97 if (mType == USR_XXX) { in BipEncoding()
116 if (encoding < 0 || encoding > USR_XXX) { in BipEncoding()
122 if (mType == USR_XXX) { in BipEncoding()
173 return USR_XXX; in determineEncoding()
190 if (mType == USR_XXX) return "USR-" + mProprietaryEncodingId; in toString()
DBipImageDescriptor.java92 mImageDescriptor.mEncoding = new BipEncoding(BipEncoding.USR_XXX, encoding); in setPropietaryEncoding()