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

Commit a1ad0868 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "Add # apex symbols."

am: 56bd0c9c

Change-Id: I729b7659a5f7c2c7830686ae1be63c1f496d34ab
parents a319fb22 56bd0c9c
Loading
Loading
Loading
Loading
+5 −1
Original line number Original line Diff line number Diff line
@@ -23,7 +23,11 @@ cc_library {
        "include_apex",
        "include_apex",
    ],
    ],


    cflags: ["-Wall", "-Wextra", "-Werror"],
    cflags: [
        "-Wall",
        "-Wextra",
        "-Werror",
    ],


    srcs: [
    srcs: [
        "ibinder.cpp",
        "ibinder.cpp",
+5 −0
Original line number Original line Diff line number Diff line
@@ -87,6 +87,11 @@ LIBBINDER_NDK { # introduced=29
    AStatus_getStatus;
    AStatus_getStatus;
    AStatus_isOk;
    AStatus_isOk;
    AStatus_newOk;
    AStatus_newOk;
    ABinderProcess_joinThreadPool; # apex
    ABinderProcess_setThreadPoolMaxThreadCount; # apex
    ABinderProcess_startThreadPool; # apex
    AServiceManager_addService; # apex
    AServiceManager_getService; # apex
  local:
  local:
    *;
    *;
};
};
+4 −0
Original line number Original line Diff line number Diff line
@@ -10,6 +10,10 @@ echo " global:"
    grep -oP "AParcel_[a-zA-Z0-9_]+(?=\()" include_ndk/android/binder_parcel.h;
    grep -oP "AParcel_[a-zA-Z0-9_]+(?=\()" include_ndk/android/binder_parcel.h;
    grep -oP "AStatus_[a-zA-Z0-9_]+(?=\()" include_ndk/android/binder_status.h;
    grep -oP "AStatus_[a-zA-Z0-9_]+(?=\()" include_ndk/android/binder_status.h;
} | sort | uniq | awk '{ print "    " $0 ";"; }'
} | sort | uniq | awk '{ print "    " $0 ";"; }'
{
    grep -oP "AServiceManager_[a-zA-Z0-9_]+(?=\()" include_apex/android/binder_manager.h;
    grep -oP "ABinderProcess_[a-zA-Z0-9_]+(?=\()" include_apex/android/binder_process.h;
} | sort | uniq | awk '{ print "    " $0 "; # apex"; }'
echo "  local:"
echo "  local:"
echo "    *;"
echo "    *;"
echo "};"
echo "};"