Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DGattService.java430 public void configureMTU(int clientIf, String address, int mtu) { in configureMTU() argument
433 service.configureMTU(clientIf, address, mtu); in configureMTU()
1180 void onConfigureMTU(int connId, int status, int mtu) throws RemoteException { in onConfigureMTU() argument
1184 + status + ", mtu=" + mtu); in onConfigureMTU()
1188 app.callback.onConfigureMTU(address, mtu, status); in onConfigureMTU()
1556 void configureMTU(int clientIf, String address, int mtu) { in configureMTU() argument
1559 if (DBG) Log.d(TAG, "configureMTU() - address=" + address + " mtu=" + mtu); in configureMTU()
1562 gattClientConfigureMTUNative(connId, mtu); in configureMTU()
1845 void onMtuChanged(int connId, int mtu) throws RemoteException { in onMtuChanged() argument
1846 if (DBG) Log.d(TAG, "onMtuChanged() - connId=" + connId + ", mtu=" + mtu); in onMtuChanged()
[all …]
/packages/apps/Bluetooth/jni/
Dcom_android_bluetooth_gatt.cpp449 void btgattc_configure_mtu_cb(int conn_id, int status, int mtu) in btgattc_configure_mtu_cb() argument
453 conn_id, status, mtu); in btgattc_configure_mtu_cb()
778 void btgatts_mtu_changed_cb(int conn_id, int mtu) in btgatts_mtu_changed_cb() argument
781 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onServerMtuChanged, conn_id, mtu); in btgatts_mtu_changed_cb()
1437 jint conn_id, jint mtu) in gattClientConfigureMTUNative() argument
1440 sGattIf->client->configure_mtu(conn_id, mtu); in gattClientConfigureMTUNative()
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DTelephonyProvider.java526 String mtu = parser.getAttributeValue(null, "mtu"); in getRow() local
527 if (mtu != null) { in getRow()
528 map.put(Telephony.Carriers.MTU, Integer.parseInt(mtu)); in getRow()