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

1234

/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/chromium_org/remoting/host/
H A Ddns_blackhole_checker.cc35 bool allow = false; local
38 allow = true;
43 callback_.Run(allow);
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwGeolocationPermissions.java34 public void allow(String origin) { method in class:AwGeolocationPermissions
/external/chromium_org/chrome/browser/download/
H A Ddownload_resource_throttle.cc63 void DownloadResourceThrottle::ContinueDownload(bool allow) { argument
65 request_allowed_ = allow;
67 if (allow) {
77 if (allow) {
H A Ddownload_request_limiter_unittest.cc114 void ContinueDownload(bool allow) { argument
115 if (allow) {
165 // Ask again. This triggers asking the delegate for allow/disallow.
187 // Do two downloads, allowing the second so that we end up with allow all.
199 // Navigate to a new URL with the same host, which shouldn't reset the allow
207 // Do a user gesture, because we're at allow all, this shouldn't change the
218 // Do two downloads, allowing the second so that we end up with allow all.
230 // Navigate to a new URL with the same host, which shouldn't reset the allow
249 // Do a user gesture, which should reset back to allow one.
254 // Ask twice, which triggers calling the delegate. Don't allow th
[all...]
H A Ddownload_request_limiter.cc202 void DownloadRequestLimiter::TabDownloadState::NotifyCallbacks(bool allow) { argument
203 set_download_status(allow ?
211 // don't close it. If allow is false, we send all the notifications to cancel
213 if (!allow || (callbacks_.size() < kMaxDownloadsAtOnce)) {
227 host_->ScheduleNotification(callbacks[i], allow);
303 // The WebContents was closed, don't allow the download.
337 const Callback& orig_callback, bool allow) {
341 if (!originating_contents || !allow) {
436 bool allow) {
438 BrowserThread::IO, FROM_HERE, base::Bind(callback, allow));
332 OnCanDownloadDecided( int render_process_host_id, int render_view_id, int request_id, const std::string& request_method, const Callback& orig_callback, bool allow) argument
435 ScheduleNotification(const Callback& callback, bool allow) argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_util.cc30 // If this is an existing component extension we always allow it to
86 // We allow the extension to see events and data from another profile iff it
113 bool allow) {
117 if (allow == old_allow)
120 service->extension_prefs()->SetAllowFileAccess(extension->id(), allow);
111 SetAllowFileAccess(const Extension* extension, ExtensionService* service, bool allow) argument
/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/chromium_org/android_webview/browser/
H A Daw_cookie_access_policy.cc36 void AwCookieAccessPolicy::SetGlobalAllowAccess(bool allow) { argument
38 allow_access_ = allow;
/external/chromium_org/cc/test/
H A Dfake_picture_layer_tiling_client.h41 void set_allow_create_tile(bool allow) { allow_create_tile_ = allow; } argument
/external/chromium_org/chrome/browser/guestview/webview/
H A Dplugin_permission_helper.cc102 bool allow,
104 if (allow) {
101 OnPermissionResponse(const std::string& identifier, bool allow, const std::string& input) argument
/external/chromium_org/chrome/browser/ui/webui/
H A Dprofiler_ui.cc85 base::ThreadRestrictions::ScopedAllowIO allow; variable
/external/chromium_org/content/browser/renderer_host/input/
H A Dmock_input_router_client.h45 void set_allow_send_event(bool allow) { argument
/external/chromium_org/content/browser/ssl/
H A Dssl_policy.cc151 bool allow) {
152 if (allow) {
150 OnAllowCertificate(scoped_refptr<SSLCertErrorHandler> handler, bool allow) argument
/external/chromium_org/ui/views/
H A Daccessible_pane_view.h91 // focus to another window if if |allow| is set and no previous view can be
93 void set_allow_deactivate_on_esc(bool allow) { argument
94 allow_deactivate_on_esc_ = allow;
/external/protobuf/src/google/protobuf/
H A Dtext_format.h233 void AllowPartialMessage(bool allow) { argument
234 allow_partial_ = allow;
/external/chromium_org/content/child/npapi/
H A Dplugin_stream_url.cc34 void PluginStreamUrl::URLRedirectResponse(bool allow) { argument
36 plugin_url_fetcher_->URLRedirectResponse(allow);
38 instance()->webplugin()->URLRedirectResponse(allow, id_);
41 if (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/chromium_org/base/files/
H A Dfile_path_watcher_browsertest.cc772 bool ChangeFilePermissions(const FilePath& path, Permission perm, bool allow) { argument
793 if (allow) {
/external/chromium_org/chrome/browser/automation/
H A Dautomation_provider_win.cc165 bool allow,
185 if (allow && AddExternalTab(external_tab_container)) {
164 ConnectExternalTab(uint64 cookie, bool allow, HWND parent_window, HWND* tab_container_window, HWND* tab_window, int* tab_handle, int* session_id) argument
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter.cc149 bool allow = default_result; local
153 allow = true;
155 allow = (!MatchPattern(text, UTF8ToUTF16("*=''")));
157 allow = false;
160 return allow;

Completed in 1889 milliseconds

1234