HomeSort by relevance Sort by last modified time
    Searched refs:stackEvent (Results 1 - 7 of 7) sorted by null

  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/a2dp/
A2dpServiceTest.java 508 A2dpStackEvent stackEvent;
570 A2dpStackEvent stackEvent;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hearingaid/
HearingAidService.java 526 void messageFromNative(HearingAidStackEvent stackEvent) {
527 Objects.requireNonNull(stackEvent.device,
528 "Device should never be null, event: " + stackEvent);
530 if (stackEvent.type == HearingAidStackEvent.EVENT_TYPE_DEVICE_AVAILABLE) {
531 BluetoothDevice device = stackEvent.device;
532 int capabilities = stackEvent.valueInt1;
533 long hiSyncId = stackEvent.valueLong2;
544 BluetoothDevice device = stackEvent.device;
547 if (stackEvent.type == HearingAidStackEvent.EVENT_TYPE_CONNECTION_STATE_CHANGED) {
548 switch (stackEvent.valueInt1)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 758 void messageFromNative(A2dpStackEvent stackEvent) {
759 Objects.requireNonNull(stackEvent.device,
760 "Device should never be null, event: " + stackEvent);
762 BluetoothDevice device = stackEvent.device;
765 if (stackEvent.type == A2dpStackEvent.EVENT_TYPE_CONNECTION_STATE_CHANGED) {
766 switch (stackEvent.valueInt) {
783 Log.e(TAG, "Cannot process stack event: no state machine: " + stackEvent);
786 sm.sendMessage(A2dpStateMachine.STACK_EVENT, stackEvent);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java 288 * @param stackEvent event from native stack
290 void messageFromNative(HeadsetStackEvent stackEvent) {
291 Objects.requireNonNull(stackEvent.device,
292 "Device should never be null, event: " + stackEvent);
294 HeadsetStateMachine stateMachine = mStateMachines.get(stackEvent.device);
295 if (stackEvent.type == HeadsetStackEvent.EVENT_TYPE_CONNECTION_STATE_CHANGED) {
296 switch (stackEvent.valueInt) {
302 .makeStateMachine(stackEvent.device,
305 mStateMachines.put(stackEvent.device, stateMachine);
313 "State machine not found for stack event: " + stackEvent);
    [all...]
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hearingaid/
HearingAidServiceTest.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 854 public void messageFromNative(StackEvent stackEvent) {
855 HeadsetClientStateMachine sm = getStateMachine(stackEvent.device);
857 Log.w(TAG, "No SM found for event " + stackEvent);
860 sm.sendMessage(StackEvent.STACK_EVENT, stackEvent);
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-cloudformation/1.11.18/
aws-java-sdk-cloudformation-1.11.18.jar 

Completed in 231 milliseconds