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

Commit cbe9a326 authored by Jiyong Park's avatar Jiyong Park
Browse files

Replace #apex with #systemapi

Currently, for an API symbol to be accessible to APEXes, it needs to be
marked as either # systemapi or # apex. It was originally just # apex,
but we added # systemapi to clearly identify the origin of the APIs.

The intended use is

* #apex is for APEX-visible symbols that are defined in an APEX
* #systemapi is for APEX-visible symbols that are defined in the
  platform (the non-updatable part)

This intention is documented build/soong/docs/map_files.md, but isn't
enforced at all.

With b/239274367, this is now enforced and therefore the #apex tags in
the platform library are replaced with `#systemapi`

This change does not alter any functionality.

Bug: 239274367
Test: m
Change-Id: I14d0586223c24c302bb4d5a81a8240da77fb947a
parent c312f3f5
Loading
Loading
Loading
Loading
+20 −20
Original line number Diff line number Diff line
LIBNATIVEDISPLAY {
  global:
    AChoreographer_getInstance; # apex # introduced=30
    AChoreographer_postFrameCallback; # apex # introduced=30
    AChoreographer_postFrameCallbackDelayed; # apex # introduced=30
    AChoreographer_postFrameCallback64; # apex # introduced=30
    AChoreographer_postFrameCallbackDelayed64; # apex # introduced=30
    AChoreographer_registerRefreshRateCallback; # apex # introduced=30
    AChoreographer_unregisterRefreshRateCallback; # apex # introduced=30
    AChoreographer_postVsyncCallback; # apex # introduced=33
    AChoreographerFrameCallbackData_getFrameTimeNanos; # apex # introduced=33
    AChoreographerFrameCallbackData_getFrameTimelinesLength; # apex # introduced=33
    AChoreographerFrameCallbackData_getPreferredFrameTimelineIndex; # apex # introduced=33
    AChoreographerFrameCallbackData_getFrameTimelineVsyncId; # apex # introduced=33
    AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentationTimeNanos; # apex # introduced=33
    AChoreographerFrameCallbackData_getFrameTimelineDeadlineNanos; # apex # introduced=33
    AChoreographer_create; # apex # introduced=30
    AChoreographer_destroy; # apex # introduced=30
    AChoreographer_getFd; # apex # introduced=30
    AChoreographer_handlePendingEvents; # apex # introduced=30
    ASurfaceTexture_fromSurfaceTexture; # apex # introduced=30
    ASurfaceTexture_release; # apex # introduced=30
    AChoreographer_getInstance; # systemapi # introduced=30
    AChoreographer_postFrameCallback; # systemapi # introduced=30
    AChoreographer_postFrameCallbackDelayed; # systemapi # introduced=30
    AChoreographer_postFrameCallback64; # systemapi # introduced=30
    AChoreographer_postFrameCallbackDelayed64; # systemapi # introduced=30
    AChoreographer_registerRefreshRateCallback; # systemapi # introduced=30
    AChoreographer_unregisterRefreshRateCallback; # systemapi # introduced=30
    AChoreographer_postVsyncCallback; # systemapi # introduced=33
    AChoreographerFrameCallbackData_getFrameTimeNanos; # systemapi # introduced=33
    AChoreographerFrameCallbackData_getFrameTimelinesLength; # systemapi # introduced=33
    AChoreographerFrameCallbackData_getPreferredFrameTimelineIndex; # systemapi # introduced=33
    AChoreographerFrameCallbackData_getFrameTimelineVsyncId; # systemapi # introduced=33
    AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentationTimeNanos; # systemapi # introduced=33
    AChoreographerFrameCallbackData_getFrameTimelineDeadlineNanos; # systemapi # introduced=33
    AChoreographer_create; # systemapi # introduced=30
    AChoreographer_destroy; # systemapi # introduced=30
    AChoreographer_getFd; # systemapi # introduced=30
    AChoreographer_handlePendingEvents; # systemapi # introduced=30
    ASurfaceTexture_fromSurfaceTexture; # systemapi # introduced=30
    ASurfaceTexture_release; # systemapi # introduced=30
  local:
    *;
};