Searched defs:url (Results 51 - 75 of 107) sorted by relevance

12345

/frameworks/base/core/java/android/content/
H A DContentProviderNative.java84 Uri url = Uri.CREATOR.createFromParcel(data);
113 Cursor cursor = query(url, projection, selection, selectionArgs, sortOrder,
134 Uri url = Uri.CREATOR.createFromParcel(data);
135 String type = getType(url);
145 Uri url = Uri.CREATOR.createFromParcel(data);
148 Uri out = insert(url, values);
157 Uri url = Uri.CREATOR.createFromParcel(data);
160 int count = bulkInsert(url, values);
184 Uri url = Uri.CREATOR.createFromParcel(data);
188 int count = delete(url, selectio
332 query(Uri url, String[] projection, String selection, String[] selectionArgs, String sortOrder, ICancellationSignal cancellationSignal) argument
388 getType(Uri url) argument
408 insert(Uri url, ContentValues values) argument
429 bulkInsert(Uri url, ContentValues[] values) argument
471 delete(Uri url, String selection, String[] selectionArgs) argument
493 update(Uri url, ContentValues values, String selection, String[] selectionArgs) argument
516 openFile(Uri url, String mode) argument
538 openAssetFile(Uri url, String mode) argument
583 getStreamTypes(Uri url, String mimeTypeFilter) argument
604 openTypedAssetFile(Uri url, String mimeType, Bundle opts) argument
[all...]
H A DIContentProvider.java37 public Cursor query(Uri url, String[] projection, String selection, argument
40 public String getType(Uri url) throws RemoteException; argument
41 public Uri insert(Uri url, ContentValues initialValues) argument
43 public int bulkInsert(Uri url, ContentValues[] initialValues) throws RemoteException; argument
44 public int delete(Uri url, String selection, String[] selectionArgs) argument
46 public int update(Uri url, ContentValues values, String selection, argument
48 public ParcelFileDescriptor openFile(Uri url, String mode) argument
50 public AssetFileDescriptor openAssetFile(Uri url, String mode) argument
58 public String[] getStreamTypes(Uri url, String mimeTypeFilter) throws RemoteException; argument
59 public AssetFileDescriptor openTypedAssetFile(Uri url, Strin argument
[all...]
/frameworks/base/core/java/android/net/
H A DProxy.java104 * @param url A URL to be accessed. Used to evaluate exclusion list.
110 public static final java.net.Proxy getProxy(Context ctx, String url) { argument
112 if (url != null) {
113 URI uri = URI.create(url);
209 * @param url the target URL for the request
217 String url) {
218 java.net.Proxy prefProxy = getProxy(context, url);
216 getPreferredHttpHost(Context context, String url) argument
/frameworks/base/core/java/android/net/http/
H A DRequestQueue.java288 * @param url The url to load.
297 String url, String method,
300 WebAddress uri = new WebAddress(url);
301 return queueRequest(url, uri, method, headers, eventHandler,
307 * @param url The url to load.
308 * @param uri The uri of the url to load.
317 String url, WebAddress uri, String method, Map<String, String> headers,
344 this, url, ur
296 queueRequest( String url, String method, Map<String, String> headers, EventHandler eventHandler, InputStream bodyProvider, int bodyLength) argument
316 queueRequest( String url, WebAddress uri, String method, Map<String, String> headers, EventHandler eventHandler, InputStream bodyProvider, int bodyLength) argument
370 queueSynchronousRequest(String url, WebAddress uri, String method, Map<String, String> headers, EventHandler eventHandler, InputStream bodyProvider, int bodyLength) argument
[all...]
H A DRequestHandle.java62 public RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, argument
74 mUrl = url;
86 public RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, argument
90 this(requestQueue, url, uri, method, headers, bodyProvider, bodyLength,
184 // update the "Cookie" header based on the redirected url
/frameworks/base/core/java/android/text/util/
H A DLinkify.java44 * Alone with the pattern that is to be matched, a url scheme prefix is also
46 * will have the scheme prepended to the matched text when the clickable url
49 * does not have a url scheme prefix, the supplied scheme will be prepended to
50 * create <code>http://example.com</code> when the clickable url link is
137 public final String transformUrl(final Matcher match, String url) {
149 * support@example.com. So, when matching against a web url pattern you
184 * @param url The text that was matched
188 String transformUrl(final Matcher match, String url); argument
240 applyLink(link.url, link.start, link.end, text);
299 * prepended to the url o
388 applyLink(String url, int start, int end, Spannable text) argument
394 makeUrl(String url, String[] prefixes, Matcher m, TransformFilter filter) argument
540 String url; field in class:LinkSpec
[all...]
/frameworks/base/core/java/android/webkit/
H A DCacheManager.java313 * @param url the URL for which a cache entry is requested
320 public static CacheResult getCacheFile(String url, argument
322 return getCacheFile(url, 0, headers);
325 static CacheResult getCacheFile(String url, long postIdentifier, argument
327 CacheResult result = nativeGetCacheResult(url);
364 Log.v(LOGTAG, "getCacheFile for url " + url);
381 static CacheResult createCacheFile(String url, int statusCode, argument
391 * @param url the URL for which the cache entry should be added
396 public static void saveCacheFile(String url, CacheResul argument
400 saveCacheFile(String url, long postIdentifier, CacheResult cacheRet) argument
458 nativeGetCacheResult(String url) argument
[all...]
H A DWebChromeClient.java50 * Notify the host application of the url for an apple-touch-icon.
52 * @param url The icon url.
53 * @param precomposed True if the url is for a precomposed touch icon.
55 public void onReceivedTouchIconUrl(WebView view, String url, argument
150 * @param url The url of the page requesting the dialog.
155 public boolean onJsAlert(WebView view, String url, String message, argument
167 * @param url The url o
173 onJsConfirm(WebView view, String url, String message, JsResult result) argument
192 onJsPrompt(WebView view, String url, String message, String defaultValue, JsPromptResult result) argument
213 onJsBeforeUnload(WebView view, String url, String message, JsResult result) argument
239 onExceededDatabaseQuota(String url, String databaseIdentifier, long quota, long estimatedDatabaseSize, long totalQuota, WebStorage.QuotaUpdater quotaUpdater) argument
[all...]
H A DWebIconDatabaseClassic.java60 IconResult(String url, Bitmap icon, IconListener l) { argument
61 mUrl = url;
103 String url = msg.getData().getString("url");
104 requestIconAndSendResult(url, l);
155 String url = c.getString(0);
156 requestIconAndSendResult(url, listener);
166 private void requestIconAndSendResult(String url, IconListener listener) { argument
167 Bitmap icon = nativeIconForPageUrl(url);
170 new IconResult(url, ico
206 requestIconForPageUrl(String url, IconListener listener) argument
240 retainIconForPageUrl(String url) argument
248 releaseIconForPageUrl(String url) argument
286 nativeIconForPageUrl(String url) argument
287 nativeRetainIconForPageUrl(String url) argument
288 nativeReleaseIconForPageUrl(String url) argument
[all...]
H A DWebViewClient.java29 * url is about to be loaded in the current WebView. If WebViewClient is not
31 * proper handler for the url. If WebViewClient is provided, return true
32 * means the host application handles the url, while return false means the
33 * current WebView handles the url.
36 * @param url The url to be loaded.
38 * and handle the url itself, otherwise return false.
40 public boolean shouldOverrideUrlLoading(WebView view, String url) { argument
52 * @param url The url t
56 onPageStarted(WebView view, String url, Bitmap favicon) argument
68 onPageFinished(WebView view, String url) argument
78 onLoadResource(WebView view, String url) argument
96 shouldInterceptRequest(WebView view, String url) argument
185 doUpdateVisitedHistory(WebView view, String url, boolean isReload) argument
[all...]
H A DWebViewDatabaseClassic.java87 private static final String FORMURL_URL_COL = "url";
197 String url = c.getString(c.getColumnIndex(FORMURL_URL_COL));
199 cv.put(FORMURL_URL_COL, WebTextView.urlForAutoCompleteData(url));
506 * @param url The url of the site
509 void setFormData(String url, HashMap<String, String> formdata) { argument
510 if (url == null || formdata == null || !checkInitialized()) {
520 ID_PROJECTION, selection, new String[] { url }, null, null,
526 c.put(FORMURL_URL_COL, url);
553 * @param url Th
557 getFormData(String url, String name) argument
[all...]
H A DHTML5Audio.java216 private void setDataSource(String url) { argument
217 mUrl = url;
223 url, mIsPrivateBrowsingEnabledGetter.get());
233 mMediaPlayer.setDataSource(url, headers);
237 String debugUrl = url.length() > 128 ? url.substring(0, 128) + "..." : url;
H A DHTML5VideoView.java191 protected static Map<String, String> generateHeaders(String url, argument
194 String cookieValue = CookieManager.getInstance().getCookie(url, isPrivate);
H A DJWebCoreJavaBridge.java161 * Store a cookie string associated with a url.
162 * @param url The url to be used as a key for the cookie.
165 private void setCookies(String url, String value) { argument
186 CookieManager.getInstance().setCookie(url, value);
190 * Retrieve the cookie string for the given url.
191 * @param url The resource's url.
192 * @return A String representing the cookies for the given resource url.
194 private String cookies(String url) { argument
260 getSignedPublicKey(int index, String challenge, String url) argument
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java62 public int bulkInsert(Uri url, ContentValues[] initialValues) throws RemoteException { argument
63 return MockContentProvider.this.bulkInsert(url, initialValues);
67 public int delete(Uri url, String selection, String[] selectionArgs) argument
69 return MockContentProvider.this.delete(url, selection, selectionArgs);
73 public String getType(Uri url) throws RemoteException { argument
74 return MockContentProvider.this.getType(url);
78 public Uri insert(Uri url, ContentValues initialValues) throws RemoteException { argument
79 return MockContentProvider.this.insert(url, initialValues);
83 public AssetFileDescriptor openAssetFile(Uri url, String mode) throws RemoteException, argument
85 return MockContentProvider.this.openAssetFile(url, mod
89 openFile(Uri url, String mode) argument
95 query(Uri url, String[] projection, String selection, String[] selectionArgs, String sortOrder, ICancellationSignal cancellationSignal) argument
102 update(Uri url, ContentValues values, String selection, String[] selectionArgs) argument
119 getStreamTypes(Uri url, String mimeTypeFilter) argument
124 openTypedAssetFile(Uri url, String mimeType, Bundle opts) argument
228 getStreamTypes(Uri url, String mimeTypeFilter) argument
232 openTypedAssetFile(Uri url, String mimeType, Bundle opts) argument
[all...]
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestActivity.java42 public static final String MSG_NAV_URL = "url";
115 private void navigate(String url, int timeout) { argument
116 if(url == null) {
125 Log.v(LOGTAG, "Navigating to URL: " + url);
126 webView.loadUrl(url);
207 + ", url=" + failingUrl);
211 public void onPageStarted(WebView view, String url, Bitmap favicon) { argument
213 Log.v(LOGTAG, "onPageStarted: " + url);
217 public void onPageFinished(WebView view, String url) { argument
218 Log.v(LOGTAG, "onPageFinished: " + url);
[all...]
/frameworks/base/tests/BrowserTestPlugin/jni/
H A Dmain.cpp234 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData) argument
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DPerformanceTest.java165 private boolean loadUrl(final String url) { argument
167 Log.d(LOGTAG, "test starting for url " + url);
171 mWeb.loadUrl(url);
H A DProfileActivity.java122 public boolean shouldOverrideUrlLoading(WebView view, String url) { argument
127 public void onPageStarted(WebView view, String url, Bitmap favicon) { argument
128 super.onPageStarted(view, url, favicon);
129 mUrl.setText(url);
133 public void onPageFinished(WebView view, String url) { argument
134 super.onPageFinished(view, url);
142 public void onPageFinished(WebView view, String url) { argument
143 super.onPageFinished(view, url);
148 public void onPageStarted(WebView view, String url, Bitmap favicon) { argument
149 super.onPageStarted(view, url, favico
156 onPageFinished(WebView view, String url) argument
174 onPageStarted(WebView view, String url, Bitmap favicon) argument
[all...]
H A DProfiledWebView.java236 public void loadUrl(String url) { argument
239 if (!url.startsWith("http://") && !url.startsWith("file://")) {
240 url = "http://" + url;
242 super.loadUrl(url);
/frameworks/opt/mailcommon/java/com/android/mailcommon/
H A DWebViewContextMenu.java124 private void shareLink(String url) { argument
127 send.putExtra(Intent.EXTRA_TEXT, url);
277 // SRC_ANCHOR_TYPE or the url would be specified in the extra. We don't need to
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java77 public Cursor query(Uri url, String[] projection, String selection, argument
79 switch (URL_MATCHER.match(url)) {
90 throw new IllegalArgumentException("Unknown URL " + url);
95 public String getType(Uri url) { argument
96 switch (URL_MATCHER.match(url)) {
103 throw new IllegalArgumentException("Unknown URL " + url);
108 public Uri insert(Uri url, ContentValues initialValues) { argument
115 int match = URL_MATCHER.match(url);
128 "Cannot insert into URL: " + url);
177 public int delete(Uri url, Strin argument
249 update(Uri url, ContentValues values, String where, String[] whereArgs) argument
[all...]
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp60 const char *url,
62 ALOGV("setDataSource %s", url);
64 if (strncmp(url, kPing, strlen(kPing)) == 0) {
59 setDataSource( const char *url, const KeyedVector<String8, String8> *) argument
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DWifiDisplaySink.cpp60 const char *url, AString *host, int32_t *port, AString *path,
68 if (strncasecmp("rtsp://", url, 7)) {
72 const char *slashPos = strchr(&url[7], '/');
75 host->setTo(&url[7]);
78 host->setTo(&url[7], slashPos - &url[7]);
59 ParseURL( const char *url, AString *host, int32_t *port, AString *path, AString *user, AString *pass) argument
/frameworks/base/core/java/android/provider/
H A DBrowser.java70 * headers for the provided url. The keys can't be the standard HTTP headers
71 * as they are set by the WebView. The url's schema must be http(s).
152 * and/or a url, both of which can be edited by the user before saving.
156 * @param url Url for the bookmark. Can be null or empty string.
160 String url) {
163 i.putExtra("url", url);
262 private static final Cursor getVisitedLike(ContentResolver cr, String url) { argument
264 String compareString = url;
307 * @param url Th
158 saveBookmark(Context c, String title, String url) argument
311 updateVisitedHistory(ContentResolver cr, String url, boolean real) argument
523 deleteFromHistory(ContentResolver cr, String url) argument
[all...]

Completed in 315 milliseconds

12345