HomeSort by relevance Sort by last modified time
    Searched refs:Close (Results 426 - 450 of 1934) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/ui/views/bubble/
bubble.cc 80 void Bubble::Close() {
94 // When fading out we just need to close the bubble at the end
307 // The popup should close when it is deactivated.
309 Close();
318 Close();
332 border_->Close();
333 WidgetWin::Close();
335 WidgetGtk::Close();
349 // This must be the very next call, otherwise we can get flicker on close.
  /external/chromium_org/ipc/
ipc_channel_nacl.cc 138 Close();
170 void Channel::ChannelImpl::Close() {
174 // If untrusted code tries to close the channel prior to shutdown, it's likely
179 close(pipe_);
205 // Close sets the pipe to -1. It's possible we'll get a buffer sent to us from
206 // the reader thread after Close is called. If so, we ignore it.
226 Close();
279 Close();
370 void Channel::Close() {
371 channel_impl_->Close();
    [all...]
  /art/runtime/base/unix_file/
fd_file.cc 38 Close();
60 int FdFile::Close() {
61 int result = TEMP_FAILURE_RETRY(close(fd_));
  /external/chromium/app/sql/
connection.h 162 // you, but this allows you to close the database early. You must not call
163 // any other functions after closing it. It is permissable to call Close on
165 void Close();
315 void Close();
365 // us when it's created or destroyed. This allows us to potentially close
  /external/chromium/chrome/browser/hang_monitor/
hung_window_detector.cc 132 child_thread.Close();
152 child_process.Close();
  /external/chromium/net/http/
http_basic_stream.cc 74 void HttpBasicStream::Close(bool not_reusable) {
75 parser_->Close(not_reusable);
  /external/chromium/net/websockets/
websocket.cc 87 void WebSocket::Close() {
103 socket_stream_->Close();
141 socket_stream_->Close();
225 // then close the WebSocket connection.
227 socket_stream_->Close();
270 socket_stream_->Close();
319 socket_stream_->Close();
348 // the WebSocket connection is not already closed, then close
350 socket_stream_->Close();
439 // 6. If the WebSocket connection is not already closed, then close th
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
socketstream.cc 112 void SocketStream::Close() {
114 socket_->Close();
  /external/chromium_org/ash/display/
shared_display_edge_indicator.cc 98 src_indicator_->GetWidget()->Close();
101 dst_indicator_->GetWidget()->Close();
  /external/chromium_org/ash/drag_drop/
drag_drop_interactive_uitest.cc 160 source->Close();
161 target->Close();
  /external/chromium_org/ash/wm/gestures/
tray_gesture_handler.cc 53 widget_->Close();
74 // Close the widget if it hasn't been dragged enough.
94 widget_->Close();
  /external/chromium_org/chrome/browser/ui/gtk/bubble/
bubble_gtk_browsertest.cc 93 bubble->Close();
134 bubble->Close();
  /external/chromium_org/chrome/browser/ui/
tab_modal_confirm_dialog_browsertest.cc 105 IN_PROC_BROWSER_TEST_F(TabModalConfirmDialogTest, Close) {
113 delegate_->Close();
  /external/chromium_org/chrome/browser/ui/views/
validation_message_bubble_delegate.cc 82 void ValidationMessageBubbleDelegate::Close() {
83 GetWidget()->Close();
  /external/chromium_org/chrome/browser/ui/webui/
chrome_web_contents_handler.cc 65 // Close the browser if chrome::Navigate created a new one.
67 browser->window()->Close();
110 // Close the browser if chrome::Navigate created a new one.
112 browser->window()->Close();
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_manager_unittest.cc 144 // Try to open, start, stop and close a device.
163 vcm_->Close(video_session_id);
192 vcm_->Close(video_session_id_first);
193 vcm_->Close(video_session_id_second);
286 vcm_->Close(video_session_id);
312 vcm_->Close(video_session_id_first);
313 vcm_->Close(video_session_id_second);
347 vcm_->Close(session_id);
362 // Open and start a device, close it before calling Stop.
381 // Close will stop the running device, an assert will be triggered i
    [all...]
  /external/chromium_org/media/audio/
audio_input_controller.h 21 // from this input stream. The two main methods are Record() and Close() and
59 // Close() ==> DoClose()
63 // AudioInputStream::Close()
64 // SyncWriter::Close()
112 // Close this synchronous writer.
113 virtual void Close() = 0;
181 // that called Close().
187 virtual void Close(const base::Closure& closed_task);
audio_output_controller.h 100 // Close this synchronous reader.
101 virtual void Close() = 0;
133 void Close(const base::Closure& closed_task);
audio_output_proxy_unittest.cc 78 MOCK_METHOD0(Close, void());
183 EXPECT_CALL(*stream, Close())
190 // Close the stream and verify it doesn't happen immediately.
191 proxy->Close();
194 // Wait for the actual close event to come from the close timer.
198 // Basic Open() and Close() test.
253 // Wait for the close timer to fire after StopStream().
255 proxy->Close();
273 proxy1->Close();
    [all...]
virtual_audio_output_stream_unittest.cc 112 FROM_HERE, base::Bind(&VirtualAudioOutputStream::Close,
116 FROM_HERE, base::Bind(&MockVirtualAudioInputStream::Close,
  /external/chromium_org/mojo/services/native_viewport/
native_viewport_impl.cc 50 void NativeViewportImpl::Close() {
52 native_viewport_->Close();
  /external/chromium_org/net/disk_cache/
disk_cache.h 81 // is no longer needed, its Close method should be called. The return value is
90 // entry pointer is no longer needed, its Close method should be called. The
127 // Close method should be called. The return value is a net error code. If
169 virtual void Close() = 0;
189 // after Close has been called; in other words, the caller may close this
201 // invoked, even after Close has been called; in other words, the caller may
202 // close this entry without having to wait for all the callbacks, and still
315 entry->Close();
  /external/chromium_org/net/disk_cache/flash/
internal_entry.cc 67 void InternalEntry::Close() {
68 entry_->Close();
  /external/chromium_org/net/http/
http_pipelined_stream.cc 71 void HttpPipelinedStream::Close(bool not_reusable) {
72 pipeline_->Close(pipeline_id_, not_reusable);
http_response_body_drainer.cc 136 stream_->Close(true /* no keep-alive */);
139 stream_->Close(false /* keep-alive */);

Completed in 2676 milliseconds

<<11121314151617181920>>