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

123

/external/webkit/Source/WebKit2/UIProcess/
H A DGeolocationPermissionRequestProxy.cpp39 void GeolocationPermissionRequestProxy::allow() function in class:WebKit::GeolocationPermissionRequestProxy
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAllowParser.java45 * @param allow the header to parse
47 public AllowParser(String allow) { argument
48 super(allow);
73 Allow allow = new Allow();
74 allow.setHeaderName(SIPHeaderNames.ALLOW);
79 allow.setMethod(token.getTokenValue());
81 list.add(allow);
87 allow = new Allow();
90 allow.setMethod(token.getTokenValue());
92 list.add(allow);
[all...]
/external/webkit/Source/WebKit/win/
H A DWebGeolocationPolicyListener.cpp87 HRESULT STDMETHODCALLTYPE WebGeolocationPolicyListener::allow() function in class:WebGeolocationPolicyListener
/external/webkit/Source/WebCore/bindings/v8/
H A DDateExtension.cpp76 void DateExtension::setAllowSleep(bool allow) argument
91 argv[0] = v8::Boolean::New(!allow);
/external/webkit/Source/WebKit/android/jni/
H A DGeolocationPermissionsBridge.cpp73 static void allow(JNIEnv* env, jobject obj, jstring origin) function in namespace:android
76 GeolocationPermissions::allow(originString);
95 (void*) allow },
H A DMockGeolocation.cpp75 static void setPermission(JNIEnv* env, jobject, jobject webViewCore, bool allow) argument
77 getWebViewCore(env, webViewCore)->geolocationManager()->setMockPermission(allow);
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java68 public void setAllowCircularRedirects (final boolean allow) { argument
69 params.setBooleanParameter(ClientPNames.ALLOW_CIRCULAR_REDIRECTS, allow);
/external/chromium/chrome/browser/chromeos/
H A Dplugin_selection_policy.cc79 if (line.find("allow") == 0) {
82 LOG(ERROR) << "Plugin policy file error: 'allow' out of context.";
152 bool allow = false; local
159 allow = policy_allow;
162 return allow;
165 // If it's not in the policy file, then we assume it's OK to allow
/external/protobuf/src/google/protobuf/
H A Dtext_format.h233 void AllowPartialMessage(bool allow) { argument
234 allow_partial_ = allow;
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DGeolocationManager.cpp77 void GeolocationManager::provideRealClientPermissionState(WTF::String origin, bool allow, bool remember) argument
81 m_realClient->providePermissionState(origin, allow, remember);
H A DGeolocationPermissions.h78 // permission is specified by 'allow' and applied to 'origin'. If
83 void providePermissionState(WTF::String origin, bool allow, bool remember);
101 static void allow(WTF::String origin);
118 void recordPermissionState(WTF::String origin, bool allow, bool remember);
121 void makeAsynchronousCallbackToGeolocation(WTF::String origin, bool allow);
128 void maybeCallbackFrames(WTF::String origin, bool allow);
162 bool allow; member in struct:android::GeolocationPermissions::CallbackData
H A DGeolocationClientImpl.cpp201 void GeolocationClientImpl::providePermissionState(String origin, bool allow, bool remember) argument
203 permissions()->providePermissionState(origin, allow, remember);
H A DGeolocationPermissions.cpp90 bool allow = iter->second; local
91 makeAsynchronousCallbackToGeolocation(originString, allow);
99 bool allow = iter->second; local
100 makeAsynchronousCallbackToGeolocation(originString, allow);
157 void GeolocationPermissions::makeAsynchronousCallbackToGeolocation(String origin, bool allow) argument
160 m_callbackData.allow = allow;
164 void GeolocationPermissions::providePermissionState(String origin, bool allow, bool remember) argument
176 maybeCallbackFrames(origin, allow);
177 recordPermissionState(origin, allow, remembe
195 recordPermissionState(String origin, bool allow, bool remember) argument
228 bool allow = iter->second; local
262 maybeCallbackFrames(String origin, bool allow) argument
310 void GeolocationPermissions::allow(String origin) function in class:android::GeolocationPermissions
[all...]
H A DWebCookieJar.cpp161 void WebCookieJar::setAllowCookies(bool allow) argument
164 m_allowCookies = allow;
267 // not required, so we only allow this flag to be changed before the first
/external/dbus/bus/
H A Dpolicy.h52 unsigned int allow : 1; /**< #TRUE if this allows, #FALSE if it denies */ member in struct:BusPolicyRule
107 dbus_bool_t allow);
/external/chromium/base/files/
H A Dfile_path_watcher_browsertest.cc89 // reset expectations while the file watcher is running. In order to allow this,
497 bool ChangeFilePermissions(const FilePath& path, Permission perm, bool allow) { argument
519 if (allow) {
554 change.grfAccessMode = allow ? GRANT_ACCESS : DENY_ACCESS;
/external/chromium/chrome/browser/download/
H A Ddownload_request_limiter.cc140 void DownloadRequestLimiter::TabDownloadState::NotifyCallbacks(bool allow) { argument
141 status_ = allow ?
149 // don't close it. If allow is false, we send all the notifications to cancel
151 if (!allow || (callbacks_.size() < kMaxDownloadsAtOnce)) {
168 host_->ScheduleNotification(callbacks[i], allow);
245 // The tab was closed, don't allow the download.
303 bool allow) {
307 this, &DownloadRequestLimiter::NotifyCallback, callback, allow));
310 void DownloadRequestLimiter::NotifyCallback(Callback* callback, bool allow) { argument
312 if (allow)
302 ScheduleNotification(Callback* callback, bool allow) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dfirewallsocketserver.cc142 void FirewallSocketServer::AddRule(bool allow, FirewallProtocol p, argument
151 AddRule(allow, p, src, dst);
155 void FirewallSocketServer::AddRule(bool allow, FirewallProtocol p, argument
159 r.allow = allow;
188 return r.allow;
229 void FirewallManager::AddRule(bool allow, FirewallProtocol p, argument
234 (*it)->AddRule(allow, p, d, addr);
H A Dfirewallsocketserver.h68 void AddRule(bool allow, FirewallProtocol p = FP_ANY,
71 void AddRule(bool allow, FirewallProtocol p,
98 bool allow; member in struct:talk_base::FirewallSocketServer::Rule
121 void AddRule(bool allow, FirewallProtocol p = FP_ANY,
/external/webkit/Source/WebCore/storage/
H A DDatabaseAuthorizer.cpp430 int allow = denyBasedOnTableName(tableName); local
431 if (allow)
433 return allow;
/external/chromium/base/synchronization/
H A Dcondition_variable_unittest.cc106 void SetAllowHelp(bool allow);
276 // Wait to allow the all workers to get done.
300 // Wait to allow the 3 workers to get done.
321 // Wait to allow the 3 workers to get done.
342 // Wait to allow the 10 workers to get done.
361 // Wait to allow the 10 workers to get done.
393 // Wait a bit more to allow threads to reach their wait state.
648 void WorkQueue::SetAllowHelp(bool allow) { argument
649 allow_help_requests_ = allow;
/external/chromium/chrome/browser/ui/webui/options/
H A Dcontent_settings_handler.cc68 return "allow";
85 if (name == "allow")
588 string16 allow = ExtractStringValue(args); local
591 LowerCaseEqualsASCII(allow, "true"));
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_win.cc370 bool allow,
390 if (allow && AddExternalTab(external_tab_container)) {
368 ConnectExternalTab( uint64 cookie, bool allow, gfx::NativeWindow parent_window, gfx::NativeWindow* tab_container_window, gfx::NativeWindow* tab_window, int* tab_handle, int* session_id) argument
/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings.cc613 em::AllowNewUsersProto* allow = pol.mutable_allow_new_users(); local
614 allow->set_allow_new_users(value == "true");
H A Dsigned_settings_unittest.cc133 em::GuestModeEnabledProto* allow = pol.mutable_guest_mode_enabled(); local
134 allow->set_guest_mode_enabled(false);
154 em::AllowNewUsersProto* allow = pol.mutable_allow_new_users(); local
155 allow->set_allow_new_users(desired);

Completed in 7179 milliseconds

123