Searched defs:watcher (Results 1 - 25 of 31) sorted by relevance

12

/external/apache-http/src/org/apache/http/conn/
H A DEofSensorInputStream.java47 * on EOF. That decision is left to the {@link EofSensorWatcher watcher}.
93 /** The watcher to be notified, if any. */
99 * If no watcher is passed, the underlying stream will simply be
101 * Otherwise, the watcher decides whether the underlying stream
105 * @param watcher the watcher for events, or <code>null</code> for
109 final EofSensorWatcher watcher) {
117 eofWatcher = watcher;
223 * Detects EOF and notifies the watcher.
228 * If EOF is detected, the watcher wil
108 EofSensorInputStream(final InputStream in, final EofSensorWatcher watcher) argument
[all...]
/external/libchrome/base/message_loop/
H A Dmessage_pump_libevent.h80 void set_watcher(Watcher* watcher) { watcher_ = watcher; } argument
/external/webrtc/talk/media/devices/
H A Ddevicemanager.h189 void set_watcher(DeviceWatcher* watcher) { watcher_.reset(watcher); } argument
190 DeviceWatcher* watcher() { return watcher_.get(); } function in class:cricket::DeviceManager
/external/libchrome/base/files/
H A Dfile_path_watcher_fsevents.cc125 FilePathWatcherFSEvents* watcher = local
129 bool root_changed = watcher->ResolveTargetPath();
149 Bind(&FilePathWatcherFSEvents::UpdateEventStream, watcher,
153 watcher->OnFilePathsChanged(paths);
210 // It can happen that the watcher gets canceled while tasks that call this
H A Dfile_path_watcher_unittest.cc110 // reset expectations while the file watcher is running.
135 FilePathWatcher* watcher,
140 *result = watcher->Watch(target, recursive_watch,
193 FilePathWatcher* watcher,
215 FilePathWatcher* watcher,
221 FROM_HERE, base::Bind(SetupWatchCallback, target, watcher, delegate,
229 FilePathWatcher watcher; local
231 ASSERT_TRUE(SetupWatch(test_file(), &watcher, delegate.get(), false));
242 FilePathWatcher watcher; local
244 ASSERT_TRUE(SetupWatch(test_file(), &watcher, delegat
134 SetupWatchCallback(const FilePath& target, FilePathWatcher* watcher, TestDelegateBase* delegate, bool recursive_watch, bool* result, base::WaitableEvent* completion) argument
214 SetupWatch(const FilePath& target, FilePathWatcher* watcher, TestDelegateBase* delegate, bool recursive_watch) argument
257 FilePathWatcher watcher; local
270 FilePathWatcher watcher; local
284 Deleter(FilePathWatcher* watcher, MessageLoop* loop) argument
296 FilePathWatcher* watcher() const { return watcher_.get(); } function in class:base::__anon9159::Deleter
307 FilePathWatcher* watcher = new FilePathWatcher; local
325 FilePathWatcher* watcher = new FilePathWatcher; local
348 FilePathWatcher watcher; local
382 FilePathWatcher watcher; local
409 FilePathWatcher watcher; local
425 FilePathWatcher watcher; local
440 FilePathWatcher watcher; local
500 FilePathWatcher watcher; local
653 FilePathWatcher watcher; local
667 FilePathWatcher watcher; local
685 FilePathWatcher watcher; local
700 FilePathWatcher watcher; local
715 FilePathWatcher watcher; local
731 FilePathWatcher watcher; local
745 FilePathWatcher watcher; local
774 FilePathWatcher watcher; local
804 FilePathWatcher watcher; local
885 FilePathWatcher watcher; local
[all...]
H A Dfile_path_watcher_linux.cc53 // Watch directory |path| for changes. |watcher| will be notified on each
55 Watch AddWatch(const FilePath& path, FilePathWatcherImpl* watcher);
58 void RemoveWatch(Watch watch, FilePathWatcherImpl* watcher);
294 const FilePath& path, FilePathWatcherImpl* watcher) {
308 watchers_[watch].insert(watcher);
313 void InotifyReader::RemoveWatch(Watch watch, FilePathWatcherImpl* watcher) { argument
319 watchers_[watch].erase(watcher);
334 for (WatcherSet::iterator watcher = watchers_[event->wd].begin();
335 watcher != watchers_[event->wd].end();
336 ++watcher) {
293 AddWatch( const FilePath& path, FilePathWatcherImpl* watcher) argument
[all...]
/external/libchrome/base/memory/
H A Dscoped_vector_unittest.cc62 // pairing of the watcher, which observes the object and notifies of
108 // Returns true iff |object| is the same object that this watcher is tracking.
121 LifeCycleWatcher watcher; local
122 EXPECT_EQ(LC_INITIAL, watcher.life_cycle_state());
123 LifeCycleObject* object = watcher.NewLifeCycleObject();
124 EXPECT_EQ(LC_CONSTRUCTED, watcher.life_cycle_state());
126 EXPECT_EQ(LC_DESTROYED, watcher.life_cycle_state());
130 LifeCycleWatcher watcher; local
131 EXPECT_EQ(LC_INITIAL, watcher.life_cycle_state());
133 scoped_vector.push_back(watcher
142 LifeCycleWatcher watcher; local
154 LifeCycleWatcher watcher; local
193 LifeCycleWatcher watcher; local
211 LifeCycleWatcher watcher; local
223 LifeCycleWatcher watcher; local
242 LifeCycleWatcher watcher; local
[all...]
/external/webrtc/webrtc/system_wrappers/source/
H A Dscoped_vector_unittest.cc61 // pairing of the watcher, which observes the object and notifies of
101 // Returns true iff |object| is the same object that this watcher is tracking.
114 LifeCycleWatcher watcher; local
115 EXPECT_EQ(LC_INITIAL, watcher.life_cycle_state());
116 LifeCycleObject* object = watcher.NewLifeCycleObject();
117 EXPECT_EQ(LC_CONSTRUCTED, watcher.life_cycle_state());
119 EXPECT_EQ(LC_DESTROYED, watcher.life_cycle_state());
123 LifeCycleWatcher watcher; local
124 EXPECT_EQ(LC_INITIAL, watcher.life_cycle_state());
126 scoped_vector.push_back(watcher
135 LifeCycleWatcher watcher; local
147 LifeCycleWatcher watcher; local
186 LifeCycleWatcher watcher; local
204 LifeCycleWatcher watcher; local
216 LifeCycleWatcher watcher; local
236 LifeCycleWatcher watcher; local
[all...]
/external/kernel-headers/original/uapi/linux/netfilter_bridge/
H A Debtables.h131 struct xt_target *watcher; member in union:ebt_entry_watcher::__anon8307
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextView.java117 for (TextWatcher watcher : watchers) {
118 watcher.afterTextChanged(new SpannableStringBuilder(getText()));
123 for (TextWatcher watcher : watchers) {
124 watcher.onTextChanged(text, 0, oldValue.length(), text.length());
129 for (TextWatcher watcher : watchers) {
130 watcher.beforeTextChanged(this.text, 0, this.text.length(), newValue.length());
469 public void addTextChangedListener(TextWatcher watcher) { argument
470 this.watchers.add(watcher);
474 public void removeTextChangedListener(TextWatcher watcher) { argument
475 this.watchers.remove(watcher);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar ... .internal.provisional.p2.directorywatcher.DirectoryWatcher watcher org.eclipse.equinox.internal.p2. ...
H A Dorg.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.extensionlocation_1.2.0.v20100518.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jar ... private org.apache.commons.httpclient.ResponseConsumedWatcher watcher public void " href="/7.1.2_r36/s? ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-22.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
/external/robolectric/v1/lib/main/
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 352 milliseconds

12