Home
last modified time | relevance | path

Searched refs:user (Results 1 – 25 of 25) sorted by relevance

/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestAcknowledgmentEntityTest.java57 User user = UserServiceFactory.getUserService().getCurrentUser(); in testEntitySerialization() local
66 new TestAcknowledgmentEntity(key, user, branches, devices, testCaseNames, note); in testEntitySerialization()
71 Assert.assertEquals(user, e.getProperty(TestAcknowledgmentEntity.USER_OBJ)); in testEntitySerialization()
86 Assert.assertEquals(user, deserialized.getUserObj()); in testEntitySerialization()
97 User user = UserServiceFactory.getUserService().getCurrentUser(); in testEntitySerializationWithNulls() local
99 new TestAcknowledgmentEntity(key, user, null, null, null, null); in testEntitySerializationWithNulls()
104 Assert.assertEquals(user, e.getProperty(TestAcknowledgmentEntity.USER_OBJ)); in testEntitySerializationWithNulls()
113 Assert.assertEquals(user, deserialized.getUserObj()); in testEntitySerializationWithNulls()
124 User user = UserServiceFactory.getUserService().getCurrentUser(); in testJsonSerialization() local
133 new TestAcknowledgmentEntity(key, user, branches, devices, testCaseNames, note); in testJsonSerialization()
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DUserFavoriteEntity.java51 @Ignore public User user = null; field in UserFavoriteEntity
69 private UserFavoriteEntity(Key key, User user, Key testKey, boolean muteNotifications) { in UserFavoriteEntity() argument
71 this.user = user; in UserFavoriteEntity()
83 public UserFavoriteEntity(User user, Key testKey, boolean muteNotifications) { in UserFavoriteEntity() argument
84 this(null, user, testKey, muteNotifications); in UserFavoriteEntity()
100 favoriteEntity.setProperty(USER, this.user); in toEntity()
119 User user = (User) e.getProperty(USER); in fromEntity() local
125 return new UserFavoriteEntity(e.getKey(), user, testKey, muteNotifications); in fromEntity()
DTestAcknowledgmentEntity.java76 private String user; field in TestAcknowledgmentEntity
192 User user = (User) e.getProperty(USER_OBJ); in fromEntity() local
211 e.getKey(), created, test, user, branches, devices, testCaseNames, note); in fromEntity()
225 public static TestAcknowledgmentEntity fromJson(User user, JsonObject json) { in fromJson() argument
257 key, -1l, testKey, user, branches, devices, testCaseNames, note); in fromJson()
/test/cts-root/tests/usage/src/android/usage/cts_root/
DStorageStatsManagerLocalTest.java58 UserHandle user = context.getUser(); in testStorageAugmenter() local
63 storageStatsManager.queryStatsForPackage(UUID_DEFAULT, packageName, user); in testStorageAugmenter()
65 StorageStats beforeStatsForUser = storageStatsManager.queryStatsForUser(UUID_DEFAULT, user); in testStorageAugmenter()
73 storageStatsManager.queryStatsForPackage(UUID_DEFAULT, packageName, user); in testStorageAugmenter()
75 StorageStats afterStatsForUser = storageStatsManager.queryStatsForUser(UUID_DEFAULT, user); in testStorageAugmenter()
/test/vti/dashboard/src/main/resources/
Dconfig.properties26 user.adminEmail=
27 user.adminName=
28 user.adminCompany=
/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsAlertJobServletTest.java49 User user; field in VtsAlertJobServletTest
60 user = UserServiceFactory.getUserService().getCurrentUser(); in setUpExtra()
92 new TestAcknowledgmentEntity(testKey, user, null, null, null, null); in testSeparateAcknowledgedAll()
119 testKey, user, branches, devices, testCaseNames, null); in testSeparateAcknowledgedSpecific()
145 testKey, user, branches, devices, testCaseNames, null); in testSeparateAcknowledgedSpecificMismatch()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DUserFavoriteRestServlet.java63 User user, String test, boolean muteNotifications, HttpServletResponse response) in addFavorite() argument
76 new FilterPredicate(UserFavoriteEntity.USER, FilterOperator.EQUAL, user); in addFavorite()
95 new UserFavoriteEntity(user, addedTestKey, muteNotifications); in addFavorite()
123 User user, Key favoriteKey, boolean muteNotifications, HttpServletResponse response) in updateFavorite() argument
134 if (favorite.user.getUserId() == user.getUserId()) { in updateFavorite()
/test/vti/dashboard/src/main/webapp/css/
Ddashboard_main.css21 user-select: none;
31 user-select: none;
77 user-select: none;
Dtest_acknowledgments.css24 user-select: none;
58 user-select: none;
63 user-select: none;
76 user-select: none;
Dtest_results.css19 user-select: none;
35 user-select: initial;
43 user-select: initial;
Dsearch_header.css28 user-select: none;
42 user-select: none;
Dshow_test_acknowledgments.css20 user-select: none;
Dshow_release.css31 user-select: none;
Dnavbar.css17 user-select: none;
Dshow_table.css72 user-select: none;
Dshow_test_runs_common.css69 user-select: none;
/test/vti/test_serving/gae/webapp/src/handlers/
Dbase.py167 user = users.get_current_user()
168 if user:
180 'user': user,
/test/vti/dashboard/src/main/java/com/android/vts/util/
DEmailHelper.java112 && favoriteEntity.user != null in getSubscriberEmails()
114 Optional<String> userEmail = Optional.of(favoriteEntity.user.getEmail()); in getSubscriberEmails()
117 emailSet.add(favoriteEntity.user.getEmail()); in getSubscriberEmails()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DBaseServlet.java170 ? currentUser.map(user -> user.getEmail().trim()).orElse("") in doGet()
/test/mts/
DREADME.md13 //TODO: add user manual
/test/vts-testcase/hal/
DAndroid.bp48 // Userdebug only, should not be used to build modules contained in a user build device image.
/test/vts-testcase/performance/audio_loopback_test/
DREADME.md17 …eplex-android.git.corp.google.com/platform/vendor/google_toolbox/+/master/user/rago/studio/Loopbac…
/test/vts/proto/
DVtsResourceControllerMessage.proto105 // TODO: support user-defined types
DComponentSpecificationMessage.proto266 // not a user-provided variable. used by the frameworks to tell the sub
375 // When opening a file in host side, user specifies file
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_coverage.jsp88 /* Open a window to Gerrit so that user can login.