Searched defs:allow (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DGeolocationPermissions.java54 * @param allow whether or not the origin should be allowed to use the
60 public void invoke(String origin, boolean allow, boolean retain); argument
120 public void allow(String origin) { method in class:GeolocationPermissions
H A DMockGeolocation.java53 public void setPermission(boolean allow) { argument
55 nativeSetPermission(mWebViewCore, allow);
63 private static native void nativeSetPermission(WebViewCore webViewCore, boolean allow); argument
H A DGeolocationPermissionsClassic.java215 public void allow(String origin) { method in class:GeolocationPermissionsClassic
H A DWebSettings.java304 public void setAllowFileAccess(boolean allow) { argument
322 public void setAllowContentAccess(boolean allow) { argument
H A DWebSettingsClassic.java534 public void setAllowFileAccess(boolean allow) { argument
535 mAllowFileAccess = allow;
550 public void setAllowContentAccess(boolean allow) { argument
551 mAllowContentAccess = allow;
H A DWebViewCore.java461 // client to allow or deny quota is available.
510 public void invoke(String origin, boolean allow, boolean remember) {
513 data.mAllow = allow;
698 * Inform webcore that the user has decided whether to allow or deny new
710 * @param allow Whether Geolocation permissions are allowed.
715 String origin, boolean allow, boolean remember);
3063 public void setMockGeolocationPermission(boolean allow) { argument
3064 mMockGeolocation.setPermission(allow);
714 nativeGeolocationPermissionsProvide(int nativeClass, String origin, boolean allow, boolean remember) argument
H A DWebViewClassic.java582 // Since the text has changed, do not allow the IME to replace the
1699 // far we allow a touch be away from the edge of a link
4992 public void setMockGeolocationPermission(boolean allow) { argument
4993 mWebViewCore.setMockGeolocationPermission(allow);
5216 // There is no ActionMode, so do not allow the user to modify a
5888 // the start of a fling, allow it to add to the current
7883 // Interface to allow the profiled WebView to hook the page swap notifications.
8129 * and allow filtering.
8335 // filtered. Do not allow filtering on multiple lists until
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestController.java94 public void setGeolocationPermission(boolean allow) { argument
95 mLayoutTestsExecutor.setGeolocationPermission(allow);
H A DLayoutTestsExecutor.java240 * We never display the new window, just create the view and allow it's content to
705 public void setGeolocationPermission(boolean allow) { argument
706 Log.i(LOG_TAG, mCurrentTestRelativePath + ": setGeolocationPermission(" + allow +
708 WebViewClassic.fromWebView(mCurrentWebView).setMockGeolocationPermission(allow);
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
H A DBackupRestoreConfirmation.java244 void sendAcknowledgement(int token, boolean allow, IFullBackupRestoreObserver observer) { argument
252 allow,
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLayoutTestController.java68 public void setGeolocationPermission(boolean allow); argument
H A DCallbackProxy.java505 public void setGeolocationPermission(boolean allow) { argument
508 mLayoutTestController.setGeolocationPermission(allow);
H A DTestShellActivity.java554 public void setGeolocationPermission(boolean allow) { argument
555 Log.v(LOGTAG, "setGeolocationPermission() allow=" + allow);
556 WebViewClassic.fromWebView(mWebView).setMockGeolocationPermission(allow);
795 // allow it's content to execute and be recorded by the test
/frameworks/base/core/java/android/net/
H A DUri.java1815 * allow argument.
1818 * @param allow set of additional characters to allow in the encoded form,
1823 public static String encode(String s, String allow) { argument
1843 && isAllowed(s.charAt(nextToEncode), allow)) {
1876 && !isAllowed(s.charAt(nextAllowed), allow)) {
1906 * @param allow characters to allow
1910 private static boolean isAllowed(char c, String allow) { argument
1915 || (allow !
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp792 media::Metadata::Filter allow, drop; local
794 if (unmarshallFilter(filter, &allow, &status) &&
798 mMetadataAllow = allow;
/frameworks/base/core/java/android/app/
H A DDownloadManager.java663 * @param allowed whether to allow a roaming connection to be used
677 public Request setAllowedOverMetered(boolean allow) { argument
678 mMeteredAllowed = allow;
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java1122 * @param screenOn Supply true to keep the screen on, false to allow it
1249 * shorthands to allow/block all or no metadata.
1253 * @param allow Is the set of metadata the client is interested
1262 public int setMetadataFilter(Set<Integer> allow, Set<Integer> block) { argument
1274 int capacity = request.dataSize() + 4 * (1 + allow.size() + 1 + block.size());
1280 request.writeInt(allow.size());
1281 for(Integer t: allow) {
/frameworks/base/services/java/com/android/server/
H A DNetworkManagementService.java98 private static final String ALLOW = "allow";
1406 public void setFirewallInterfaceRule(String iface, boolean allow) { argument
1409 final String rule = allow ? ALLOW : DENY;
1418 public void setFirewallEgressSourceRule(String addr, boolean allow) { argument
1421 final String rule = allow ? ALLOW : DENY;
1430 public void setFirewallEgressDestRule(String addr, int port, boolean allow) { argument
1433 final String rule = allow ? ALLOW : DENY;
1442 public void setFirewallUidRule(int uid, boolean allow) { argument
1445 final String rule = allow ? ALLOW : DENY;
H A DBackupManagerService.java2079 // to false to allow another pass to fire, because we're done with the
4224 // If the target resides on the system partition, we allow it to restore
5005 // !!! TODO: allow backup of ANY app?
5082 // !!! TODO: allow data-clear of ANY app?
5304 public void acknowledgeFullBackupOrRestore(int token, boolean allow, argument
5307 + " allow=" + allow);
5323 if (allow) {

Completed in 317 milliseconds