/external/nist-sip/java/gov/nist/javax/sip/address/ |
H A D | SipUri.java | 67 protected Authority authority; field in class:SipUri 115 if (this.authority != null) { 116 UserInfo userInfo = authority.getUserInfo(); 122 /** Get the authority. 125 return this.authority; 243 if (authority != null) 244 authority.encode(buffer); 273 if (authority.getUserInfo() != null) 274 user = authority.getUserInfo().getUser(); 276 String host = authority 561 setAuthority(Authority authority) argument [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowContentResolver.java | 168 public ContentProviderResult[] applyBatch(String authority, ArrayList<ContentProviderOperation> operations) { argument 169 contentProviderOperations.put(authority, operations); 174 public static void requestSync(Account account, String authority, Bundle extras) { argument 176 Status status = getStatus(account, authority, true); 182 public static void setIsSyncable(Account account, String authority, int syncable) { argument 183 getStatus(account, authority, true).state = syncable; 187 public static int getIsSyncable(Account account, String authority) { argument 188 return getStatus(account, authority, true).state; 192 public static boolean getSyncAutomatically(Account account, String authority) { argument 193 return getStatus(account, authority, tru 197 setSyncAutomatically(Account account, String authority, boolean sync) argument 202 addPeriodicSync(Account account, String authority, Bundle extras, long pollFrequency) argument 210 removePeriodicSync(Account account, String authority, Bundle extras) argument 217 getPeriodicSyncs(Account account, String authority) argument 260 registerProvider(String authority, ContentProvider provider) argument 264 getStatus(Account account, String authority) argument 268 getStatus(Account account, String authority, boolean create) argument 322 getContentProviderOperations(String authority) argument [all...] |
H A D | ShadowPeriodicSync.java | 17 public void __constructor__(Account account, String authority, Bundle extras, long period) throws Exception { argument 19 setField("authority", authority);
|
H A D | ShadowUriMatcher.java | 34 public void addURI(String authority, String path, int code) { argument 35 MatchNode authNode = rootNode.map.get(authority); 38 rootNode.map.put(authority, authNode);
|
/external/avb/libavb_atx/ |
H A D | avb_atx_validate.c | 79 uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], 93 if (!avb_rsa_verify(authority, 119 uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], 125 certificate, authority, minimum_version, expected_usage)) { 135 uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], 143 certificate, authority, minimum_version, expected_usage)) { 78 verify_certificate(AvbAtxCertificate* certificate, uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], uint64_t minimum_key_version, uint8_t expected_usage[AVB_SHA256_DIGEST_SIZE]) argument 118 verify_pik_certificate(AvbAtxCertificate* certificate, uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], uint64_t minimum_version) argument 133 verify_psk_certificate( AvbAtxCertificate* certificate, uint8_t authority[AVB_ATX_PUBLIC_KEY_SIZE], uint64_t minimum_version, uint8_t product_id[AVB_ATX_PRODUCT_ID_SIZE]) argument
|
/external/robolectric/v1/src/main/java/android/net/ |
H A D | Uri__FromAndroid.java | 89 ambiguous in terms of differentiating between an authority component 93 matching. In other words, the authority component wins." 96 <scheme>://<authority><path>?<query> 190 * Gets the decoded authority part of this URI. For 191 * server addresses, the authority is structured as follows: 196 * @return the authority for this URI or null if not present 201 * Gets the encoded authority part of this URI. For 202 * server addresses, the authority is structured as follows: 207 * @return the authority for this URI or null if not present 212 * Gets the decoded user information from the authority 514 private Part authority; field in class:Uri__FromAndroid.StringUri 1085 private final Part authority; field in class:Uri__FromAndroid.HierarchicalUri 1090 HierarchicalUri(String scheme, Part authority, PathPart path, Part query, Part fragment) argument 1265 private Part authority; field in class:Uri__FromAndroid.Builder 1308 authority(Part authority) argument 1319 authority(String authority) argument 1326 encodedAuthority(String authority) argument [all...] |
/external/syslinux/gpxe/src/core/ |
H A D | uri.c | 78 char *authority = NULL; local 135 * terminator after the authority field, so shuffle 136 * the authority down by one byte, overwriting one of 139 authority = ( path + 2 ); 140 if ( ( tmp = strchr ( authority, '/' ) ) ) { 143 memmove ( ( authority - 1 ), authority, 144 ( tmp - authority ) ); 145 authority--; 153 /* Split authority int [all...] |
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
H A D | PeriodicSyncTest.java | 25 assertThat(sync.authority, equalTo("auth"));
|
H A D | ContentResolverTest.java | 288 assertThat(first.authority, equalTo(AUTHORITY));
|
/external/libxml2/ |
H A D | testURI.c | 38 if (uri->authority) printf("authority: %s\n", uri->authority);
|
H A D | uri.c | 132 * authority = server | reg_name 481 if (uri->authority != NULL) xmlFree(uri->authority); 482 uri->authority = NULL; 501 * Parse an authority part and fills in the appropriate fields 504 * authority = [ userinfo "@" ] host [ ":" port ] 745 * hier-part = "//" authority path-abempty 796 * relative-part = "//" authority path-abempty 1169 } else if (uri->authority != NULL) { 1177 p = uri->authority; [all...] |
/external/libxml2/include/libxml/ |
H A D | uri.h | 36 char *authority; /* the authority part */ member in struct:_xmlURI
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
H A D | OAuthSignatureMethod.java | 162 String authority = uri.getAuthority().toLowerCase(); 166 // find the last : in the authority 167 int index = authority.lastIndexOf(":"); 169 authority = authority.substring(0, index); 177 return scheme + "://" + authority + path;
|
/external/openssh/openbsd-compat/ |
H A D | getrrsetbyname.c | 169 struct dns_rr *authority; member in struct:dns_response 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/python/cpython2/Lib/ |
H A D | urllib2.py | 664 """Return (scheme, user, password, host/port) given a URL or an authority. 666 If a URL is supplied, it must have an authority (host:port) component. 667 According to RFC 3986, having an authority component means the URL must 672 ValueError: proxy URL with no authority: 'file:/ftp.example.com/' 676 Examples of authority parsing: 683 The authority component may optionally include userinfo (assumed to be 702 Everything after the authority is ignored: 715 # authority 717 authority = proxy 721 raise ValueError("proxy URL with no authority [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
H A D | PropIDUtils.cpp | 306 UInt32 authority = GetBe32(p + 4);
local 308 if (p[2] == 0 && p[3] == 0 && authority == 5 && num >= 1)
356 ConvertUInt32ToString(authority, sz);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/ |
H A D | InterpreterConfiguration.java | 176 Uri uri = Uri.parse("content://" + provider.authority + "/" + name);
|
/external/libevent/ |
H A D | evdns.c | 286 int n_authority; /* how many authority RRs have been set? */ 290 struct server_reply_item *authority; /* linked list of authority RRs */ member in struct:server_request 1008 u16 trans_id, questions, answers, authority, additional, datalength; local 1021 GET16(authority); 1023 (void) authority; /* suppress "unused variable" warnings. */ 1158 for (i = 0; i < authority; ++i) { 1209 u16 trans_id, flags, questions, answers, authority, additional; local 1219 GET16(authority); 1223 (void)authority; [all...] |
/external/apache-http/src/org/apache/http/impl/client/ |
H A D | DefaultRequestDirector.java | 896 String authority = buffer.toString(); 899 ("CONNECT", authority, ver);
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
H A D | MockWebServer.java | 686 String authority = request.getHeader("Host"); // Has host and port. 688 .url(scheme + "://" + authority + "/")
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/ |
H A D | DefaultRequestDirector.java | 910 String authority = buffer.toString(); 913 ("CONNECT", authority, ver);
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
H A D | HttpUrl.java | 998 // Read an authority if either: 1002 // The structure of an authority is: 1008 authority: 1055 break authority; 1059 // This is a relative link. Copy over all authority components. Also maybe the path & query.
|
/external/robolectric/v3/runtime/ |
H A D | shadows-core-3.1-SNAPSHOT-16.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-17.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-18.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |