Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java668 public String searchAttr; field in BluetoothPbapObexServer.AppParamValue
696 searchAttr = ""; in AppParamValue()
717 + searchAttr in toString()
787 appParamValue.searchAttr = Byte.toString(appParam[i]); in parseApplicationParameter()
862 if (appParamValue.searchAttr.equals("0")) { in sendVcardListingXml()
864 } else if (appParamValue.searchAttr.equals("1")) { in sendVcardListingXml()
881 type = mVcardSimManager.getType(appParamValue.searchAttr); in sendVcardListingXml()
1291 String searchAttr = appParamValue.searchAttr.trim(); in pullVcardListing() local
1293 if (searchAttr == null || searchAttr.length() == 0) { in pullVcardListing()
1295 appParamValue.searchAttr = "0"; in pullVcardListing()
[all …]
DBluetoothPbapSimVcardManager.java532 protected String getType(String searchAttr) { in getType() argument
534 if (searchAttr.equals("0")) { in getType()
536 } else if (searchAttr.equals("1")) { in getType()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServerTest.java847 assertThat(appParamValue.searchAttr).isEqualTo("5"); in parseApplicationParameter_withSearchAttributeTagid()