Searched refs:GameSessionEventInfo (Results 1 – 6 of 6) sorted by relevance
30 public final class GameSessionEventInfo implements Parcelable { class32 public static final Parcelable.Creator<GameSessionEventInfo> CREATOR =33 new Parcelable.Creator<GameSessionEventInfo>() {35 public GameSessionEventInfo createFromParcel(Parcel source) {36 return new GameSessionEventInfo(43 public GameSessionEventInfo[] newArray(int size) {44 return new GameSessionEventInfo[0];63 public static GameSessionEventInfo create( in create()67 return new GameSessionEventInfo(gamePackageName, taskId, event); in create()70 private GameSessionEventInfo(String gamePackageName, int taskId, @GameSessionEvent int event) { in GameSessionEventInfo() method in GameSessionEventInfo[all …]
22 import android.service.games.testing.GameSessionEventInfo;32 List<GameSessionEventInfo> getGameSessionEventHistory(); in getGameSessionEventHistory()
18 parcelable GameSessionEventInfo;
23 import android.service.games.testing.GameSessionEventInfo;51 private static ArrayList<GameSessionEventInfo> sGameSessionEventHistory = new ArrayList<>();73 static ArrayList<GameSessionEventInfo> getGameSessionEventHistory() { in getGameSessionEventHistory()123 GameSessionEventInfo.create( in onCreate()126 GameSessionEventInfo.GAME_SESSION_EVENT_CREATED)); in onCreate()196 GameSessionEventInfo.create( in onDestroy()199 GameSessionEventInfo.GAME_SESSION_EVENT_DESTROYED)); in onDestroy()
49 import android.service.games.testing.GameSessionEventInfo;238 List<GameSessionEventInfo> gameSessionEventHistory = in gameService_multipleGames_startsGameSessionsForGames()242 GameSessionEventInfo.create( in gameService_multipleGames_startsGameSessionsForGames()245 GameSessionEventInfo.GAME_SESSION_EVENT_CREATED), in gameService_multipleGames_startsGameSessionsForGames()246 GameSessionEventInfo.create( in gameService_multipleGames_startsGameSessionsForGames()249 GameSessionEventInfo.GAME_SESSION_EVENT_CREATED)) in gameService_multipleGames_startsGameSessionsForGames()273 List<GameSessionEventInfo> gameSessionEventHistory = in gameService_multipleGamesIncludingStops_startsGameSessionsForGames()277 GameSessionEventInfo.create( in gameService_multipleGamesIncludingStops_startsGameSessionsForGames()280 GameSessionEventInfo.GAME_SESSION_EVENT_CREATED), in gameService_multipleGamesIncludingStops_startsGameSessionsForGames()281 GameSessionEventInfo.create( in gameService_multipleGamesIncludingStops_startsGameSessionsForGames()[all …]
31 import android.service.games.testing.GameSessionEventInfo;75 public List<GameSessionEventInfo> getGameSessionEventHistory() {