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

Commit 0e517192 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 13683512 from 5e116051 to 25Q4-release

Change-Id: I381d54e516fff916f8919ebd3db89935cb3ccb59
parents 59ddead9 5e116051
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -282,6 +282,7 @@ cc_defaults {
        "-Wunused-const-variable",
        "-Wunused-result",
        "-Wexit-time-destructors",
        "-Wshadow",
        "-DANDROID_BASE_UNIQUE_FD_DISABLE_IMPLICIT_CONVERSION",
        "-DANDROID_UTILS_REF_BASE_DISABLE_IMPLICIT_CONSTRUCTION",
        // Hide symbols by default and set the BUILDING_LIBBINDER macro so that
+3 −1
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#define LOG_TAG "libbinder.BackendUnifiedServiceManager"

#include "BackendUnifiedServiceManager.h"

#include <android-base/strings.h>
@@ -182,7 +184,7 @@ Status BackendUnifiedServiceManager::updateCache(const std::string& serviceName,
    if (atrace_is_tag_enabled(ATRACE_TAG_AIDL)) {
        traceStr = "BinderCacheWithInvalidation::updateCache : " + serviceName;
    }
    binder::ScopedTrace aidlTrace(ATRACE_TAG_AIDL, traceStr.c_str());
    binder::ScopedTrace outerAidlTrace(ATRACE_TAG_AIDL, traceStr.c_str());
    if (!binder) {
        binder::ScopedTrace
                aidlTrace(ATRACE_TAG_AIDL,
+4 −2
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#define LOG_TAG "libbinder.Binder"

#include <binder/Binder.h>

@@ -411,8 +412,9 @@ status_t BBinder::transact(
    if (reply != nullptr) {
        reply->setDataPosition(0);
        if (reply->dataSize() > binder::kLogTransactionsOverBytes) {
            ALOGW("Large reply transaction of %zu bytes, interface descriptor %s, code %d",
                  reply->dataSize(), String8(getInterfaceDescriptor()).c_str(), code);
            ALOGW("Large reply transaction of %zu bytes, interface descriptor %s, code %d, flags "
                  "%d",
                  reply->dataSize(), String8(getInterfaceDescriptor()).c_str(), code, flags);
        }
    }

+3 −1
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#define LOG_TAG "libbinder.BinderObserver"

#include "BinderObserver.h"
#include <mutex>

+3 −0
Original line number Diff line number Diff line
@@ -13,7 +13,10 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#define LOG_TAG "libbinder.BinderStatsPusher"

#include "BinderStatsPusher.h"

#include <android-base/properties.h>
#include <android/os/IStatsBootstrapAtomService.h>
#include <binder/Functional.h>
Loading