Searched defs:authority (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/libxml/src/include/libxml/
H A Duri.h36 char *authority; /* the authority part */ member in struct:_xmlURI
/external/libxml2/include/libxml/
H A Duri.h36 char *authority; /* the authority part */ member in struct:_xmlURI
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
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);
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...]
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
H A DSyncContentResolverDelegate.java26 void setSyncAutomatically(Account account, String authority, boolean sync); argument
28 boolean getSyncAutomatically(Account account, String authority); argument
30 void setIsSyncable(Account account, String authority, int syncable); argument
32 int getIsSyncable(Account account, String authority); argument
H A DSystemSyncContentResolverDelegate.java35 public boolean getSyncAutomatically(Account account, String authority) { argument
36 return ContentResolver.getSyncAutomatically(account, authority);
40 public void setSyncAutomatically(Account account, String authority, boolean sync) { argument
41 ContentResolver.setSyncAutomatically(account, authority, sync);
45 public void setIsSyncable(Account account, String authority, int syncable) { argument
46 ContentResolver.setIsSyncable(account, authority, syncable);
50 public int getIsSyncable(Account account, String authority) { argument
51 return ContentResolver.getIsSyncable(account, authority);
/external/chromium_org/net/ssl/
H A Dclient_cert_store_nss.cc70 const std::string& authority = request.cert_authorities[i]; local
73 reinterpret_cast<unsigned char*>(const_cast<char*>(authority.data()));
74 ca_names_items[i].len = static_cast<unsigned int>(authority.size());
/external/chromium_org/rlz/win/lib/
H A Dmachine_id_win.cc88 ULONG authority = 0; local
90 authority <<= 8;
91 authority |= sia->Value[i];
93 base::SStringPrintf(&sid_string, L"S-%d-%lu", SID_REVISION, authority);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
H A DChromiumSyncAdapter.java57 public void onPerformSync(Account account, Bundle extras, String authority, argument
/external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
H A DMockSyncContentResolverDelegate.java85 public boolean getSyncAutomatically(Account account, String authority) { argument
86 String key = createKey(account, authority);
93 public void setSyncAutomatically(Account account, String authority, boolean sync) { argument
94 String key = createKey(account, authority);
98 " is not syncable for authority " + authority +
111 public void setIsSyncable(Account account, String authority, int syncable) { argument
112 String key = createKey(account, authority);
140 public int getIsSyncable(Account account, String authority) { argument
141 String key = createKey(account, authority);
151 createKey(Account account, String authority) argument
[all...]
/external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/signin/
H A DSyncStatusHelperTest.java37 public boolean getSyncAutomatically(Account account, String authority) { argument
39 return super.getSyncAutomatically(account, authority);
43 public int getIsSyncable(Account account, String authority) { argument
45 return super.getIsSyncable(account, authority);
49 public void setIsSyncable(Account account, String authority, int syncable) { argument
51 super.setIsSyncable(account, authority, syncable);
55 public void setSyncAutomatically(Account account, String authority, boolean sync) { argument
57 super.setSyncAutomatically(account, authority, sync);
312 assertEquals("The contract authority should be the package name.",
/external/chromium_org/url/third_party/mozilla/
H A Durl_parse.cc55 // Returns the offset of the next authority terminator in the input starting
149 DCHECK(auth.is_valid()) << "We should always get an authority";
293 // First split into two main parts, the authority (username, password, host,
295 Component authority; local
298 // Found "//<some data>", looks like an authority section. Treat everything
299 // from there to the next slash (or end of spec) to be the authority. Note
300 // that we ignore the number of slashes and treat it as the authority.
302 authority = Component(after_slashes, end_auth - after_slashes);
310 DoParseAuthority(spec, authority, &parsed->username, &parsed->password,
818 // This handles everything that may be an authority terminato
[all...]
/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/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/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProvider.java73 // Defines Chrome's API authority, so it can be run and tested
176 String authority = getContext().getPackageName() + AUTHORITY_SUFFIX;
177 mUriMatcher.addURI(authority, BOOKMARKS_PATH, URI_MATCH_BOOKMARKS);
178 mUriMatcher.addURI(authority, BOOKMARKS_PATH + "/#", URI_MATCH_BOOKMARKS_ID);
179 // The internal authority for public APIs
189 // The internal authority for BrowserContracts
1100 private static Uri buildContentUri(String authority, String path) { argument
1101 return Uri.parse("content://" + authority + "/" + path);
/external/chromium_org/third_party/libevent/
H A Devdns.c272 int n_authority; /* how many authority RRs have been set? */
276 struct server_reply_item *authority; /* linked list of authority RRs */ member in struct:server_request
819 u16 trans_id, questions, answers, authority, additional, datalength; local
830 GET16(authority);
832 (void) authority; /* suppress "unused variable" warnings. */
964 u16 trans_id, flags, questions, answers, authority, additional; local
972 GET16(authority);
1010 /* Ignore answers, authority, and additional. */
1460 APPEND16(0); /* no authority */
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...

Completed in 538 milliseconds

12