Searched refs:monitor (Results 26 - 50 of 176) sorted by relevance

12345678

/external/vogar/src/vogar/target/
H A DTestRunner.java36 import vogar.monitor.TargetMonitor;
46 /** the monitor port if a monitor is expected, or null for no monitor */
142 final TargetMonitor monitor = useSocketMonitor
148 monitor.output(str != null ? str : "null");
155 run(monitor);
159 monitor.close();
163 private void run(final TargetMonitor monitor) { argument
200 targetRunner = runnerFactory.newRunner(monitor, qualificatio
244 newRunner(TargetMonitor monitor, String qualification, Class<?> klass, AtomicReference<String> skipPastReference, TestEnvironment testEnvironment, int timeoutSeconds, String[] args) argument
[all...]
/external/conscrypt/common/src/jni/main/include/conscrypt/
H A Dcompatibility_close_monitor.h36 AsynchronousCloseMonitor monitor; member in class:conscrypt::CompatibilityCloseMonitor
39 explicit CompatibilityCloseMonitor(int fd) : monitor(fd) {}
/external/valgrind/gdbserver_tests/
H A Dnlsigvgdb.stderrB.exp5 monitor command request to kill this process
H A Dmssnapshot.stderrB.exp3 general valgrind monitor commands:
4 help [debug] : monitor command help. With debug: + debugging commands
17 massif monitor commands:
28 monitor command request to kill this process
H A Dmcbreak.stderrB.exp10 monitor command request to kill this process
H A DmcinvokeRU.stdoutB.exp23 monitor command request to kill this process
/external/iproute2/bridge/
H A DMakefile1 BROBJ = bridge.o fdb.o monitor.o link.o mdb.o vlan.o
/external/webrtc/webrtc/base/
H A Dhttprequest.cc94 HttpMonitor monitor(ss);
95 monitor.Connect(&client_);
98 if (!monitor.done()) {
104 set_error(monitor.error());
/external/autotest/client/site_tests/graphics_GpuReset/src/
H A Dgpureset.c168 // Create the udev monitor structure.
169 struct udev_monitor* monitor = udev_monitor_new_from_netlink(udev, "udev"); local
170 if (!monitor) {
171 OUTPUT_ERROR("Can't get create udev monitor");
176 udev_monitor_filter_add_match_subsystem_devtype(monitor,
179 udev_monitor_enable_receiving(monitor);
181 return monitor;
184 int udev_wait(struct udev_monitor* monitor) argument
190 int fd = udev_monitor_get_fd(monitor);
203 struct udev_device* dev = udev_monitor_receive_device(monitor);
283 struct udev_monitor* monitor = udev_init(); local
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DMonitorTestCase.java39 super(MonitorTestCase.this.monitor);
53 private Monitor monitor; field in class:MonitorTestCase
64 monitor = new Monitor(fair);
65 tearDownStack.addTearDown(thread1 = new TestThread<Monitor>(monitor, "TestThread #1"));
66 tearDownStack.addTearDown(thread2 = new TestThread<Monitor>(monitor, "TestThread #2"));
149 monitor.enter();
151 monitor.leave();
211 monitor.enter();
213 monitor.leave();
223 monitor
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DMonitor.java45 * <p>A thread is said to <i>occupy</i> a monitor if it has <i>entered</i> the monitor but not yet
46 * <i>left</i>. Only one thread may occupy a given monitor at any moment. A monitor is also
47 * reentrant, so a thread may enter a monitor any number of times, and then must leave the same
53 * monitor cleanly: <pre> {@code
55 * monitor.enter();
57 * // do things while occupying the monitor
59 * monitor.leave();
64 * ensure that the current thread leaves the monitor cleanl
293 final Monitor monitor; field in class:Monitor.Guard
303 Guard(Monitor monitor) argument
[all...]
H A DServiceManager.java77 * Additionally, users can monitor state transitions with the {@linkplain Listener listener}
401 final Monitor monitor = new Monitor(); field in class:ServiceManager.ServiceManagerState
403 @GuardedBy("monitor")
412 @GuardedBy("monitor")
415 @GuardedBy("monitor")
429 @GuardedBy("monitor")
432 @GuardedBy("monitor")
441 final Monitor.Guard awaitHealthGuard = new Monitor.Guard(monitor) {
454 final Monitor.Guard stoppedGuard = new Monitor.Guard(monitor) {
461 @GuardedBy("monitor")
[all...]
/external/autotest/scheduler/
H A Dagent_task.py5 The AgentTask imposes an interface through which the scheduler can monitor
159 self.monitor = None
199 assert self.monitor
200 exit_code = self.monitor.exit_code()
226 assert not self.monitor
238 if self.monitor and log_file:
239 self.monitor.try_copy_to_results_repository(log_file)
260 if self.monitor:
261 self.monitor.kill()
287 assert self.monitor
[all...]
/external/dagger2/producers/src/test/java/dagger/producers/monitoring/internal/
H A DMonitorsTest.java94 ProductionComponentMonitor monitor = factory.create(new Object());
95 assertThat(monitor.producerMonitorFor(ProducerToken.create(Object.class)))
109 ProductionComponentMonitor monitor = factory.create(new Object());
110 assertThat(monitor.producerMonitorFor(ProducerToken.create(Object.class)))
120 ProductionComponentMonitor monitor = factory.create(new Object());
122 monitor.producerMonitorFor(ProducerToken.create(Object.class));
141 ProductionComponentMonitor monitor = factory.create(new Object());
143 monitor.producerMonitorFor(ProducerToken.create(Object.class));
165 ProductionComponentMonitor monitor = factory.create(new Object());
167 monitor
[all...]
/external/lisa/libs/utils/android/workloads/
H A Dexoplayer.py82 # Prepare logcat monitor
83 monitor = self._target.get_logcat_monitor(REGEXPS.values())
84 monitor.start()
92 monitor.wait_for(REGEXPS['start'])
96 line = monitor.wait_for(REGEXPS['duration'])[0]
109 monitor.wait_for(REGEXPS['end'], timeout = media_duration_s + 30)
112 monitor.stop()
/external/libbrillo/brillo/glib/
H A Ddbus.h184 void (*monitor)(void*, A1),
186 : proxy_(proxy), name_(name), monitor_(monitor), object_(object) {}
206 void (*monitor)(void*, A1, A2),
208 : proxy_(proxy), name_(name), monitor_(monitor), object_(object) {}
228 void (*monitor)(void*, A1, A2, A3),
230 : proxy_(proxy), name_(name), monitor_(monitor), object_(object) {}
250 void (*monitor)(void*, A1, A2, A3, A4),
252 : proxy_(proxy), name_(name), monitor_(monitor), object_(object) {}
275 void (*monitor)(void*, A1),
279 ConnectionType* result = new ConnectionType(proxy, name, monitor, objec
182 MonitorConnection(const Proxy& proxy, const char* name, void (*monitor)(void*, A1), void* object) argument
204 MonitorConnection(const Proxy& proxy, const char* name, void (*monitor)(void*, A1, A2), void* object) argument
226 MonitorConnection(const Proxy& proxy, const char* name, void (*monitor)(void*, A1, A2, A3), void* object) argument
248 MonitorConnection(const Proxy& proxy, const char* name, void (*monitor)(void*, A1, A2, A3, A4), void* object) argument
273 Monitor(const Proxy& proxy, const char* name, void (*monitor)(void*, A1), void* object) argument
289 Monitor(const Proxy& proxy, const char* name, void (*monitor)(void*, A1, A2), void* object) argument
308 Monitor(const Proxy& proxy, const char* name, void (*monitor)(void*, A1, A2, A3), void* object) argument
328 Monitor( const Proxy& proxy, const char* name, void (*monitor)(void*, A1, A2, A3, A4), void* object) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dperformance_monitor.h71 _mesa_SelectPerfMonitorCountersAMD(GLuint monitor, GLboolean enable,
76 _mesa_BeginPerfMonitorAMD(GLuint monitor);
79 _mesa_EndPerfMonitorAMD(GLuint monitor);
82 _mesa_GetPerfMonitorCounterDataAMD(GLuint monitor, GLenum pname,
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
H A Dexport_test.py124 monitor = learn.monitors.ExportMonitor(
133 regressor.fit(input_fn=_training_input_fn, steps=10, monitors=[monitor])
142 monitor = learn.monitors.ExportMonitor(
152 regressor.fit(input_fn=_training_input_fn, steps=10, monitors=[monitor])
166 monitor = learn.monitors.ExportMonitor(
175 regressor.fit(input_fn=_training_input_fn, steps=10, monitors=[monitor])
187 monitor = learn.monitors.ExportMonitor(
196 regressor.fit(input_fn=_training_input_fn, steps=10, monitors=[monitor])
211 monitor = learn.monitors.ExportMonitor(
219 regressor.fit(input_fn=_training_input_fn, steps=10, monitors=[monitor])
[all...]
/external/webrtc/webrtc/modules/desktop_capture/mac/
H A Ddesktop_configuration_monitor.cc61 DesktopConfigurationMonitor* monitor = local
63 monitor->DisplaysReconfigured(display, flags);
/external/ImageMagick/www/api/
H A Dmonitor.php15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, monitor, the, progress, of, an, image, operation, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
55 <p class="text-center"><a href="monitor.php#SetImageProgressMonitor">SetImageProgressMonitor</a> &bull; <a href="monitor.php#SetImageInfoProgressMonitor">SetImageInfoProgressMonitor</a></p>
59 <p>SetImageProgressMonitor() sets the image progress monitor to the specified method and returns the previous progress monitor if any. The progress monitor method looks like this:</p>
67 <p>If the progress monitor returns MagickFalse, the current operation is interrupted.</p>
88 <dd>Specifies a pointer to a method to monitor progress of an image operation. </dd>
98 <p>SetImageInfoProgressMonitor() sets the image_info progress monitor to the specified method and returns the previous progress monitor i
[all...]
/external/robolectric-shadows/robolectric/
H A DAndroid.mk22 robolectric-host-monitor-1.0.2-alpha1 \
63 robolectric-host-monitor-1.0.2-alpha1 \
99 robolectric-host-monitor-1.0.2-alpha1 \
139 robolectric-host-monitor-1.0.2-alpha1:$(call java-lib-files, robolectric-monitor-1.0.2-alpha1)
/external/tensorflow/tensorflow/python/keras/_impl/keras/
H A Dcallbacks_test.py75 monitor = 'val_loss'
92 monitor=monitor,
112 monitor=monitor,
129 monitor = 'val_acc'
133 monitor=monitor,
153 monitor=monitor,
[all...]
H A Dcallbacks.py392 monitor: quantity to monitor.
413 monitor='val_loss',
420 self.monitor = monitor
440 if 'acc' in self.monitor or self.monitor.startswith('fmeasure'):
454 current = logs.get(self.monitor)
457 'skipping.', self.monitor, RuntimeWarning)
462 ' saving model to %s' % (epoch + 1, self.monitor, sel
[all...]
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/mesa3d/include/c11/
H A Dthreads_win32.h100 CRITICAL_SECTION monitor;
175 EnterCriticalSection(&cond->monitor);
178 LeaveCriticalSection(&cond->monitor);
203 LeaveCriticalSection(&cond->monitor);
225 EnterCriticalSection(&cond->monitor);
249 LeaveCriticalSection(&cond->monitor);
344 DeleteCriticalSection(&cond->monitor);
361 InitializeCriticalSection(&cond->monitor);

Completed in 671 milliseconds

12345678