Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 41d269e1 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 12319997 from 9ff97e6b to 24Q4-release

Change-Id: If6fa514fa8dfa2ebf5cff376f4361028a19e4c2b
parents c5e98891 9ff97e6b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -134,6 +134,7 @@ cc_library_shared {
        "libcutils",
        "libevent",
        "libexpresslog",
        "libflags_rust_cpp_bridge",
        "libflatbuffers-cpp",
        "libfmq",
        "libg722codec",
@@ -329,6 +330,7 @@ android_app {
            "-Xep:AndroidFrameworkEfficientStrings:ERROR",
            "-Xep:AndroidFrameworkRequiresPermission:ERROR",
            "-Xep:BadImport:ERROR",
            "-Xep:CatchAndPrintStackTrace:ERROR",
            "-Xep:ClassCanBeStatic:ERROR",
            "-Xep:DateFormatConstant:ERROR",
            "-Xep:EmptyBlockTag:ERROR",
+424 −57

File changed.

Preview size limit exceeded, changes collapsed.

+23 −10
Original line number Diff line number Diff line
@@ -124,8 +124,9 @@ public class HidDeviceService extends ProfileService {
                                break;
                            }
                        } catch (RemoteException e) {
                            Log.e(TAG, "e=" + e.toString());
                            e.printStackTrace();
                            Log.e(
                                    TAG,
                                    e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
                        }

                        if (success) {
@@ -137,7 +138,11 @@ public class HidDeviceService extends ProfileService {
                                    binder.linkToDeath(mDeathRcpt, 0);
                                    Log.i(TAG, "IBinder.linkToDeath() ok");
                                } catch (RemoteException e) {
                                    e.printStackTrace();
                                    Log.e(
                                            TAG,
                                            e.toString()
                                                    + "\n"
                                                    + Log.getStackTraceString(new Throwable()));
                                }
                            }
                        } else if (mDeathRcpt != null) {
@@ -147,7 +152,11 @@ public class HidDeviceService extends ProfileService {
                                    binder.unlinkToDeath(mDeathRcpt, 0);
                                    Log.i(TAG, "IBinder.unlinkToDeath() ok");
                                } catch (NoSuchElementException e) {
                                    e.printStackTrace();
                                    Log.e(
                                            TAG,
                                            e.toString()
                                                    + "\n"
                                                    + Log.getStackTraceString(new Throwable()));
                                }
                                mDeathRcpt.cleanup();
                                mDeathRcpt = null;
@@ -178,7 +187,9 @@ public class HidDeviceService extends ProfileService {
                                mCallback.onConnectionStateChanged(device, state);
                            }
                        } catch (RemoteException e) {
                            e.printStackTrace();
                            Log.e(
                                    TAG,
                                    e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
                        }
                        break;
                    }
@@ -193,7 +204,7 @@ public class HidDeviceService extends ProfileService {
                            mCallback.onGetReport(mHidDevice, type, id, bufferSize);
                        }
                    } catch (RemoteException e) {
                        e.printStackTrace();
                        Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
                    }
                    break;

@@ -208,7 +219,9 @@ public class HidDeviceService extends ProfileService {
                                mCallback.onSetReport(mHidDevice, reportType, reportId, data);
                            }
                        } catch (RemoteException e) {
                            e.printStackTrace();
                            Log.e(
                                    TAG,
                                    e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
                        }
                        break;
                    }
@@ -221,7 +234,7 @@ public class HidDeviceService extends ProfileService {
                            mCallback.onSetProtocol(mHidDevice, protocol);
                        }
                    } catch (RemoteException e) {
                        e.printStackTrace();
                        Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
                    }
                    break;

@@ -234,7 +247,7 @@ public class HidDeviceService extends ProfileService {
                            mCallback.onInterruptData(mHidDevice, reportId, data);
                        }
                    } catch (RemoteException e) {
                        e.printStackTrace();
                        Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
                    }
                    break;

@@ -244,7 +257,7 @@ public class HidDeviceService extends ProfileService {
                            mCallback.onVirtualCableUnplug(mHidDevice);
                        }
                    } catch (RemoteException e) {
                        e.printStackTrace();
                        Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
                    }
                    mHidDevice = null;
                    break;
+4 −0
Original line number Diff line number Diff line
@@ -3632,6 +3632,10 @@ public class LeAudioService extends ProfileService {

                    /* Stop here if Broadcast was not in Streaming state before */
                    if (previousState != LeAudioStackEvent.BROADCAST_STATE_STREAMING) {
                        // Stop Big Monitoring in case that was some actions on extarnal broadcast
                        if (bassClientService != null) {
                            bassClientService.stopBigMonitoring();
                        }
                        return;
                    }

+1 −1
Original line number Diff line number Diff line
@@ -761,7 +761,7 @@ public class MediaControlProfile implements MediaControlServiceCallbacks {
            ApplicationInfo info = pm.getApplicationInfo(player.getPackageName(), 0);
            player_name = info.loadLabel(pm).toString();
        } catch (PackageManager.NameNotFoundException e) {
            e.printStackTrace();
            Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
        }
        return player_name;
    }
Loading