Home | History | Annotate | Download | only in helpers

Lines Matching refs:userId

65         int userId = INVALID_USER_ID;
67 userId = Integer.parseInt(matcher.group(1));
68 Log.i(TAG, String.format("User Name:%s User ID:%d", userName, userId));
70 return userId;
75 * @return userid
82 int userId = INVALID_USER_ID;
84 userId = Integer.parseInt(matcher.group(1)); // 1 = id 2 = flag
85 Log.i(TAG, String.format("The userId is %d", userId));
87 return userId;
90 public void removeSecondaryUser(int userId) {
92 CommandsHelper.execute("pm remove-user " + userId);