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

Commit 128b680e authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11486370 from a559a12b to 24Q2-release

Change-Id: Ice10850735aa7134734099873abe20af811d707e
parents ba484196 a559a12b
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -181,6 +181,7 @@ static constexpr size_t MAX_POINTERS = 16;
 */
struct AInputEvent {
    virtual ~AInputEvent() {}
    bool operator==(const AInputEvent&) const = default;
};

/*
@@ -545,6 +546,8 @@ public:

    static int32_t nextId();

    bool operator==(const InputEvent&) const = default;

protected:
    void initialize(int32_t id, DeviceId deviceId, uint32_t source, int32_t displayId,
                    std::array<uint8_t, 32> hmac);
@@ -598,6 +601,8 @@ public:

    static const char* actionToString(int32_t action);

    bool operator==(const KeyEvent&) const = default;

protected:
    int32_t mAction;
    int32_t mFlags;
@@ -917,6 +922,9 @@ public:
    // The rounding precision for transformed motion events.
    static constexpr float ROUNDING_PRECISION = 0.001f;

    bool operator==(const MotionEvent&) const;
    inline bool operator!=(const MotionEvent& o) const { return !(*this == o); };

protected:
    int32_t mAction;
    int32_t mActionButton;
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@

package {
    default_applicable_licenses: ["frameworks_native_libs_arect_license"],
    default_team: "trendy_team_android_core_graphics_stack",
}

// Added automatically by a large-scale-change
+2 −0
Original line number Diff line number Diff line
@@ -248,6 +248,8 @@ void AServiceManager_getUpdatableApexName(const char* instance, void* context,
 * \param instance identifier of the passthrough service (e.g. "mapper")
 * \param instance identifier of the implemenatation (e.g. "default")
 * \param flag passed to dlopen()
 *
 * \return the result of dlopen of the specified HAL
 */
void* AServiceManager_openDeclaredPassthroughHal(const char* interface, const char* instance,
                                                 int flag)
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ package {
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["frameworks_native_license"],
    default_team: "trendy_team_android_core_graphics_stack",
}

cc_library_headers {
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@

package {
    default_applicable_licenses: ["frameworks_native_license"],
    default_team: "trendy_team_android_core_graphics_stack",
}

aconfig_declarations {
Loading