Searched refs:startedFeatures (Results 1 – 3 of 3) sorted by relevance
79 public void onInitComplete(List<String> allAvailableFeatures, List<String> startedFeatures,85 if (startedFeatures == null || classNames == null || binders == null) {89 int sizeOfStartedFeatures = startedFeatures.size();94 + startedFeatures + " classNames:" + classNames + " binders:" + binders);100 for (int i = 0; i < startedFeatures.size(); i++) {101 mEnabledFeatures.put(startedFeatures.get(i),110 Log.i(TAG, "Started experimental features:" + startedFeatures);
90 ArrayList<String> startedFeatures = new ArrayList<>(); in init() local106 startedFeatures.add(feature); in init()116 helper.onInitComplete(ALL_AVAILABLE_FEATURES, startedFeatures, classNames, binders); in init()
31 void onInitComplete(in List<String> allAvailableFeatures, in List<String> startedFeatures, in onInitComplete() argument