OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Watcher
(Results
1 - 8
of
8
) sorted by null
/external/syzkaller/vendor/google.golang.org/grpc/naming/
naming.go
51
// Resolver creates a
Watcher
for a target to track its resolution changes.
55
// Resolve creates a
Watcher
for target.
56
Resolve(target string) (
Watcher
, error)
59
//
Watcher
watches for the updates on the specified target.
62
type
Watcher
interface {
65
// return an error if and only if
Watcher
cannot recover.
67
// Close closes the
Watcher
.
/external/libchrome/mojo/public/java/system/src/org/chromium/mojo/system/
Watcher.java
12
public interface
Watcher
{
14
* Callback passed to {@link
Watcher
#start}.
/external/libchrome/base/files/
file_descriptor_watcher_posix.cc
35
// If the MessageLoopForIO is deleted before
Watcher
::StartWatching() runs,
37
//
Watcher
::StartWatching() runs but before the DeleteSoon task runs,
38
// |watcher_| is deleted from
Watcher
::WillDestroyCurrentMessageLoop().
45
class FileDescriptorWatcher::Controller::
Watcher
49
Watcher
(WeakPtr<Controller> controller, MessagePumpForIO::Mode mode, int fd);
50
~
Watcher
() override;
72
// The Controller that created this
Watcher
.
75
// Whether this
Watcher
is notified when |fd_| becomes readable or writable
86
// Whether this
Watcher
was registered as a DestructionObserver on the
90
DISALLOW_COPY_AND_ASSIGN(
Watcher
);
[
all
...]
/external/tensorflow/tensorflow/core/framework/
op.h
95
//
Watcher
, a function object.
96
// The
watcher
, if set by SetWatcher(), is called every time an op is
97
// registered via the Register function. The
watcher
is passed the Status
99
// itself if it was successfully built. A
watcher
returns a Status which is in
101
typedef std::function<Status(const Status&, const OpDef&)>
Watcher
;
103
// An OpRegistry object has only one
watcher
. This interface is not thread
104
// safe, as different clients are free to set the
watcher
any time.
111
// Returns a non-OK status if a non-null
watcher
is over-written by another
112
// non-null
watcher
.
113
Status SetWatcher(const
Watcher
& watcher)
[
all
...]
/cts/tests/contentsuggestions/src/android/contentsuggestions/cts/
CtsContentSuggestionsService.java
39
private static
Watcher
sWatcher;
113
public static
Watcher
setWatcher() {
115
throw new IllegalStateException("Set
watcher
with
watcher
already set");
117
sWatcher = new
Watcher
();
125
public static final class
Watcher
{
/external/owasp/sanitizer/src/tests/org/owasp/html/
CssFuzzerTest.java
59
final class
Watcher
implements Runnable {
87
Watcher
watcher
= new
Watcher
();
local
106
synchronized (
watcher
) {
107
watcher
.input = randomCss;
108
watcher
.started = System.nanoTime();
111
watcherThread = new Thread(
watcher
);
168
synchronized (
watcher
) {
169
watcher
.input = null
[
all
...]
/external/python/cpython3/Lib/test/test_asyncio/
test_subprocess.py
461
# manually to avoid a warning when the
watcher
is detached.
513
Watcher
= None
521
watcher
= self.
Watcher
()
522
watcher
.attach_loop(self.loop)
523
policy.set_child_watcher(
watcher
)
529
Watcher
= unix_events.SafeChildWatcher
534
Watcher
= unix_events.FastChildWatcher
/frameworks/av/media/codec2/sfplugin/
CCodecConfig.h
267
struct
Watcher
{
268
~
Watcher
() = default;
290
Watcher
(C2Param::Index index, const CCodecConfig *parent)
303
* Returns a
watcher
object for a parameter.
306
Watcher
<T> watch(C2Param::Index index = T::PARAM_TYPE) const {
310
return
Watcher
<T>(index, this);
Completed in 1288 milliseconds