HomeSort by relevance Sort by last modified time
    Searched refs:allowed (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/webkit/Source/WebKit/chromium/src/
WebGeolocationPermissionRequest.cpp 44 void WebGeolocationPermissionRequest::setIsAllowed(bool allowed)
46 m_private->setIsAllowed(allowed);
WebGeolocationClientMock.cpp 80 void WebGeolocationClientMock::setPermission(bool allowed)
82 m_clientMock->setPermission(allowed);
  /external/chromium/base/threading/
thread_restrictions.cc 27 bool ThreadRestrictions::SetIOAllowed(bool allowed) {
29 g_io_disallowed.Get().Set(!allowed);
38 "disallows IO! If this thread really should be allowed to "
45 bool ThreadRestrictions::SetSingletonAllowed(bool allowed) {
47 g_singleton_disallowed.Get().Set(!allowed);
54 LOG(FATAL) << "LazyInstance/Singleton is not allowed to be used on this "
thread_restrictions.h 21 // 1) If a thread should not be allowed to make IO calls, mark it:
23 // By default, threads *are* allowed to make IO calls.
27 // current thread is allowed:
48 // Whether IO is allowed when the ScopedAllowIO was constructed.
61 // Whether singleton use is allowed when the ScopedAllowSingleton was
70 // Threads start out in the *allowed* state.
72 static bool SetIOAllowed(bool allowed);
74 // Check whether the current thread is allowed to make IO calls,
81 static bool SetSingletonAllowed(bool allowed);
83 // Check whether the current thread is allowed to use singletons (Singleton
    [all...]
  /external/libsepol/include/sepol/policydb/
flask_types.h 55 sepol_access_vector_t allowed; member in struct:sepol_av_decision
  /build/core/
phony_package.mk 2 $(error LOCAL_SRC_FILES are not allowed for phony packages)
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapeContainerCheckPrivate.h 43 typedef uint32_t (*WKN_CheckIfAllowedToLoadURLProcPtr)(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32_t, NPBool allowed, void* context), void* context);
47 uint32_t WKN_CheckIfAllowedToLoadURL(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32_t, NPBool allowed, void* context), void* context);
WebNetscapeContainerCheckContextInfo.h 39 - (id)initWithCheckRequestID:(uint32_t)checkRequestID callbackFunc:(void (*)(NPP npp, uint32_t checkID, NPBool allowed, void* context))callbackFunc context:(void*)context;
WebNetscapeContainerCheckContextInfo.mm 32 - (id)initWithCheckRequestID:(uint32_t)checkRequestID callbackFunc:(void (*)(NPP npp, uint32_t checkID, NPBool allowed, void* context))callbackFunc context:(void*)context
  /external/webkit/Source/WebKit2/UIProcess/
GeolocationPermissionRequestManagerProxy.cpp 57 void GeolocationPermissionRequestManagerProxy::didReceiveGeolocationPermissionDecision(uint64_t geolocationID, bool allowed)
66 m_page->process()->send(Messages::WebPage::DidReceiveGeolocationPermissionDecision(geolocationID, allowed), m_page->pageID());
  /external/clang/test/Preprocessor/
warning_tests.c 38 #error Alias expansion not allowed
  /external/webkit/Source/WebCore/bindings/
ScriptControllerBase.cpp 42 const bool allowed = m_frame->loader()->client()->allowJavaScript(settings && settings->isJavaScriptEnabled()); local
43 if (!allowed && reason == AboutToExecuteScript)
45 return allowed;
  /external/webkit/Source/WebCore/platform/mock/
GeolocationClientMock.cpp 76 void GeolocationClientMock::setPermission(bool allowed)
78 m_permissionState = allowed ? PermissionStateAllowed : PermissionStateDenied;
113 bool allowed = m_permissionState == PermissionStateAllowed; local
121 (*it)->setIsAllowed(allowed);
GeolocationClientMock.h 61 void setPermission(bool allowed);
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
GeolocationPermissionRequestManager.h 47 void didReceiveGeolocationPermissionDecision(uint64_t geolocationID, bool allowed);
GeolocationPermissionRequestManager.cpp 78 void GeolocationPermissionRequestManager::didReceiveGeolocationPermissionDecision(uint64_t geolocationID, bool allowed)
85 geolocation->setIsAllowed(allowed);
  /frameworks/base/core/java/android/os/
Trace.java 83 private static native void nativeSetAppTracingAllowed(boolean allowed);
84 private static native void nativeSetTracingEnabled(boolean allowed);
157 * Set whether application tracing is allowed for this process. This is intended to be set
162 public static void setAppTracingAllowed(boolean allowed) {
163 nativeSetAppTracingAllowed(allowed);
165 // Setting whether app tracing is allowed may change the tags, so we update the cached
  /external/chromium/chrome/browser/resources/
collected_cookies.js 15 var allowedCookies = $('allowed-cookies');
32 var selected = $('allowed-cookies').selectedItem;
52 ui.CookiesTree.decorate($('allowed-cookies'));
57 $('allowed-cookies').addEventListener('change', handleCookiesTreeChange);
  /external/openssh/
auth-rsa.c 168 int allowed = 0; local
248 /* break out, this key is allowed */
249 allowed = 1;
256 /* return key if allowed */
257 if (allowed && rkey != NULL)
262 return allowed;
267 * return key if login is allowed, NULL otherwise
274 u_int i, allowed = 0; local
278 for (i = 0; !allowed && i < options.num_authkeys_files; i++) {
281 allowed = rsa_key_allowed_in_file(pw, file, client_n, rkey)
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
GeolocationManager.cpp 102 void GeolocationManager::setMockPermission(bool allowed)
105 mockClient()->setPermission(allowed);
  /external/chromium/chrome/browser/
content_setting_image_model.cc 153 // If any embedded site has access the allowed icon takes priority over the
157 bool allowed = local
159 set_icon(allowed ? IDR_GEOLOCATION_ALLOWED_LOCATIONBAR_ICON :
161 set_tooltip(l10n_util::GetStringUTF8(allowed ?
  /external/chromium/chrome/browser/notifications/
notifications_prefs_cache.cc 39 const std::vector<GURL>& allowed) {
41 allowed_origins_.insert(allowed.begin(), allowed.end());
notification_exceptions_table_model.cc 115 std::vector<GURL> allowed(service_->GetAllowedOrigins());
117 entries_.reserve(allowed.size() + blocked.size());
118 for (size_t i = 0; i < allowed.size(); ++i)
119 entries_.push_back(Entry(allowed[i], CONTENT_SETTING_ALLOW));
notifications_prefs_cache.h 37 // Updates the cache with a new origin allowed or denied.
43 void SetCacheAllowedOrigins(const std::vector<GURL>& allowed);
  /external/chromium/chrome/browser/geolocation/
geolocation_settings_state.h 30 void OnGeolocationPermissionSet(const GURL& requesting_origin, bool allowed);
44 // There's at least one entry with ALLOWED setting.

Completed in 831 milliseconds

1 2 3 4 5 6 7 8