HomeSort by relevance Sort by last modified time
    Searched defs:username (Results 26 - 50 of 302) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libmicrohttpd/src/testcurl/
test_digestauth_with_arguments.c 79 char *username; local
84 username = MHD_digest_auth_get_username(connection);
85 if ( (username == NULL) ||
86 (0 != strcmp (username, "testuser")) )
99 username,
102 free(username);
  /external/libpcap/
remote-ext.h 309 * \brief It defines the username/password authentication.
311 * With this type of authentication, the RPCAP protocol will use the username/
333 * In case the NULL authentication is required, both 'username' and
352 * \brief Zero-terminated string containing the username that has to be
358 char *username; member in struct:pcap_rmtauth
  /external/ltp/testcases/kernel/syscalls/setpriority/
setpriority01.c 33 static const char *username = "ltp_setpriority01"; variable
116 const char *const cmd_useradd[] = {"useradd", username, NULL};
125 ltpuser = SAFE_GETPWNAM(username);
134 const char *const cmd_userdel[] = {"userdel", "-r", username, NULL};
137 tst_res(TWARN | TERRNO, "'userdel -r %s' failed", username);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
WebPlatformUrlTestData.java 40 String username = ""; field in class:WebPlatformUrlTestData
58 username = value;
  /packages/experimental/FillService/src/foo/bar/fill/
AuthActivity.java 27 ViewNode username = FillService.findUsername(structure); local
42 .setValue(username.getAutofillId(),
48 .setValue(username.getAutofillId(),
60 .setValue(username.getAutofillId(),
  /cts/tests/autofillservice/src/android/autofillservice/cts/
LoginWithStringsActivityTest.java 93 assertTextFromResouces(fillRequest.structure, ID_USERNAME_LABEL, "Username", false,
125 final ViewNode username = findNodeByResourceId(saveRequest.structure, ID_USERNAME); local
126 assertTextAndValue(username, "dude");
131 assertTextFromResouces(saveRequest.structure, ID_USERNAME_LABEL, "Username", false,
ValidatorTest.java 70 final String username = willSaveBeShown ? "7992739871-3" : "4815162342-108"; local
73 assertValidator(validator, usernameId, username, willSaveBeShown);
88 mActivity.onUsername((v) -> v.setText(username));
SessionLifecycleTest.java 150 .setField(ID_USERNAME, AutofillValue.forText("autofilled username"))
161 // Trigger autofill on username
206 return mUiBot.getTextByRelativeId(ID_USERNAME).equals("autofilled username");
229 final AssistStructure.ViewNode username = findNodeByResourceId(saveRequest.structure, local
231 assertTextAndValue(username, "autofilled username");
261 // Trigger autofill on username
301 // Trigger autofill on username
345 // Trigger autofill on username
373 // Trigger autofill on username in nested activit
462 final AssistStructure.ViewNode username = findNodeByResourceId(saveRequest.structure, local
    [all...]
VirtualContainerActivityCompatModeTest.java 221 final ViewNode username = findNodeByResourceId(saveRequest.structure, ID_USERNAME); local
225 assertTextAndValue(username, "foo");
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
StandardAutoCompleteSignInActivity.java 98 String username = mUsernameAutoCompleteField.getText().toString(); local
100 boolean valid = isValidCredentials(username, password);
114 public boolean isValidCredentials(String username, String password) {
115 return username != null && password != null && username.equals(password);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
StandardAutoCompleteSignInActivity.java 100 String username = mUsernameAutoCompleteField.getText().toString(); local
102 boolean valid = isValidCredentials(username, password);
116 public boolean isValidCredentials(String username, String password) {
117 return username != null && password != null && username.equals(password);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
urlparse.py 77 def username(self): member in class:ResultMixin
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urlparse.py 71 def username(self): member in class:ResultMixin
  /external/curl/lib/
curl_ntlm_wb.c 119 const char *username; local
133 username = userp;
135 empty username. It won't make inferences for itself, and expects
138 afterthought for it). So try hard to provide a suitable username
142 if(!username || !username[0]) {
143 username = getenv("NTLMUSER");
144 if(!username || !username[0])
145 username = getenv("LOGNAME")
    [all...]
  /external/libcups/cups/
ppd-util.c 521 username[HTTP_MAX_URI], /* Username:password */ local
603 httpSeparateURI(HTTP_URI_CODING_ALL, _httpResolveURI(device_uri, uri, sizeof(uri), _HTTP_RESOLVE_DEFAULT, NULL, NULL), scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize);
621 httpSeparateURI(HTTP_URI_CODING_ALL, attr->values[i].string.text, scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize);
645 scheme, sizeof(scheme), username, sizeof(username),
686 httpSeparateURI(HTTP_URI_CODING_ALL, _httpResolveURI(attr->values[0].string.text, uri, sizeof(uri), _HTTP_RESOLVE_DEFAULT, NULL, NULL), scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize)
    [all...]
auth.c 61 char *username; member in struct:gss_auth_identity
166 * Nope, see if we should retry the current username:password...
180 /* Default username */
187 if (httpGetSubField(http, HTTP_FIELD_WWW_AUTHENTICATE, "username",
267 "username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", "
347 userbuf[256]; /* Kerberos username */
348 const char *username, /* Username string */ local
369 username = cupsUser();
370 if (!strchr(username, '@')
    [all...]
  /external/mdnsresponder/mDNSWindows/ControlPanel/
RegistrationPage.cpp 204 CString username; local
213 username = outUsername;
214 m_usernameControl.SetWindowText( username );
292 CString username; local
305 m_usernameControl.GetWindowText( username );
308 if ( username.GetLength() && password.GetLength() )
310 StringObjectToUTF8String( username, usernameUTF8, sizeof( usernameUTF8 ) );
  /external/python/cpython2/Lib/
urlparse.py 77 def username(self): member in class:ResultMixin
  /external/webrtc/webrtc/base/
autodetectproxy.cc 117 char username[kSavedStringLimit]; local
118 SaveStringToStack(username, proxy().username, sizeof username);
127 << autodetect << " " << bypass_list << " " << username; local
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urlparse.py 77 def username(self): member in class:ResultMixin
  /prebuilts/gdb/linux-x86/lib/python2.7/
urlparse.py 77 def username(self): member in class:ResultMixin
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urlparse.py 77 def username(self): member in class:ResultMixin
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urlparse.py 77 def username(self): member in class:ResultMixin
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/
netty-handler-proxy-4.1.6.Final.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_imaplib.py 184 username = 'anonymous' variable in class:RemoteIMAPTest
201 rs = self.server.login(self.username, self.password)

Completed in 807 milliseconds

12 3 4 5 6 7 8 91011>>