Searched refs:allow (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/base/core/java/android/webkit/
H A DServiceWorkerWebSettings.java53 public abstract void setAllowContentAccess(boolean allow); argument
66 public abstract void setAllowFileAccess(boolean allow); argument
H A DGeolocationPermissions.java56 * @param allow whether or not the origin should be allowed to use the
62 public void invoke(String origin, boolean allow, boolean retain); argument
122 public void allow(String origin) { method in class:GeolocationPermissions
H A DWebSettings.java188 * In this mode, the WebView will allow a secure origin to load content from any other origin,
197 * In this mode, the WebView will not allow a secure origin to load content from an insecure
325 public abstract void setAllowFileAccess(boolean allow); argument
339 public abstract void setAllowContentAccess(boolean allow); argument
/frameworks/av/include/media/stagefright/foundation/
H A DADebug.h141 const char *name __unused /* nonnull */, bool allow __unused = true) {
144 return getExperimentFlag(allow, name, 2, 1); // every other day
146 return getExperimentFlag(allow, name, 3, 1); // every third day
155 // pass in allow, so we can print in the log if the experiment is disabled
157 bool allow, const char *name, uint64_t modulo, uint64_t limit,
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp127 bool allow, const char *name, uint64_t modulo,
130 // default to 2 to allow 0/1 specification
135 return allow && (level != 0);
183 bool enable = allow && (counter % modulo < limit);
126 getExperimentFlag( bool allow, const char *name, uint64_t modulo, uint64_t limit, uint64_t plus, uint64_t timeDivisor) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbDebuggingActivity.java74 // add "always allow" checkbox
120 boolean allow = (which == AlertDialog.BUTTON_POSITIVE);
121 boolean alwaysAllow = allow && mAlwaysAllow.isChecked();
125 if (allow) {
/frameworks/av/services/mediacodec/minijail/
H A DAndroid.mk17 # allow device specific additions to the syscall whitelist
/frameworks/av/services/mediaextractor/minijail/
H A DAndroid.mk17 # allow device specific additions to the syscall whitelist
/frameworks/base/core/java/android/os/
H A DINetworkManagementService.aidl338 void setFirewallInterfaceRule(String iface, boolean allow);
339 void setFirewallEgressSourceRule(String addr, boolean allow);
340 void setFirewallEgressDestRule(String addr, int port, boolean allow);
/frameworks/base/core/java/android/app/backup/
H A DIBackupManager.aidl204 void acknowledgeFullBackupOrRestore(int token, boolean allow,
/frameworks/native/services/surfaceflinger/
H A DMonitoredProducer.cpp118 status_t MonitoredProducer::allowAllocation(bool allow) { argument
119 return mProducer->allowAllocation(allow);
H A DMonitoredProducer.h57 virtual status_t allowAllocation(bool allow);
/frameworks/rs/api/
H A Drs_core.spec21 RenderScript code is compiled on devices at runtime to allow platform-independence as well.
/frameworks/native/include/gui/
H A DBufferQueueProducer.h141 // Successfully calling connect after this will allow the other methods to
165 virtual status_t allowAllocation(bool allow);
H A DIGraphicBufferProducer.h116 // allow for the asynchronous behavior. If it is not enabled queue/dequeue
458 // allow the other methods to succeed again.
510 virtual status_t allowAllocation(bool allow) = 0;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DVirtualDisplaySurface.h122 virtual status_t allowAllocation(bool allow);
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
H A DBackupRestoreConfirmation.java255 void sendAcknowledgement(int token, boolean allow, IFullBackupRestoreObserver observer) { argument
262 allow,
/frameworks/base/packages/SystemUI/tests/
H A DAndroid.mk58 # UI it doesn't own. This is necessary to allow screenshots to be taken
/frameworks/base/services/backup/java/com/android/server/backup/
H A DTrampoline.java255 public void acknowledgeFullBackupOrRestore(int token, boolean allow, String curPassword, argument
260 svc.acknowledgeFullBackupOrRestore(token, allow,
/frameworks/base/services/core/java/com/android/server/net/
H A DLockdownVpnTracker.java303 LinkAddress address, boolean allow) throws RemoteException {
307 mNetService.setFirewallEgressSourceRule(addrString, allow);
302 setFirewallEgressSourceRule( LinkAddress address, boolean allow) argument
/frameworks/base/core/java/android/net/
H A DUri.java1822 * allow argument.
1825 * @param allow set of additional characters to allow in the encoded form,
1830 public static String encode(String s, String allow) { argument
1850 && isAllowed(s.charAt(nextToEncode), allow)) {
1883 && !isAllowed(s.charAt(nextAllowed), allow)) {
1913 * @param allow characters to allow
1917 private static boolean isAllowed(char c, String allow) { argument
1922 || (allow !
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/connectivity/
H A DVpnTest.java149 final Set<UidRange> allow = vpn.createUserAndRestrictedProfilesRanges(primaryUser.id,
154 })), allow);
/frameworks/opt/photoviewer/
H A DAndroid.mk19 # This is to allow the library to be loaded dynamically in a context where
/frameworks/native/libs/gui/
H A DIGraphicBufferProducer.cpp302 virtual status_t allowAllocation(bool allow) { argument
305 data.writeInt32(static_cast<int32_t>(allow));
608 bool allow = static_cast<bool>(data.readInt32()); local
609 status_t result = allowAllocation(allow);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java286 // Set to true to allow the fragment's menu to be shown.
1132 * sense to re-parse the parameters each time, to allow them to change with
1597 * @return boolean Return false to allow normal menu processing to
1677 * @return boolean Return false to allow normal context menu processing to
1899 * @param allow true to start the enter transition when possible or false to
1902 public void setAllowEnterTransitionOverlap(boolean allow) { argument
1903 mAllowEnterTransitionOverlap = allow;
1923 * @param allow true to start the reenter transition when possible or false to wait until the
1926 public void setAllowReturnTransitionOverlap(boolean allow) { argument
1927 mAllowReturnTransitionOverlap = allow;
[all...]

Completed in 1005 milliseconds

12