/external/nist-sip/java/gov/nist/javax/sip/header/ |
AuthenticationHeader.java | 74 public static final String USERNAME = ParameterNames.USERNAME; 113 || name.equalsIgnoreCase(ParameterNames.USERNAME) 480 * Returns the Username value of this AuthorizationHeader. This convenience 481 * method returns only the username of the complete Response. 483 * @return the String representing the Username information, null if value 490 return (String) getParameter(ParameterNames.USERNAME); 494 * Sets the Username of the AuthorizationHeader to the <var>username</var> 497 * @param username [all...] |
/external/toolchain-utils/cwp/interpreter/ |
app_engine_pull.py | 42 # Grab username and password from user through stdin. 43 username = raw_input('Email (must be @google.com account): ') 51 authreq_data = urllib.urlencode({'Email': username,
|
/external/toybox/lib/ |
password.c | 109 int update_password(char *filename, char* username, char* entry) 152 namesfx = xmprintf("%s:",username);
|
/external/webrtc/webrtc/base/ |
socketadapters.h | 102 const std::string& username, const CryptString& password); 161 const std::string& username, const CryptString& password);
|
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
RoomParametersFetcher.java | 188 String username = responseJSON.getString("username"); local 193 turnServers.add(new PeerConnection.IceServer(uri, username, password));
|
/external/webrtc/webrtc/p2p/base/ |
turnport_unittest.cc | 212 void CreateTurnPort(const std::string& username, 215 CreateTurnPort(kLocalAddr1, username, password, server_address); 218 const std::string& username, 221 cricket::RelayCredentials credentials(username, password); 235 const std::string& username, 239 cricket::RelayCredentials credentials(username, password); 250 void CreateSharedTurnPort(const std::string& username, 263 cricket::RelayCredentials credentials(username, password); [all...] |
turnserver.h | 78 const std::string& username() const { return username_; } function in class:cricket::TurnServerAllocation 142 // HA1 = MD5(A1) = MD5(username:realm:password). 143 // Return true if the given username and realm are valid, or false if not. 144 virtual bool GetKey(const std::string& username, const std::string& realm,
|
/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/ |
UpdateParameter.java | 73 * Maximum bytes for username. 136 * Username used to authenticate with the policy server. 139 public void setUsername(String username) { 140 mUsername = username; 259 builder.append("Username: ").append(mUsername).append("\n"); 304 Log.d(TAG, "Missing username"); 308 Log.d(TAG, "Username bytes exceeded the max: " 314 Log.d(TAG, "Missing username");
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
lmaccess.h | 17 NET_API_STATUS WINAPI NetUserGetInfo(LPCWSTR servername,LPCWSTR username,DWORD level,LPBYTE *bufptr); 18 NET_API_STATUS WINAPI NetUserSetInfo(LPCWSTR servername,LPCWSTR username,DWORD level,LPBYTE buf,LPDWORD parm_err); 19 NET_API_STATUS WINAPI NetUserDel(LPCWSTR servername,LPCWSTR username); 20 NET_API_STATUS WINAPI NetUserGetGroups(LPCWSTR servername,LPCWSTR username,DWORD level,LPBYTE *bufptr,DWORD prefmaxlen,LPDWORD entriesread,LPDWORD totalentries); 21 NET_API_STATUS WINAPI NetUserSetGroups(LPCWSTR servername,LPCWSTR username,DWORD level,LPBYTE buf,DWORD num_entries); 22 NET_API_STATUS WINAPI NetUserGetLocalGroups(LPCWSTR servername,LPCWSTR username,DWORD level,DWORD flags,LPBYTE *bufptr,DWORD prefmaxlen,LPDWORD entriesread,LPDWORD totalentries); 25 NET_API_STATUS WINAPI NetUserChangePassword(LPCWSTR domainname,LPCWSTR username,LPCWSTR oldpassword,LPCWSTR newpassword); 516 NET_API_STATUS WINAPI NetGroupAddUser(LPCWSTR servername,LPCWSTR GroupName,LPCWSTR username); 521 NET_API_STATUS WINAPI NetGroupDelUser(LPCWSTR servername,LPCWSTR GroupName,LPCWSTR Username); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_imaplib.py | 184 username = 'anonymous' variable in class:RemoteIMAPTest 201 rs = self.server.login(self.username, self.password)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_imaplib.py | 184 username = 'anonymous' variable in class:RemoteIMAPTest 201 rs = self.server.login(self.username, self.password)
|
/prebuilts/go/darwin-x86/src/os/user/ |
lookup_stubs.go | 26 Username: os.Getenv("USER"), 34 if u.Username == "" { 35 u.Username = "nacl" 43 if u.Uid != "" && u.Username != "" && u.HomeDir != "" { 49 func lookupUser(username string) (*User, error) {
|
/prebuilts/go/darwin-x86/test/bench/go1/ |
json_test.go | 46 Username string `json:"username"`
|
template_test.go | 23 "username":"{{.Username}}"
|
/prebuilts/go/linux-x86/src/os/user/ |
lookup_stubs.go | 26 Username: os.Getenv("USER"), 34 if u.Username == "" { 35 u.Username = "nacl" 43 if u.Uid != "" && u.Username != "" && u.HomeDir != "" { 49 func lookupUser(username string) (*User, error) {
|
/prebuilts/go/linux-x86/test/bench/go1/ |
json_test.go | 46 Username string `json:"username"`
|
template_test.go | 23 "username":"{{.Username}}"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_imaplib.py | 184 username = 'anonymous' variable in class:RemoteIMAPTest 201 rs = self.server.login(self.username, self.password)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_imaplib.py | 184 username = 'anonymous' variable in class:RemoteIMAPTest 201 rs = self.server.login(self.username, self.password)
|
/external/tcpdump/ |
tcpdump.c | 738 droproot(const char *username, const char *chroot_dir) 742 if (chroot_dir && !username) { 747 pw = getpwnam(username); 762 fprintf(stderr, "dropped privs to %s\n", username); 768 username, 775 fprintf(stderr, "dropped privs to %s\n", username); 781 username); 1018 char *username = NULL; local [all...] |
/external/autotest/site_utils/rpm_control_system/ |
rpm_controller.py | 64 USERNAME_PROMPT = 'Username:' 357 # Send the username that the subclass will have set in its 392 username = rpm_config.get('HYDRA', 'admin_username') 394 username = '%s:%s' % (rpm_config.get('HYDRA','username'), 396 cmd = RPMController.SSH_LOGIN_CMD % (username, self.hydra_hostname) 570 @var _username: username used to access device. 584 self._username = rpm_config.get('SENTRY', 'username') 684 username = rpm_config.get('WEBPOWERED', 'username') [all...] |
/external/libcups/cups/ |
http.h | 360 HTTP_URI_STATUS_BAD_USERNAME = -3, /* Bad username in URI (error) */ 387 HTTP_URI_CODING_USERNAME = 1, /* En/decode the username portion */ 484 char *username, char *host, int *port, 513 char *username, int usernamelen, 534 const char *username, 540 const char *username, 557 char *username, int usernamelen,
|
/external/autotest/scheduler/ |
drone_manager.py | 588 def max_runnable_processes(self, username, drone_hostnames_allowed): 592 @param username: login of user to run a process. may be None. 597 if wrapper.drone.usable_by(username) and 618 def _choose_drone_for_execution(self, num_processes, username, 624 @param username: Name of the user to execute the command. 643 if not drone.usable_by(username): 673 'for user %s', num_processes, drone_summary, username) 695 username=None, drone_hostnames_allowed=None): 711 @param username (optional): login of the user responsible for this 730 num_processes, username, drone_hostnames_allowed [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
HttpUrl.java | 92 * <h4>Username and Password</h4> 93 * Username and password are either present, or the empty string {@code ""} if absent. This class 276 /** Decoded username. */ 277 private final String username; field in class:HttpUrl 310 this.username = percentDecode(builder.encodedUsername, false); 369 /** Returns the username, or an empty string if none is set. */ 371 if (username.isEmpty()) return ""; 377 public String username() { method in class:HttpUrl 378 return username; 688 public Builder username(String username) method in class:HttpUrl.Builder [all...] |
/external/autotest/client/cros/crash/ |
crash_test.py | 300 def _get_crash_dir(self, username): 301 """Returns full path to the crash directory for a given username 307 @param username: username to use: 311 if username == 'chronos': 510 username='root', 517 @param username: user to emulate a crash from
|