Searched refs:authority (Results 1 - 25 of 46) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/address/
H A DSipUri.java67 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 DShadowContentResolver.java168 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 DShadowPeriodicSync.java17 public void __constructor__(Account account, String authority, Bundle extras, long period) throws Exception { argument
19 setField("authority", authority);
H A DShadowUriMatcher.java34 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 Davb_atx_validate.c79 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 DUri__FromAndroid.java89 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 Duri.c78 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 DPeriodicSyncTest.java25 assertThat(sync.authority, equalTo("auth"));
H A DContentResolverTest.java288 assertThat(first.authority, equalTo(AUTHORITY));
/external/libxml2/
H A DtestURI.c38 if (uri->authority) printf("authority: %s\n", uri->authority);
H A Duri.c132 * 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 Duri.h36 char *authority; /* the authority part */ member in struct:_xmlURI
/external/oauth/core/src/main/java/net/oauth/signature/
H A DOAuthSignatureMethod.java162 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 Dgetrrsetbyname.c169 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 Durllib2.py664 """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 DPropIDUtils.cpp306 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 DInterpreterConfiguration.java176 Uri uri = Uri.parse("content://" + provider.authority + "/" + name);
/external/libevent/
H A Devdns.c286 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 DDefaultRequestDirector.java896 String authority = buffer.toString();
899 ("CONNECT", authority, ver);
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DMockWebServer.java686 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 DDefaultRequestDirector.java910 String authority = buffer.toString();
913 ("CONNECT", authority, ver);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHttpUrl.java998 // 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 Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...

Completed in 712 milliseconds

12