Searched defs:exemptions (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/os/
H A DZygoteProcess.java162 * List of exemptions to the API blacklist. These are prefix matches on the runtime format
470 * Push hidden API blacklisting exemptions into the zygote process(es).
472 * <p>The list of exemptions will take affect for all new processes forked from the zygote after
475 * @param exemptions List of hidden API exemption prefixes. Any matching members are treated as
478 public boolean setApiBlacklistExemptions(List<String> exemptions) { argument
480 mApiBlacklistExemptions = exemptions;
507 Slog.e(LOG_TAG, "Can't set API blacklist exemptions: no zygote connection");
516 state.writer.write("--set-api-blacklist-exemptions");
525 Slog.e(LOG_TAG, "Failed to set API blacklist exemptions; status " + status);
529 Slog.e(LOG_TAG, "Failed to set API blacklist exemptions", io
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteConnection.java293 private void handleApiBlacklistExemptions(String[] exemptions) { argument
295 ZygoteInit.setApiBlacklistExemptions(exemptions);
473 * or when they change, via --set-api-blacklist-exemptions.
639 } else if (arg.equals("--set-api-blacklist-exemptions")) {
H A DZygoteInit.java543 public static void setApiBlacklistExemptions(String[] exemptions) { argument
544 VMRuntime.getRuntime().setHiddenApiExemptions(exemptions);

Completed in 51 milliseconds