Searched refs:auto_close (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/base/
H A Dfile_descriptor_posix.h21 FileDescriptor() : fd(-1), auto_close(false) {}
23 FileDescriptor(int ifd, bool iauto_close) : fd(ifd), auto_close(iauto_close) {
26 FileDescriptor(File file) : fd(file.TakePlatformFile()), auto_close(true) {}
29 return (fd == other.fd && auto_close == other.auto_close);
45 bool auto_close; member in struct:base::FileDescriptor
/external/chromium_org/ipc/
H A Dfile_descriptor_set_posix.cc33 if (descriptors_[i].auto_close)
47 sd.auto_close = false;
60 sd.auto_close = true;
121 if (i->auto_close)
132 if (i->auto_close)
148 sd.auto_close = true;
H A Dipc_message.cc129 if (descriptor.auto_close) {
147 descriptor->auto_close = true;
/external/chromium_org/chrome/browser/signin/
H A Dsignin_promo.h22 const char kSignInPromoQueryKeyAutoClose[] = "auto_close";
66 // |auto_close| whether to close the sign in promo automatically when done.
69 GURL GetPromoURL(Source source, bool auto_close);
70 GURL GetPromoURL(Source source, bool auto_close, bool is_constrained);
75 bool auto_close,
89 // Returns true if the auto_close parameter in the given URL is set to true.
H A Dsignin_promo.cc172 GURL GetPromoURL(Source source, bool auto_close) { argument
173 return GetPromoURL(source, auto_close, false /* is_constrained */);
176 GURL GetPromoURL(Source source, bool auto_close, bool is_constrained) { argument
177 return GetPromoURLWithContinueURL(source, auto_close, is_constrained, GURL());
181 bool auto_close,
189 if (auto_close)
216 // It is also parsed for the |auto_close| flag, which indicates that the tab
224 if (auto_close) {
250 source, true /* auto_close */,
180 GetPromoURLWithContinueURL(Source source, bool auto_close, bool is_constrained, GURL continue_url) argument
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dzoom_bubble_view.h32 // |auto_close| is true.
34 bool auto_close);
49 bool auto_close,
H A Dzoom_bubble_view.cc43 bool auto_close) {
55 // is equal to |auto_close|, the bubble can be reused and only the label text
59 zoom_bubble_->auto_close_ == auto_close) {
63 // to |auto_close|, the bubble's focus properties must change, so the
69 auto_close,
111 bool auto_close,
118 auto_close_(auto_close),
122 set_use_focusless(auto_close);
42 ShowBubble(content::WebContents* web_contents, bool auto_close) argument
108 ZoomBubbleView( views::View* anchor_view, content::WebContents* web_contents, bool auto_close, ImmersiveModeController* immersive_mode_controller, FullscreenController* fullscreen_controller) argument
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/
H A Dzoom_decoration.h31 // Shows the zoom bubble for this decoration. If |auto_close| is YES, then
33 void ShowBubble(BOOL auto_close);
/external/chromium_org/base/memory/
H A Dshared_memory_nacl.cc160 new_handle->auto_close = true;
H A Dshared_memory_posix.cc469 new_handle->auto_close = true;
/external/chromium_org/content/browser/renderer_host/media/
H A Daudio_sync_reader.cc100 foreign_handle->auto_close = false;
H A Daudio_input_sync_writer.cc125 foreign_handle->auto_close = false;
/external/chromium_org/android_webview/browser/renderer_host/
H A Dprint_manager.cc64 temp_file_fd->auto_close = false;
/external/chromium_org/chrome/browser/ui/webui/signin/
H A Dinline_login_handler_impl.cc357 bool auto_close = signin::IsAutoCloseEnabledInURL(current_url); local
361 } else if (auto_close) {
/external/chromium_org/chrome/browser/printing/
H A Dprinting_message_filter.cc164 temp_file_fd->auto_close = false;
180 temp_file_fd->auto_close = true;
196 temp_file_fd->auto_close = false;
/external/chromium_org/chrome/renderer/
H A Dchrome_mock_render_thread.cc102 renderer_fd->auto_close = false;
/external/chromium_org/content/browser/android/
H A Dchild_process_launcher_android.cc134 file_auto_close[i] = fd_info.fd.auto_close;
/external/chromium_org/printing/
H A Dpdf_metafile_skia.cc217 if (fd.auto_close) {
/external/chromium_org/remoting/host/
H A Ddesktop_process_unittest.cc187 DCHECK(desktop_process.auto_close);
H A Dipc_desktop_environment.cc195 DCHECK(desktop_pipe.auto_close);
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_helper.cc352 result->auto_close = false;
/external/chromium_org/content/child/npapi/
H A Dnp_channel_base.cc72 base::ScopedFD fd(channel_handle.socket.auto_close ?
/external/chromium_org/components/nacl/browser/
H A Dnacl_process_host.cc227 channel.auto_close = close_source;
729 imc_handle.auto_close = true;
864 memory_fd.auto_close = true;
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_file_io_host.cc81 void FileCloser(base::File auto_close) { argument
/external/chromium_org/content/browser/zygote_host/
H A Dzygote_host_impl_linux.cc327 if (i->fd.auto_close) {

Completed in 891 milliseconds

12