HomeSort by relevance Sort by last modified time
    Searched refs:users (Results 151 - 175 of 793) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/linux-x86/src/internal/nettrace/
nettrace.go 8 // users.
17 // It is not exposed to outsider users. (But see issue 12503)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
userquery.py 31 Query SELinux policy users.
84 """Generator which yields all matching users."""
94 for user in self.policy.users():
  /system/media/audio/include/system/
sound_trigger.h 26 #define SOUND_TRIGGER_MAX_USERS 10 /* max number of concurrent users */
68 unsigned int max_users; /* maximum number of concurrent users detected */
94 * Proprietary representation of users in binary data must match information indicated
95 * by users field
111 unsigned int num_users; /* number of users in the key phrase */
112 unsigned int users[SOUND_TRIGGER_MAX_USERS]; /* users ids: (not uid_t but sound trigger member in struct:sound_trigger_phrase
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
UserFavoriteEntity.java 21 import com.google.appengine.api.users.User;
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowReleaseServlet.java 24 import com.google.appengine.api.users.UserServiceFactory;
BaseServlet.java 19 import com.google.appengine.api.users.User;
20 import com.google.appengine.api.users.UserService;
21 import com.google.appengine.api.users.UserServiceFactory;
DashboardMainServlet.java 32 import com.google.appengine.api.users.User;
33 import com.google.appengine.api.users.UserService;
34 import com.google.appengine.api.users.UserServiceFactory;
  /frameworks/base/core/java/android/os/
UserManager.java 59 * Manages users and user details on a multi-user system. There are two major categories of
60 * users: fully customizable users with their own login, and managed profiles that share a workspace
63 * Users are different from accounts, which are managed by
301 * owner can set this restriction. When it is set by device owner, all users on this device will
342 * When set on the primary user this specifies if the user can remove other users.
425 * time and timezone setting on the entire device and all users will be affected. When it's set
457 * <p>This restriction has no effect on secondary users and managed profiles since only the
472 * <p>This restriction has no effect on secondary users and managed profiles since only the
484 * Specifies if a user is disallowed from adding new users. This can only be set by devic
2139 List<UserInfo> users = getUsers(); local
2170 List<UserInfo> users = mService.getUsers(excludeDying); local
2236 final List<UserInfo> users = getUsers(true); local
2666 List<UserInfo> users = getUsers(true); local
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/deviceinfo/
StorageMeasurement.java 148 final List<UserInfo> users = mUser.getUsers(); local
174 for (UserInfo user : users) {
204 for (UserInfo user : users) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
UserAdapter.java 44 * Adapter for a spinner that shows a list of users.
82 public UserAdapter(Context context, ArrayList<UserDetails> users) {
83 if (users == null) {
86 this.data = users;
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/dao/
UserDao.java 81 public abstract int deleteAll(User[] users);
90 public abstract int updateAll(List<User> users);
93 public abstract void insertAll(User[] users);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
UninstallFinish.java 139 List<UserInfo> users = userManager.getUsers(); local
141 for (int i = 0; i < users.size(); ++i) {
142 final UserInfo user = users.get(i);
  /packages/apps/Settings/src/com/android/settings/users/
UserDetailsSettings.java 17 package com.android.settings.users;
148 List<UserInfo> users = mUserManager.getUsers(true); local
149 for (UserInfo user: users) {
  /test/vti/dashboard/src/main/java/com/android/vts/api/
TestAcknowledgmentRestServlet.java 30 import com.google.appengine.api.users.User;
31 import com.google.appengine.api.users.UserService;
32 import com.google.appengine.api.users.UserServiceFactory;
UserFavoriteRestServlet.java 33 import com.google.appengine.api.users.User;
34 import com.google.appengine.api.users.UserService;
35 import com.google.appengine.api.users.UserServiceFactory;
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_scheduling.cc 88 // of users. This is represented as a std::pair containing these two values
214 for (const HloInstruction* user : instruction->users()) {
276 for (HloInstruction* user : best->users()) {
287 for (HloInstruction* operand_user : operand->users()) {
348 // simply users-1 for each instruction. By subtracting 1, we're saying that
349 // instructions with no users or a single user don't count; instructions with
359 extra_users[hlo] = hlo->users().empty() ? 0 : hlo->users().size() - 1;
while_loop_simplifier.cc 316 // Bail if param0 of while_cond or while_body has users which aren't of type
320 for (const HloInstruction* user : instr->users()) {
345 for (const HloInstruction* user : while_input->users()) {
353 if (user->user_count() == 1 && user->users().front() == while_body_root &&
434 // Materialize param's users, since we're about to add new ones below.
435 std::vector<HloInstruction*> materialized_users(param->users().begin(),
436 param->users().end());
457 user->users().front() == while_body_root)
460 "users: {"
462 user->users(), ", ",
    [all...]
  /frameworks/base/tests/SoundTriggerTests/src/android/hardware/soundtrigger/
SoundTriggerTest.java 53 assertNull(unparceled.users);
72 assertTrue(Arrays.equals(keyphrase.users, unparceled.users));
91 assertTrue(Arrays.equals(keyphrase.users, unparceled.users));
  /external/libmojo/third_party/jinja2/
filters.py 308 {{ users|join(', ', attribute='username') }}
668 group all users by genders you can do something like the following
804 of users but you are only interested in a list of usernames:
808 Users on this page: {{ users|map(attribute='username')|join(', ') }}
816 Users on this page: {{ titles|map('lower')|join(', ') }}
884 {{ users|selectattr("is_active") }}
885 {{ users|selectattr("email", "none") }}
899 {{ users|rejectattr("is_active") }}
900 {{ users|rejectattr("email", "none") }
    [all...]
  /development/vndk/tools/definition-tool/assets/insight/
insight.js 66 this.users = modData[4];
70 this.numUsers = this.users.length;
146 let users = this.users;
147 if (users.length > 0) {
148 this.createModuleRelationsDom(domTd, 'Direct', users);
340 'Users',
  /external/llvm/include/llvm/IR/
Statepoint.h 256 for (auto *U : getInstruction()->users())
409 for (const User *U : getInstruction()->users())
421 for (const User *LandingPadUser : LandingPad->users()) {
  /frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
BaseSettingsProviderTest.java 314 List<UserInfo> users = userManager.getUsers(); local
315 final int userCount = users.size();
317 UserInfo user = users.get(i);
  /frameworks/base/services/core/java/com/android/server/pm/
UserDataPreparer.java 162 * Examine all users present on given mounted volume, and destroy data
163 * belonging to users that are no longer valid, or whose user ID has been
184 SparseArray<UserInfo> users = new SparseArray<>(userCount); local
187 users.put(user.id, user);
198 info = users.get(userId);
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
WriteAheadLoggingTest.java 167 .onChanged(argThat(users -> users != null && users.size() == numberOfThreads));
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/television/
UninstallAppProgress.java 193 List<UserInfo> users = userManager.getUsers(); local
195 for (int i = 0; i < users.size(); ++i) {
196 final UserInfo user = users.get(i);

Completed in 1447 milliseconds

1 2 3 4 5 67 8 91011>>