| 4 | import java.util.List; |
| 5 | |
| 6 | public interface IUserManager { |
| 7 | UserInfo getPrimaryUser(); |
| 8 | |
| 9 | List<UserInfo> getUsers(boolean excludeDying); |
| 10 | |
| 11 | int getManagedProfileBadge(int userId); |
| 12 | |
| 13 | abstract class Stub{ |
| 14 | public static IUserManager asInterface(android.os.IBinder obj){ |
| 15 | return null; |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | } |
no outgoing calls
no test coverage detected