HomeSort by relevance Sort by last modified time
    Searched refs:allowed (Results 126 - 150 of 376) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/geolocation/
geolocation_permission_context_unittest.cc 123 bool allowed);
124 void CheckPermissionMessageSent(int bridge_id, bool allowed);
125 void CheckPermissionMessageSentForTab(int tab, int bridge_id, bool allowed);
128 bool allowed);
138 // whether the requested permission was allowed.
184 bool allowed) {
185 responses_[id.render_process_id()] = std::make_pair(id.bridge_id(), allowed);
190 bool allowed) {
191 CheckPermissionMessageSentInternal(process(), bridge_id, allowed); local
197 bool allowed) {
    [all...]
  /external/chromium_org/content/browser/geolocation/
geolocation_dispatcher_host.cc 232 bool allowed) {
241 render_frame_id, bridge_id, allowed));
244 if (allowed) {
  /external/chromium_org/extensions/browser/
extension_function_dispatcher.cc 473 bool allowed = true; local
475 allowed = AllowHostedAppAPICall(*extension, params.source_url, params.name);
479 if (allowed && api->IsPrivileged(params.name))
480 allowed = process_map.Contains(extension->id(), requesting_process_id);
482 if (!allowed) {
  /external/llvm/test/MC/ARM/
thumb-diagnostics.s 68 @ CHECK-ERRORS: error: writeback operator '!' not allowed when base register in register list
71 @ CHECK-ERRORS-V8: error: writeback operator '!' not allowed when base register in register list
74 @ CHECK-ERRORS-V8: error: writeback register not allowed in register list
100 @ CHECK-ERRORS-V8: error: writeback operator '!' not allowed when base register in register list
103 @ CHECK-ERRORS-V8: error: writeback register not allowed in register list
  /external/chromium_org/chrome/browser/ui/webui/options/
manage_profile_browsertest.js 401 // Test both elision and HTML escaping. The allowed string length is the
432 assertFalse(checkbox.disabled, 'allowed and signed in');
433 assertFalse(link.hidden, 'allowed and signed in');
435 'allowed and signed in');
439 assertTrue(checkbox.disabled, 'allowed, not signed in');
440 assertFalse(link.hidden, 'allowed, not signed in');
442 'allowed, not signed in');
462 assertFalse(checkbox.disabled, 're-allowed and signed in');
463 assertFalse(link.hidden, 're-allowed and signed in');
465 're-allowed and signed in')
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
webrequest.js 50 * Fetches the app id, and calls a callback with list of allowed origins for it.
52 * @param {Function} cb called with a list of allowed origins for the app id.
128 * Fetches the allowed origins for an appId.
133 * response code and a list of allowed origins for appId.
177 * @param {!Array.<string>} allowedOrigins the list of allowed origins for each
179 * @return {boolean} whether the appId is allowed for the origin.
185 // trivially allowed
228 // Image fetching is not allowed per packaged app CSP.
238 * @param {Array.<string>} allowedOrigins the allowed origins retrieved.
  /external/chromium_org/chrome/browser/content_settings/
tab_specific_content_settings.cc 459 bool allowed) {
460 geolocation_usages_state_.OnPermissionSet(requesting_origin, allowed);
470 bool allowed) {
471 if (allowed) {
625 void TabSpecificContentSettings::SetPepperBrokerAllowed(bool allowed) {
626 if (allowed) {
  /external/chromium_org/components/data_reduction_proxy/browser/
data_reduction_proxy_settings.cc 81 if (params_->allowed())
114 // Disable the proxy if it is not allowed to be used.
115 if (!params_->allowed())
264 // Prevent configuring the proxy when it is not allowed to be used.
265 if (!params_->allowed())
277 // Prevent configuring the proxy when it is not allowed to be used.
410 DCHECK(params_->allowed());
418 if (!params_->allowed())
502 if (params_->allowed()) {
data_reduction_proxy_params_unittest.cc 116 EXPECT_EQ(expected_allowed, params.allowed());
205 bool allowed; member in struct:data_reduction_proxy::__anon10906
261 if (tests[i].allowed)
data_reduction_proxy_settings_test_utils.cc 134 void DataReductionProxySettingsTestBase::ResetSettings(bool allowed,
139 if (allowed)
165 bool allowed, bool fallback_allowed, bool alt_allowed, bool promo_allowed);
  /external/chromium_org/remoting/host/
gnubby_auth_handler_posix.cc 57 bool allowed = user_id == getuid(); local
58 if (!allowed)
60 return allowed;
  /external/chromium_org/chrome/browser/mac/
security_wrappers.h 21 explicit ScopedSecKeychainSetUserInteractionAllowed(Boolean allowed);
  /external/chromium_org/chrome/browser/ui/views/website_settings/
permissions_bubble_view.cc 61 virtual void PermissionSelectionChanged(int index, bool allowed) = 0;
202 virtual void PermissionSelectionChanged(int index, bool allowed) OVERRIDE;
401 int index, bool allowed) {
402 owner_->Toggle(index, allowed);
  /external/chromium_org/chrome/browser/ui/webui/
plugins_ui.cc 301 bool allowed = false; local
302 if (!args->GetString(0, &plugin) || !args->GetBoolean(1, &allowed)) {
312 allowed ? CONTENT_SETTING_ALLOW : CONTENT_SETTING_DEFAULT);
318 update->SetBoolean(plugin, allowed);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/
popup.js 75 chrome.extension.isAllowedIncognitoAccess(function(allowed) {
76 if (allowed) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/
popup.js 75 chrome.extension.isAllowedIncognitoAccess(function(allowed) {
76 if (allowed) {
  /external/chromium_org/chrome/renderer/
content_settings_observer.h 102 void OnRequestFileSystemAccessAsyncResponse(int request_id, bool allowed);
  /external/chromium_org/content/public/browser/
render_process_host.h 182 virtual void SetSuddenTerminationAllowed(bool allowed) = 0;
  /external/chromium_org/content/public/test/
mock_render_process_host.h 64 virtual void SetSuddenTerminationAllowed(bool allowed) OVERRIDE;
  /external/chromium_org/remoting/host/setup/
daemon_controller.h 92 // Indicates if crash dump reporting is allowed by the user.
93 bool allowed; member in struct:remoting::DaemonController::UsageStatsConsent
  /external/chromium_org/remoting/host/win/
elevated_controller.cc 479 STDMETHODIMP ElevatedController::GetUsageStatsConsent(BOOL* allowed,
484 *allowed = local_allowed;
492 STDMETHODIMP ElevatedController::SetUsageStatsConsent(BOOL allowed) {
493 if (remoting::SetUsageStatsConsent(!!allowed)) {
  /external/chromium_org/tools/grit/grit/
exception.py 68 '''Only one <ex> element is allowed for each <ph> element.'''
  /external/chromium_org/v8/test/cctest/
test-utils-arm64.cc 214 int reg_size, int reg_count, RegList allowed) {
218 if (((1UL << n) & allowed) != 0) {
219 // Only assign allowed registers.
241 int reg_size, int reg_count, RegList allowed) {
245 if (((1UL << n) & allowed) != 0) {
246 // Only assigned allowed registers.
  /external/libselinux/include/selinux/
selinux.h 110 access_vector_t allowed; member in struct:av_decision
  /external/qemu/distrib/libselinux/include/selinux/
selinux.h 110 access_vector_t allowed; member in struct:av_decision

Completed in 1502 milliseconds

1 2 3 4 56 7 8 91011>>