/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | SipUri.java | 67 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/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowContentResolver.java | 168 …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 …]
|
D | ShadowPeriodicSync.java | 17 …public void __constructor__(Account account, String authority, Bundle extras, long period) throws … in __constructor__() argument 19 setField("authority", authority); in __constructor__()
|
D | ShadowUriMatcher.java | 34 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/robolectric/v1/src/main/java/android/net/ |
D | Uri__FromAndroid.java | 514 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/syslinux/gpxe/src/core/ |
D | uri.c | 78 char *authority = NULL; in parse_uri() local 139 authority = ( path + 2 ); in parse_uri() 140 if ( ( tmp = strchr ( authority, '/' ) ) ) { in parse_uri() 143 memmove ( ( authority - 1 ), authority, in parse_uri() 144 ( tmp - authority ) ); in parse_uri() 145 authority--; in parse_uri() 154 if ( ( tmp = strchr ( authority, '@' ) ) ) { in parse_uri() 158 uri->user = authority; in parse_uri() 159 if ( ( tmp = strchr ( authority, ':' ) ) ) { in parse_uri() 166 uri->host = authority; in parse_uri()
|
/external/avb/libavb_atx/ |
D | avb_atx_validate.c | 79 uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], in verify_certificate() 93 if (!avb_rsa_verify(authority, in verify_certificate() 119 uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], in verify_pik_certificate() 125 certificate, authority, minimum_version, expected_usage)) { in verify_pik_certificate() 135 uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], in verify_psk_certificate() 143 certificate, authority, minimum_version, expected_usage)) { in verify_psk_certificate()
|
/external/libxml2/ |
D | uri.c | 481 if (uri->authority != NULL) xmlFree(uri->authority); in xmlParse3986Host() 482 uri->authority = NULL; in xmlParse3986Host() 1169 } else if (uri->authority != NULL) { in xmlSaveUri() 1177 p = uri->authority; in xmlSaveUri() 1365 if (uri->authority != NULL) xmlFree(uri->authority); in xmlCleanURI() 1366 uri->authority = NULL; in xmlCleanURI() 1389 if (uri->authority != NULL) xmlFree(uri->authority); in xmlFreeURI() 1784 if (uri->authority) { in xmlURIEscape() 1786 xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@"); in xmlURIEscape() 1960 ((ref->authority == NULL) && (ref->server == NULL))) { in xmlBuildURI() [all …]
|
D | testURI.c | 38 if (uri->authority) printf("authority: %s\n", uri->authority); in handleURI()
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
D | OAuthSignatureMethod.java | 162 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/python/cpython2/Lib/ |
D | urllib2.py | 717 authority = proxy 727 authority = r_scheme[2:end] 728 userinfo, hostport = splituser(authority) 811 authority = parts[1] 816 authority = uri 818 host, port = splitport(authority) 824 authority = "%s:%d" % (host, dport) 825 return authority, path 922 authority = req.get_host() 924 authority, req, headers)
|
/external/openssh/openbsd-compat/ |
D | getrrsetbyname.c | 169 struct dns_rr *authority; member 429 resp->authority = parse_dns_rrsection(answer, size, &cp, in parse_dns_response() 431 if (resp->header.nscount && resp->authority == NULL) { in parse_dns_response() 591 free_dns_rr(p->authority); in free_dns_response()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | PropIDUtils.cpp | 306 UInt32 authority = GetBe32(p + 4); in ParseSid() local 308 if (p[2] == 0 && p[3] == 0 && authority == 5 && num >= 1) in ParseSid() 356 ConvertUInt32ToString(authority, sz); in ParseSid()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | PeriodicSyncTest.java | 25 assertThat(sync.authority, equalTo("auth")); in shouldHaveConstructor()
|
/external/libopus/ |
D | LICENSE_PLEASE_READ.txt | 4 authority to license copyright in its contributions to the collaboration.
|
/external/libxml2/include/libxml/ |
D | uri.h | 36 char *authority; /* the authority part */ member
|
/external/openssh/regress/unittests/hostkeys/testdata/ |
D | known_hosts | 49 @cert-authority prometheus.example.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlz… 50 @cert-authority *.example.com ssh-dss AAAAB3NzaC1kc3MAAACBAKvjnFHm0VvMr5h2Zu3nURsxQKGoxm+DCzYDxRYci…
|
/external/openssh/ |
D | sshd.0 | 261 cert-authority 262 Specifies that the listed key is a certification authority (CA) 351 On a cert-authority line, specifies allowed principals for 356 signers using the cert-authority option. 410 authority (CA) key, or M-bM-^@M-^\@revokedM-bM-^@M-^], to indicate that the key contained on 439 certification authority that signed the certificate. For a key to be 440 trusted as a certification authority, it must use the M-bM-^@M-^\@cert-authorityM-bM-^@M-^] 476 @cert-authority *.mydomain.org,*.mydomain.com ssh-rsa AAAAB5W...
|
/external/libxml2/os400/libxmlrpg/ |
D | uri.rpgle | 31 d authority * char *
|
/external/cros/system_api/dbus/cryptohome/ |
D | key.proto | 85 // Key is not presently persisted to disk, but it acts as the single authority
|
/external/libevent/ |
D | evdns.c | 290 struct server_reply_item *authority; /* linked list of authority RRs */ member 1008 u16 trans_id, questions, answers, authority, additional, datalength; in reply_parse() local 1021 GET16(authority); in reply_parse() 1023 (void) authority; /* suppress "unused variable" warnings. */ in reply_parse() 1158 for (i = 0; i < authority; ++i) { in reply_parse() 1209 u16 trans_id, flags, questions, answers, authority, additional; in request_parse() local 1219 GET16(authority); in request_parse() 1223 (void)authority; in request_parse() 1762 itemp = &req->authority; in evdns_server_request_add_reply() 1921 item = req->authority; in evdns_server_request_format_response() [all …]
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/ |
D | README | 44 certificate authority that signed the VPN gateway certificate in
|
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/ |
D | InterpreterConfiguration.java | 176 Uri uri = Uri.parse("content://" + provider.authority + "/" + name); in getMap()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/ |
D | DefaultRequestDirector.java | 910 String authority = buffer.toString(); in createConnectRequest() local 913 ("CONNECT", authority, ver); in createConnectRequest()
|
/external/apache-http/src/org/apache/http/impl/client/ |
D | DefaultRequestDirector.java | 896 String authority = buffer.toString(); in createConnectRequest() local 899 ("CONNECT", authority, ver); in createConnectRequest()
|