OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kqueue
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/base/process/
kill_mac.cc
33
// This function takes two approaches: first, it tries to use
kqueue
to
34
// observe when the process exits. kevent can monitor a
kqueue
with a
36
// time. Once the
kqueue
indicates the process has exited, waitpid will reap
37
// the exited child. If the
kqueue
doesn't provide an exit event notification,
38
// before the timeout expires, or if the
kqueue
fails or misbehaves, the
46
// time that
kqueue
will no longer recognize it and when it becomes an actual
48
// detected when
kqueue
indicates that the process is not running and a
53
// In the event that the
kqueue
misbehaves entirely, as it might under a
64
// to wait on a process that's not even a child is also a problem:
kqueue
will
72
// |child| has been reaped. Specifically, even if a
kqueue
, kevent, or othe
[
all
...]
kill_posix.cc
263
// Using
kqueue
on Mac so that we can wait on non-child processes.
271
int kq =
kqueue
();
273
DPLOG(ERROR) << "
kqueue
";
440
// fashion. (No
kqueue
on Linux), so we just loop and sleep.
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_kqueue.py
2
Tests for
kqueue
wrapper.
12
if not hasattr(select, "
kqueue
"):
17
kq = select.
kqueue
()
99
kq = select.
kqueue
()
100
kq2 = select.
kqueue
.fromfd(kq.fileno())
168
kq = select.
kqueue
()
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_kqueue.py
2
Tests for
kqueue
wrapper.
12
if not hasattr(select, "
kqueue
"):
17
kq = select.
kqueue
()
99
kq = select.
kqueue
()
100
kq2 = select.
kqueue
.fromfd(kq.fileno())
168
kq = select.
kqueue
()
/external/chromium_org/chrome/browser/mac/
relauncher.cc
174
// guaranteed to have set up its
kqueue
monitoring this process for exit.
182
// with the parent by setting up a
kqueue
to watch for it to exit, writing a
183
// byte to the pipe, and then waiting for the exit notification on the
kqueue
.
203
// Set up a
kqueue
to monitor the parent process for exit.
204
int kq =
kqueue
();
206
PLOG(ERROR) << "
kqueue
";
/external/chromium/third_party/libevent/
kqueue.c
1
/* $OpenBSD:
kqueue
.c,v 1.5 2002/07/10 14:41:31 art Exp $ */
89
"
kqueue
",
104
/* Disable
kqueue
when this environment variable is set */
113
if ((kq =
kqueue
()) == -1) {
114
event_warn("
kqueue
");
142
/* Check for Mac OS X
kqueue
bug. */
147
* If
kqueue
works, then kevent will succeed, and it will
148
* stick an error in events[0]. If
kqueue
is broken, then
155
event_warn("%s: detected broken
kqueue
; not using.", __func__);
configure
[
all
...]
/external/chromium_org/third_party/libevent/
kqueue.c
1
/* $OpenBSD:
kqueue
.c,v 1.5 2002/07/10 14:41:31 art Exp $ */
89
"
kqueue
",
104
/* Disable
kqueue
when this environment variable is set */
113
if ((kq =
kqueue
()) == -1) {
114
event_warn("
kqueue
");
142
/* Check for Mac OS X
kqueue
bug. */
147
* If
kqueue
works, then kevent will succeed, and it will
148
* stick an error in events[0]. If
kqueue
is broken, then
155
event_warn("%s: detected broken
kqueue
; not using.", __func__);
configure
[
all
...]
/external/chromium/base/files/
file_path_watcher_mac.cc
23
// Mac-specific file watcher implementation based on
kqueue
.
38
// The
kqueue
implementation will handle all of the items in the list above
298
// Iterate over events adding kevents for items that exist to the
kqueue
.
432
kqueue_ =
kqueue
();
434
PLOG(ERROR) << "
kqueue
";
/external/chromium_org/base/files/
file_path_watcher_kqueue.cc
32
// Mac-specific file watcher implementation based on
kqueue
.
47
// The
kqueue
implementation will handle all of the items in the list above
314
// Iterate over events adding kevents for items that exist to the
kqueue
.
455
kqueue_ =
kqueue
();
457
DPLOG(ERROR) << "
kqueue
";
501
DPLOG(ERROR) << "close
kqueue
";
/external/valgrind/main/coregrind/m_syswrap/
priv_syswrap-darwin.h
426
DECL_TEMPLATE(darwin,
kqueue
); // 362
syswrap-darwin.c
[
all
...]
/external/chromium/base/
process_util_posix.cc
775
// Using
kqueue
on Mac so that we can wait on non-child processes.
780
int kq =
kqueue
();
782
PLOG(ERROR) << "
kqueue
";
[
all
...]
Completed in 8359 milliseconds