Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:intent

23 import android.content.Intent;
61 public void onReceive(Context context, Intent intent) {
62 String action = intent.getAction();
64 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
67 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
82 Intent i = getIntent();
85 Log.e(TAG, "Error: this activity may be started only with intent "
209 Intent intent = new Intent(intentName);
212 intent.setClassName(mReturnPackage, mReturnClass);
217 intent.putExtra(BluetoothDevice.EXTRA_CONNECTION_ACCESS_RESULT,
222 intent.putExtra(extraName, extraValue);
224 intent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice);
225 intent.putExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE, mRequestType);
226 sendBroadcast(intent, android.Manifest.permission.BLUETOOTH_ADMIN);