OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Pump
(Results
1 - 9
of
9
) sorted by null
/external/dagger2/examples/simple/src/main/java/coffee/
Pump.java
3
interface
Pump
{
4
void
pump
();
method in interface:Pump
PumpModule.java
8
@Provides
Pump
providePump(Thermosiphon
pump
) {
9
return
pump
;
CoffeeMaker.java
8
private final
Pump
pump
;
field in class:CoffeeMaker
10
@Inject CoffeeMaker(Lazy<Heater> heater,
Pump
pump
) {
12
this.
pump
=
pump
;
17
pump
.
pump
();
Thermosiphon.java
5
class Thermosiphon implements
Pump
{
13
@Override public void
pump
() {
method in class:Thermosiphon
/external/webrtc/talk/media/devices/
gtkvideorenderer.h
56
//
Pump
the Gtk event loop until there are no events left.
57
void
Pump
();
gtkvideorenderer.cc
73
Pump
();
136
Pump
();
160
void GtkVideoRenderer::
Pump
() {
/external/webrtc/webrtc/base/
win32socketserver.h
111
void
Pump
();
win32socketserver_unittest.cc
25
// Test that Win32Socket::
Pump
does not touch general Windows messages.
30
server.
Pump
();
win32socketserver.cc
763
// Spin the Win32 message
pump
at least once, and as long as requested.
795
// No-op (cms == 0 && !process_io). This is the
Pump
case.
815
void Win32SocketServer::
Pump
() {
823
// are posted during the dispatch, they will be handled in the next
Pump
.
847
ss_->
Pump
();
Completed in 225 milliseconds