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.java524 ActivitySessionHost(Context context, String hostId, String clientId,
527 mHostId = hostId;
530 context.registerReceiver(this, new IntentFilter(hostId));
566 void add(String hostId, T data) {
567 ArrayList<T> commands = mStorage.get(hostId);
570 mStorage.put(hostId, commands);
575 ArrayList<T> get(String hostId) {
576 return mStorage.get(hostId);
579 void clear(String hostId) {
580 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()