Home
last modified time | relevance | path

Searched refs:GameSessionEventInfo (Results 1 – 6 of 6) sorted by relevance

/cts/tests/tests/gameservice/src/android/service/games/testing/
DGameSessionEventInfo.java30 public final class GameSessionEventInfo implements Parcelable { class
32 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 …]
DIGameServiceTestService.aidl22 import android.service.games.testing.GameSessionEventInfo;
32 List<GameSessionEventInfo> getGameSessionEventHistory(); in getGameSessionEventHistory()
DGameSessionEventInfo.aidl18 parcelable GameSessionEventInfo;
/cts/tests/tests/gameservice/src/android/service/games/
DTestGameSessionService.java23 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()
DGameServiceTest.java49 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 …]
DGameServiceTestService.java31 import android.service.games.testing.GameSessionEventInfo;
75 public List<GameSessionEventInfo> getGameSessionEventHistory() {