Home
last modified time | relevance | path

Searched refs:authority (Results 1 – 25 of 42) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/address/
DSipUri.java67 protected Authority authority; field in SipUri
115 if (this.authority != null) { in clearPassword()
116 UserInfo userInfo = authority.getUserInfo(); in clearPassword()
125 return this.authority; in getAuthority()
243 if (authority != null) in encode()
244 authority.encode(buffer); in encode()
273 if (authority.getUserInfo() != null) in getUserAtHost()
274 user = authority.getUserInfo().getUser(); in getUserAtHost()
276 String host = authority.getHost().encode(); in getUserAtHost()
292 if (authority.getUserInfo() != null) in getUserAtHostPort()
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowContentResolver.java168 …public ContentProviderResult[] applyBatch(String authority, ArrayList<ContentProviderOperation> op…
169 contentProviderOperations.put(authority, operations);
174 public static void requestSync(Account account, String authority, Bundle extras) {
176 Status status = getStatus(account, authority, true);
182 public static void setIsSyncable(Account account, String authority, int syncable) {
183 getStatus(account, authority, true).state = syncable;
187 public static int getIsSyncable(Account account, String authority) {
188 return getStatus(account, authority, true).state;
192 public static boolean getSyncAutomatically(Account account, String authority) {
193 return getStatus(account, authority, true).syncAutomatically;
[all …]
DShadowPeriodicSync.java17 …public void __constructor__(Account account, String authority, Bundle extras, long period) throws … in __constructor__() argument
19 setField("authority", authority); in __constructor__()
DShadowUriMatcher.java34 public void addURI(String authority, String path, int code) { in addURI() argument
35 MatchNode authNode = rootNode.map.get(authority); in addURI()
38 rootNode.map.put(authority, authNode); in addURI()
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
Dcas.py31 def AuthCASHandler(application, authority): argument
61 assert authority.endswith("/") and authority.startswith("http")
74 requrl = authority + "validate?" + args
84 location = authority + "login?" + args
94 authority = "https://secure.its.yale.edu/cas/servlet/" variable
99 AuthCASHandler(dump_environ, authority)))
/external/robolectric/src/main/java/android/net/
DUri__FromAndroid.java514 private Part authority; field in Uri__FromAndroid.StringUri
517 if (authority == null) { in getAuthorityPart()
520 return authority = Part.fromEncoded(encodedAuthority); in getAuthorityPart()
523 return authority; in getAuthorityPart()
728 .authority(getAuthorityPart()) in buildUpon()
1004 String authority = getEncodedAuthority(); in parseUserInfo() local
1005 if (authority == null) { in parseUserInfo()
1009 int end = authority.indexOf('@'); in parseUserInfo()
1010 return end == NOT_FOUND ? null : authority.substring(0, end); in parseUserInfo()
1027 String authority = getEncodedAuthority(); in parseHost() local
[all …]
/external/libxml2/
Duri.c479 if (uri->authority != NULL) xmlFree(uri->authority); in xmlParse3986Host()
480 uri->authority = NULL; in xmlParse3986Host()
1167 } else if (uri->authority != NULL) { in xmlSaveUri()
1175 p = uri->authority; in xmlSaveUri()
1363 if (uri->authority != NULL) xmlFree(uri->authority); in xmlCleanURI()
1364 uri->authority = NULL; in xmlCleanURI()
1387 if (uri->authority != NULL) xmlFree(uri->authority); in xmlFreeURI()
1782 if (uri->authority) { in xmlURIEscape()
1784 xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@"); in xmlURIEscape()
1958 ((ref->authority == NULL) && (ref->server == NULL))) { in xmlBuildURI()
[all …]
DtestURI.c38 if (uri->authority) printf("authority: %s\n", uri->authority); in handleURI()
/external/oauth/core/src/main/java/net/oauth/signature/
DOAuthSignatureMethod.java162 String authority = uri.getAuthority().toLowerCase(); in normalizeUrl() local
167 int index = authority.lastIndexOf(":"); in normalizeUrl()
169 authority = authority.substring(0, index); in normalizeUrl()
177 return scheme + "://" + authority + path; in normalizeUrl()
/external/openssh/openbsd-compat/
Dgetrrsetbyname.c171 struct dns_rr *authority; member
431 resp->authority = parse_dns_rrsection(answer, size, &cp, in parse_dns_response()
433 if (resp->header.nscount && resp->authority == NULL) { in parse_dns_response()
593 free_dns_rr(p->authority); in free_dns_response()
Dgetrrsetbyname.c.orig169 struct dns_rr *authority;
428 /* parse authority section */
429 resp->authority = parse_dns_rrsection(answer, size, &cp,
431 if (resp->header.nscount && resp->authority == NULL) {
591 free_dns_rr(p->authority);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DPeriodicSyncTest.java25 assertThat(sync.authority, equalTo("auth")); in shouldHaveConstructor()
DContentResolverTest.java288 assertThat(first.authority, equalTo(AUTHORITY)); in shouldGetPeriodSyncs()
/external/libxml2/include/libxml/
Duri.h36 char *authority; /* the authority part */ member
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DSocketConnector.java233 String authority = (port == getDefaultPort("https")) ? host : (host + ":" + port); in createTunnelRequest() local
236 .header("Host", authority) in createTunnelRequest()
/external/openssh/
Dsshd.0300 cert-authority
301 Specifies that the listed key is a certification authority (CA)
381 On a cert-authority line, specifies allowed principals for
386 signers using the cert-authority option.
419 authority (CA) key, or M-bM-^@M-^\@revokedM-bM-^@M-^], to indicate that the key contained on
447 certification authority that signed the certificate. For a key to be
448 trusted as a certification authority, it must use the M-bM-^@M-^\@cert-authorityM-bM-^@M-^]
484 @cert-authority *.mydomain.org,*.mydomain.com ssh-rsa AAAAB5W...
DPROTOCOL.certkeys23 allow specification of certification authority keys in addition to
/external/libxml2/os400/libxmlrpg/
Duri.rpgle30 d authority * char *
/external/ipsec-tools/src/racoon/samples/roadwarrior/
DREADME44 certificate authority that signed the VPN gateway certificate in
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DHttpUrl.java458 authority: in parse()
502 break authority; in parse() local
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DDefaultRequestDirector.java910 String authority = buffer.toString(); in createConnectRequest() local
913 ("CONNECT", authority, ver); in createConnectRequest()
/external/apache-http/src/org/apache/http/impl/client/
DDefaultRequestDirector.java894 String authority = buffer.toString(); in createConnectRequest() local
897 ("CONNECT", authority, ver); in createConnectRequest()
/external/iproute2/doc/
Darpd.sgml117 and made under authority of <tt/arpd/:
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DCertPathReviewerMessages.properties493 # error processing the authority info access extension
495 …oAccError.text = CRL checking failed: there was an error processing the authority info access exte…
496 CertPathReviewer.crlAuthInfoAccError.summary = Error processing the authority info access extension.
497 …cError.details = CRL checking failed: there was an error processing the authority info access exte…
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...

12