Home
last modified time | relevance | path

Searched refs:hostId (Results 1 – 2 of 2) sorted by relevance

/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DCommandSession.java555 ActivitySessionHost(Context context, String hostId, String clientId,
558 mHostId = hostId;
561 context.registerReceiver(this, new IntentFilter(hostId));
621 void add(String hostId, T data) {
622 ArrayList<T> commands = mStorage.get(hostId);
625 mStorage.put(hostId, commands);
630 ArrayList<T> get(String hostId) {
631 return mStorage.get(hostId);
634 void clear(String hostId) {
635 mStorage.remove(hostId);
[all …]
/cts/hostsidetests/devicepolicy/app/WidgetProvider/src/com/android/cts/widgetprovider/
DSimpleAppWidgetHostService.java196 public SimpleAppWidgetHost(Context context, int hostId) { in SimpleAppWidgetHost() argument
197 super(context, hostId); in SimpleAppWidgetHost()