/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...] |
NetObject.java | 53 protected static final String USER = "user";
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
CommandNames.java | 60 public static final String USER = "USER";
|
/frameworks/base/telephony/java/com/android/ims/ |
ImsConferenceState.java | 37 * conference-info : user 39 // user (String) : Tel or SIP URI 40 public static final String USER = "user"; 41 // user > display text (String) 43 // user > endpoint (String) : URI or GRUU or Phone number 45 // user > endpoint > status 126 String user = in.readString(); local 128 mParticipants.put(user, state);
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
CommandNames.java | 60 public static final String USER = "USER";
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
UrlComponentEncodingTester.java | 249 USER {
|
/frameworks/base/core/java/com/android/internal/os/ |
BatterySipper.java | 84 USER, 117 * Gets a list of packages associated with the current user
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_urllib2_localnet.py | 236 USER = "tester" 243 self.digest_auth_handler.set_users({self.USER: self.PASSWD}) 262 self.USER, self.PASSWD+"bad") 276 self.USER, self.PASSWD) 285 self.USER, self.PASSWD)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_urllib2_localnet.py | 236 USER = "tester" 243 self.digest_auth_handler.set_users({self.USER: self.PASSWD}) 262 self.USER, self.PASSWD+"bad") 276 self.USER, self.PASSWD) 285 self.USER, self.PASSWD)
|
/external/selinux/policycoreutils/sepolicy/ |
info.c | 57 TYPE, ATTRIBUTE, ROLE, USER, PORT, BOOLEAN, CLASS, SENS, CATS 726 * Gets a textual representation of a user, and 727 * all of that user's roles. 945 * get statistics about a particular user; otherwise 949 * @param name Reference to a user's name; if NULL, [all...] |
sepolicy.py | 173 raise ValueError("%s must be an SELinux user:\nValid users: %s" % (value, ", ".join(users))) 296 help=_('Graphical User Interface for SELinux Policy')) 509 mypolicy.set_transition_users(args.user) 535 help="List all domains with SELinux user role interface - DOMAIN_role()") 545 from sepolicy.generate import DAEMON, get_poltype_desc, poltype, DAEMON, DBUS, INETD, CGI, SANDBOX, USER, EUSER, TUSER, XUSER, LUSER, AUSER, RUSER, NEWTYPE 554 pol.add_argument("-u", "--user", dest="user", default=[], 556 help=_("Enter SELinux user(s) which will transition to this domain")) 577 cmdgroup.add_argument("--application", dest="policytype", const=USER, 579 help=_("Generate '%s' policy") % poltype[USER]) [all...] |
/frameworks/base/core/java/android/os/ |
Build.java | 40 /** A build ID string meant for displaying to the user */ 74 /** The end-user-visible name for the end product. */ 155 * The user-visible version string. E.g., "1.0" or "3.4b5". 165 * The user-visible security patch level. 171 * The user-visible SDK version of the framework in its raw String 180 * The user-visible SDK version of the framework; its possible 390 * large as the current screen will provide the user with a UI to 615 * <li> If the app is a launcher, the launcher will be available to the user 639 /** The type of build, like "user" or "eng". */ [all...] |
/external/selinux/policycoreutils/sepolicy/sepolicy/ |
__init__.py | 28 USER = _policy.USER 300 fcdict["user_tmp_type"] = { "regex" : [ "all user tmp files" ]} 301 fcdict["user_home_type"] = { "regex" : [ "all user home files" ]} 305 fcdict["user_tmpfs_type"] = { "regex" : [ "all user content in tmpfs file systems" ]} 531 selinux_user_list = info(USER)
|
generate.py | 44 from templates import user namespace 101 users = map(lambda x: x['name'], sepolicy.info(sepolicy.USER)) 119 USER = 5 134 poltype[USER] = _("User Application") 136 poltype[TUSER] = _("Minimal Terminal Login User Role") 137 poltype[XUSER] = _("Minimal X Windows Login User Role") 138 poltype[LUSER] = _("Desktop Login User Role") 139 poltype[AUSER] = _("Administrator Login User Role") 151 APPLICATIONS = [ DAEMON, DBUS, INETD, USER, CGI [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
Element.java | 45 * DataKind {@link android.support.v8.renderscript.Element.DataKind#USER} cannot 178 * useful for graphical data. USER indicates no special interpretation is 183 USER (0), 725 mKind = DataKind.USER; 766 * set to USER and the vector size to 1 indicating non-vector. 773 DataKind dk = DataKind.USER; 782 * DataKind will be set to USER. Only primitive types (FLOAT_32, FLOAT_64, 811 DataKind dk = DataKind.USER; 888 * size and type (i.e. U8 is compatible with A_8). User-defined Elements 902 // Ignore mKind because it is allowed to be different (user vs. pixel) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
imaplib.py | 498 def login(self, user, password): 501 (typ, [data]) = <instance>.login(user, password) 505 typ, dat = self._simple_command('LOGIN', user, self._quote(password)) 512 def login_cram_md5(self, user, password): 515 (typ, [data]) = <instance>.login_cram_md5(user, password) 517 self.user, self.password = user, password 524 return self.user + " " + hmac.HMAC(self.password, challenge).hexdigest() 595 def proxyauth(self, user): 596 """Assume authentication as "user" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
imaplib.py | 498 def login(self, user, password): 501 (typ, [data]) = <instance>.login(user, password) 505 typ, dat = self._simple_command('LOGIN', user, self._quote(password)) 512 def login_cram_md5(self, user, password): 515 (typ, [data]) = <instance>.login_cram_md5(user, password) 517 self.user, self.password = user, password 524 return self.user + " " + hmac.HMAC(self.password, challenge).hexdigest() 595 def proxyauth(self, user): 596 """Assume authentication as "user" [all...] |
/external/ipsec-tools/src/racoon/ |
cfparse.h | 43 USER = 259, 208 #define USER 259
|
/frameworks/base/core/java/com/android/internal/logging/ |
MetricsConstants.java | 122 public static final int USER = 96;
|
/frameworks/base/rs/java/android/renderscript/ |
Element.java | 40 * android.renderscript.Element.DataKind#USER} cannot be used as input for a 174 * useful for graphical data. USER indicates no special interpretation is 179 USER (0), 804 mKind = DataKind.USER; 880 * set to USER and the vector size to 1 indicating non-vector. 887 DataKind dk = DataKind.USER; 896 * DataKind will be set to USER. Only primitive types (FLOAT_32, FLOAT_64, 926 DataKind dk = DataKind.USER; [all...] |
/packages/apps/Settings/src/com/android/settings/ |
TrustedCredentialsSettings.java | 85 USER("user", 117 case USER: 126 case USER: 138 case USER: 150 case USER: 189 // TODO add Install button on Tab.USER to go to CertInstaller like KeyChainActivity 190 addTab(Tab.USER); 193 mTabHost.setCurrentTabByTag(Tab.USER.mTag);
|
/frameworks/opt/telephony/src/java/android/provider/ |
Telephony.java | 59 * <p>Only the default SMS app (selected by the user in system settings) is able to write to the 62 * when the user receives an SMS or the {@link 63 * android.provider.Telephony.Sms.Intents#WAP_PUSH_DELIVER_ACTION} broadcast when the user 66 * <p>Any app that wants to behave as the user's default SMS app must handle the following intents: 179 * Has the message been seen by the user? The "seen" flag determines 799 * Activity action: Ask the user to change the default 801 * user whether they want to replace the current default 821 * the user. The intent will have the following extra values:</p> [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.osgi.services_3.2.100.v20100503.jar | |
/prebuilts/devtools/tools/lib/ |
layoutlib-api.jar | |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar | |