HomeSort by relevance Sort by last modified time
    Searched refs:user (Results 26 - 50 of 3204) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
ReadComplexTernaryTest.java 6 import android.databinding.testapp.vo.User;
16 User user = new User(); local
17 user.setName("a");
18 user.setFullName("a b");
19 mBinder.setUser(user);
  /external/nist-sip/java/gov/nist/javax/sip/address/
UserInfo.java 36 * User information part of a URL.
47 /** user field
49 protected String user; field in class:UserInfo
65 public final static int USER = 2;
86 if (!this.user.equalsIgnoreCase(other.user)) {
102 * Encode the user information as a string.
111 buffer.append(user).append(COLON).append(password);
113 buffer.append(user);
125 * Gets the user type (which can be set to TELEPHONE_SUBSCRIBER or USER
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeNonDirs/
platform_CryptohomeNonDirs.py 14 def require_mount_fail(self, user):
16 cryptohome.mount_vault(user, 'test', create=True)
20 raise error.TestFail('Mount succeeded for %s' % user)
35 # Leaf element of user path is non-dir.
36 user = utils.random_username()
37 path = cryptohome.user_path(user)
40 self.require_mount_fail(user)
45 user = utils.random_username()
46 path = cryptohome.system_path(user)
49 self.require_mount_fail(user)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
liveness_util.cc 33 const HloInstruction* user,
35 CHECK(user->IsUserOf(operand))
36 << "user: " << user->ToString() << " operand: " << operand->ToString();
37 if (user->opcode() == HloOpcode::kGetTupleElement && !index.empty()) {
41 } else if (user->opcode() == HloOpcode::kFusion &&
42 user->fusion_kind() == HloInstruction::FusionKind::kLoop) {
45 user->fused_parameters().begin(), user->fused_parameters().end(),
47 return user->operand(fused_param->parameter_number()) == operand
    [all...]
liveness_util.h 29 // Returns true if 'user' cannot possibly use the buffer at 'index' in
32 // REQUIRES: 'operand' is an operand of 'user'.
38 const HloInstruction* user,
42 const HloInstruction* user,
45 // Returns true if 'user' (at 'user_index') can share a buffer with its operand
48 // REQUIRES: 'operand' is an operand of 'user'.
54 HloInstruction* user, const ShapeIndex& user_index,
58 HloInstruction* user,
  /external/mesa3d/src/gallium/auxiliary/util/
u_keymap.h 41 void *user);
49 util_delete_keymap(struct keymap *map, void *user);
53 const void *data, void *user);
59 util_keymap_remove(struct keymap *map, const void *key, void *user);
62 util_keymap_remove_all(struct keymap *map, void *user);
  /external/curl/lib/vauth/
vauth.c 110 * This is used to test if the specified user contains a Windows domain name as
113 * User\Domain (Down-level Logon Name)
114 * User/Domain (curl Down-level format - for compatibility with existing code)
115 * User@Domain (User Principal Name)
117 * Note: The user name may be empty when using a GSS-API library or Windows SSPI
118 * as the user and domain are either obtained from the credientals cache when
119 * using GSS-API or via the currently logged in user's credientals when using
124 * user [in] - The user name
    [all...]
oauth2.c 48 * user[in] - The user name.
59 const char *user,
70 oauth = aprintf("user=%s\1auth=Bearer %s\1\1", user, bearer);
72 oauth = aprintf("user=%s\1host=%s\1auth=Bearer %s\1\1", user, host,
75 oauth = aprintf("user=%s\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user,
  /external/wpa_supplicant_8/src/ap/
eap_user_db.c 2 * hostapd / EAP user database
23 static void set_user_methods(struct hostapd_eap_user *user, const char *methods)
32 os_memset(&user->methods, 0, sizeof(user->methods));
39 user->methods[num_methods].method =
41 &user->methods[num_methods].vendor);
42 if (user->methods[num_methods].vendor == EAP_VENDOR_IETF &&
43 user->methods[num_methods].method == EAP_TYPE_NONE) {
45 user->ttls_auth |= EAP_TTLS_AUTH_PAP;
49 user->ttls_auth |= EAP_TTLS_AUTH_CHAP
81 struct hostapd_eap_user *user = ctx; local
103 struct hostapd_eap_user *user = ctx; local
137 struct hostapd_eap_user *user = NULL; local
228 struct hostapd_eap_user *user = conf->eap_user; local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
EmailAddress.java 66 * @param user A string representing the username in the email prior to the '@' symbol
69 public EmailAddress(final String user, final String host) {
70 this(user, host, false);
76 * @param user A string representing the username in the email prior to the '@' symbol
80 public EmailAddress(final String user, final String host, final boolean i18n) {
82 this.user = user;
101 user = emailString.substring(0, atIndex);
109 return user + "@" + host;
118 if ((user == null) || (host == null))
269 protected String user = null; field in class:EmailAddress
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeTPMReOwn/
platform_CryptohomeTPMReOwn.py 28 def vault_mounted(user, password):
29 cryptohome.mount_vault(user, password, create=True)
32 cryptohome.unmount_vault(user)
37 def test_file_path(user):
38 return "%s/TESTFILE" % cryptohome.user_path(user)
43 def expect_wrapped_keyset(user):
45 "/usr/sbin/cryptohome --action=dump_keyset --user=%s" % user)
53 Test of cryptohome functionality to re-create a user's vault directory if
60 cryptohome.remove_vault(self.user)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
LauncherAppsCompat.java 36 void onPackageRemoved(String packageName, UserHandle user);
37 void onPackageAdded(String packageName, UserHandle user);
38 void onPackageChanged(String packageName, UserHandle user);
39 void onPackagesAvailable(String[] packageNames, UserHandle user, boolean replacing);
40 void onPackagesUnavailable(String[] packageNames, UserHandle user, boolean replacing);
41 void onPackagesSuspended(String[] packageNames, UserHandle user);
42 void onPackagesUnsuspended(String[] packageNames, UserHandle user);
44 UserHandle user);
67 UserHandle user);
69 UserHandle user);
    [all...]
  /external/selinux/libsemanage/src/
user_record.c 3 /* Object: semanage_user_t (SELinux User/Class)
4 * Object: semanage_user_key_t (SELinux User/Class Key)
43 const semanage_user_t * user,
47 return semanage_user_base_key_extract(handle, user->base, key);
67 int semanage_user_compare(const semanage_user_t * user,
73 return strcmp(user->name, name);
78 int semanage_user_compare2(const semanage_user_t * user,
82 return strcmp(user->name, user2->name);
87 static int semanage_user_compare2_qsort(const semanage_user_t ** user,
91 return strcmp((*user)->name, (*user2)->name)
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeKeyEviction/
platform_CryptohomeKeyEviction.py 12 and then remounting a user's cryptohome. Mount requires use of the
13 user's cryptohome key, and thus the mount only succeeds if the
25 self.user = 'first_user@nowhere.com'
27 cryptohome.ensure_clean_cryptohome_for(self.user, password)
35 # Then we get a user to remount his cryptohome. This process uses
36 # the cryptohome key, and if the user was able to login, the
38 cryptohome.unmount_vault(self.user)
39 cryptohome.mount_vault(self.user, password, create=True)
43 cryptohome.unmount_vault(self.user)
44 cryptohome.remove_vault(self.user)
    [all...]
  /external/toybox/tests/
setfattr.test 9 setfattr -n user.empty attrs/file
10 setfattr -n user.data -v hello attrs/file
11 setfattr -n user.delete-me -v hello attrs/file
14 "setfattr -x user.delete-me attrs/file && getfattr attrs/file" \
16 testing "-n" "setfattr -n user.new attrs/file && getfattr -d attrs/file" \
18 testing "-n -v" "setfattr -n user.new -v data attrs/file && getfattr -d attrs/file" \
  /frameworks/support/room/compiler/src/test/data/daoWriter/input/
UpdateDao.java 24 void updateUser(User user);
26 void updateUsers(User user1, List<User> others);
28 void updateArrayOfUsers(User[] users);
31 int updateUserAndReturnCount(User user);
33 int updateUserAndReturnCount(User user1, List<User> others);
35 int updateUserAndReturnCount(User[] users)
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeMultiple/
platform_CryptohomeMultiple.py 17 user = utils.random_username()
18 cryptohome.mount_vault(user, 'test', create=True)
19 cryptohome.unmount_vault(user)
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 51 void rc_transform_loops(struct radeon_compiler *c, void *user);
53 void rc_unroll_loops(struct radeon_compiler * c, void *user);
55 void rc_emulate_loops(struct radeon_compiler * c, void *user);
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
WithClauseTest.java 27 import androidx.room.integration.testapp.vo.User;
58 User user = new User(); local
59 user.setId(0);
60 user.setName("Zero");
61 mUserDao.insert(user);
65 user = new User();
66 user.setId(1)
    [all...]
  /external/curl/docs/cmdline-opts/
user.d 1 Long: user
3 Arg: <user:password>
4 Help: Server user and password
6 Specify the user name and password to use for server authentication. Overrides
9 If you simply specify the user name, curl will prompt for a password.
11 The user name and passwords are split up on the first colon, which makes it
12 impossible to use a colon in the user name with this option. The password can,
16 Windows domain name in the user name, in order for the server to successfully
20 When using NTLM, the user name can be specified simply as the user name
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
UserAndGenericPet.java 22 public User user; field in class:UserAndGenericPet
  /external/adhd/dbus-config/
org.chromium.cras.conf 9 <policy user="cras">
  /external/autotest/client/site_tests/security_HardlinkRestrictions/
security_HardlinkRestrictions.py 51 def _is_readable(self, path, user, expected=True):
52 rc = utils.system("su -c 'cat %s' %s" % (path, user),
59 (user, path))
62 (user, path))
65 def _is_writable(self, path, user, expected=True):
66 rc = utils.system("su -c 'echo > %s' %s" % (path, user),
73 (user, path))
76 (user, path))
79 def _can_hardlink(self, source, target, user, expected=True):
80 rc = utils.system("su -c 'ln %s %s' %s" % (source, target, user),
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
ITextArea.java 4 import com.google.gwt.user.client.ui.HasText;
5 import com.google.gwt.user.client.ui.TextArea;
  /external/freetype/src/base/
ftbbox.c 72 /* in `user->last'. We also update bbox in case contour starts with */
79 /* user :: A pointer to the current walk context. */
86 TBBox_Rec* user )
88 FT_UPDATE_BBOX( to, user->bbox );
90 user->last = *to;
104 /* in `user->last'; no further computations are necessary because */
111 /* user :: A pointer to the current walk context. */
118 TBBox_Rec* user )
120 user->last = *to;
188 /* user :: The address of the current walk context. *
491 TBBox_Rec user; local
    [all...]

Completed in 421 milliseconds

12 3 4 5 6 7 8 91011>>