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

Commit b3e942e3 authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Promotion of android-framework.lnx.2.0.c1-00006.

CRs      Change ID                                   Subject
--------------------------------------------------------------------------------------------------------------
1078906   Ib0023b44e521b936ab2f9450ad367b1feda64492   Avoid crashing when downloading MitM'd PAC that is too b
1078777   I533125b36444877f54373d88922f2acc777e250b   Use "all_downloads" instead of "my_downloads".
1078771   I6d3f9faec32d54360caa6706d17405e20b50966c   Ensure munmap matches mmap
1078773   I421962cbfd7c466662edcef805c3e27321dc5a98   Fix deadlock in AcitivityManagerService.
1078788   I78484c59e4de1dff685ab91a0a8e7a756fffd9bf   Only return password for account session flow if the cal
1078792   I887de32d156e672ec44aa0b286cd7ea7f9f8ad55   Fix setPairingConfirmation permissions issue (2/2)
1078906   I8fa379a74b5d9467b5b9498bd18de2a043963c6f   Fix build break due to automerge of 7d2198b5
1078404   I5dcbb92d4539c77ef302b1b7e0fb72c0fd044b03   config: operator specific domestic roaming list
1078772   I141ecf90b5f0e708a21d27141b6fec6074e5d475   DO NOT MERGE Stop work challenge freeform bypass
1078907   I0b613f8ce0f014320c5ac1bf445699ea2702a0a2   Catch all exceptions when parsing IME meta data
1078699   I115a42601c774062485974042464abb0d65c35e9   DO NOT MERGE) ExifInterface: Make saveAttributes throw a
1078784   I2a9e78196ba7455324e485f098f095d03b47ee15   DO NOT MERGE Check caller for sending media key to globa

Change-Id: I6dfc88b95b68eafa51725e1110457734f49f1655
CRs-Fixed: 1078404, 1078699, 1078792, 1078784, 1078906, 1078907, 1078773, 1078772, 1078771, 1078777, 1078788
parents c616e98d dd677790
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -2702,8 +2702,6 @@ public class AccountManager {
     *         <ul>
     *         <li>{@link #KEY_ACCOUNT_SESSION_BUNDLE} - encrypted Bundle for
     *         adding the the to the device later.
     *         <li>{@link #KEY_PASSWORD} - optional, the password or password
     *         hash of the account.
     *         <li>{@link #KEY_ACCOUNT_STATUS_TOKEN} - optional, token to check
     *         status of the account
     *         </ul>
@@ -2791,8 +2789,6 @@ public class AccountManager {
     *         <ul>
     *         <li>{@link #KEY_ACCOUNT_SESSION_BUNDLE} - encrypted Bundle for
     *         updating the local credentials on device later.
     *         <li>{@link #KEY_PASSWORD} - optional, the password or password
     *         hash of the account
     *         <li>{@link #KEY_ACCOUNT_STATUS_TOKEN} - optional, token to check
     *         status of the account
     *         </ul>
+3 −3
Original line number Diff line number Diff line
@@ -1089,7 +1089,7 @@ public class DownloadManager {
            if (cursor.moveToFirst()) {
                int status = cursor.getInt(cursor.getColumnIndexOrThrow(COLUMN_STATUS));
                if (DownloadManager.STATUS_SUCCESSFUL == status) {
                    return ContentUris.withAppendedId(Downloads.Impl.CONTENT_URI, id);
                   return ContentUris.withAppendedId(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, id);
                }
            }
        } finally {
@@ -1425,7 +1425,7 @@ public class DownloadManager {
     * @hide
     */
    public Uri getDownloadUri(long id) {
        return ContentUris.withAppendedId(mBaseUri, id);
        return ContentUris.withAppendedId(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, id);
    }

    /**
@@ -1519,7 +1519,7 @@ public class DownloadManager {

            // return content URI for cache download
            long downloadId = getLong(getColumnIndex(Downloads.Impl._ID));
            return ContentUris.withAppendedId(mBaseUri, downloadId).toString();
            return ContentUris.withAppendedId(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, downloadId).toString();
        }

        private long getReason(int status) {
+2 −2
Original line number Diff line number Diff line
@@ -1164,12 +1164,12 @@ public final class BluetoothDevice implements Parcelable {

    /**
     * Confirm passkey for {@link #PAIRING_VARIANT_PASSKEY_CONFIRMATION} pairing.
     * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}.
     * <p>Requires {@link android.Manifest.permission#BLUETOOTH_PRIVILEGED}.
     *
     * @return true confirmation has been sent out
     *         false for error
     */
    @RequiresPermission(Manifest.permission.BLUETOOTH_ADMIN)
    @RequiresPermission(Manifest.permission.BLUETOOTH_PRIVILEGED)
    public boolean setPairingConfirmation(boolean confirm) {
        if (sService == null) {
            Log.e(TAG, "BT not enabled. Cannot set pairing confirmation");
+3 −3
Original line number Diff line number Diff line
@@ -150,12 +150,12 @@ Bitmap::Bitmap(void* address, void* context, FreeFunc freeFunc,
    mPixelRef->unref();
}

Bitmap::Bitmap(void* address, int fd,
Bitmap::Bitmap(void* address, int fd, size_t mappedSize,
            const SkImageInfo& info, size_t rowBytes, SkColorTable* ctable)
        : mPixelStorageType(PixelStorageType::Ashmem) {
    mPixelStorage.ashmem.address = address;
    mPixelStorage.ashmem.fd = fd;
    mPixelStorage.ashmem.size = ashmem_get_size_region(fd);
    mPixelStorage.ashmem.size = mappedSize;
    mPixelRef.reset(new WrappedPixelRef(this, address, info, rowBytes, ctable));
    // Note: this will trigger a call to onStrongRefDestroyed(), but
    // we want the pixel ref to have a ref count of 0 at this point
@@ -1026,7 +1026,7 @@ static jobject Bitmap_createFromParcel(JNIEnv* env, jobject, jobject parcel) {

        // Map the pixels in place and take ownership of the ashmem region.
        nativeBitmap = GraphicsJNI::mapAshmemPixelRef(env, bitmap.get(),
                ctable, dupFd, const_cast<void*>(blob.data()), !isMutable);
                ctable, dupFd, const_cast<void*>(blob.data()), size, !isMutable);
        SkSafeUnref(ctable);
        if (!nativeBitmap) {
            close(dupFd);
+2 −2
Original line number Diff line number Diff line
@@ -51,8 +51,8 @@ public:
            const SkImageInfo& info, size_t rowBytes, SkColorTable* ctable);
    Bitmap(void* address, void* context, FreeFunc freeFunc,
            const SkImageInfo& info, size_t rowBytes, SkColorTable* ctable);
    Bitmap(void* address, int fd, const SkImageInfo& info, size_t rowBytes,
            SkColorTable* ctable);
    Bitmap(void* address, int fd, size_t mappedSize, const SkImageInfo& info,
            size_t rowBytes, SkColorTable* ctable);

    const SkImageInfo& info() const;

Loading