Home
last modified time | relevance | path

Searched defs:inotify (Results 1 – 25 of 244) sorted by relevance

12345678910

/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/rjeczalik/notify/
H A Dwatcher_inotify.go41 type inotify struct { struct
46 epfd int // epoll descriptor
47 epes []unix.EpollEvent // epoll events
73 func (i *inotify) Watch(path string, e Event) error {
118 func (i *inotify) lazyinit() error {
148 func (i *inotify) epollinit() (err error) {
167 func (i *inotify) epollclose() (err error) {
190 func (i *inotify) loop(esch chan<- []*event) {
223 func (i *inotify) read() (es []*event) {
253 func (i *inotify) send(esch <-chan []*event) {
[all …]
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/rjeczalik/notify/
H A Dwatcher_inotify.go41 type inotify struct { struct
46 epfd int // epoll descriptor
47 epes []unix.EpollEvent // epoll events
73 func (i *inotify) Watch(path string, e Event) error {
118 func (i *inotify) lazyinit() error {
148 func (i *inotify) epollinit() (err error) {
167 func (i *inotify) epollclose() (err error) {
190 func (i *inotify) loop(esch chan<- []*event) {
223 func (i *inotify) read() (es []*event) {
253 func (i *inotify) send(esch <-chan []*event) {
[all …]
/dports/www/devd/devd-0.9/vendor/github.com/rjeczalik/notify/
H A Dwatcher_inotify.go41 type inotify struct { struct
46 epfd int // epoll descriptor
47 epes []unix.EpollEvent // epoll events
73 func (i *inotify) Watch(path string, e Event) error {
118 func (i *inotify) lazyinit() error {
148 func (i *inotify) epollinit() (err error) {
167 func (i *inotify) epollclose() (err error) {
190 func (i *inotify) loop(esch chan<- []*event) {
223 func (i *inotify) read() (es []*event) {
253 func (i *inotify) send(esch <-chan []*event) {
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/vendor/github.com/syncthing/notify/
H A Dwatcher_inotify.go41 type inotify struct { struct
46 epfd int // epoll descriptor
47 epes []unix.EpollEvent // epoll events
73 func (i *inotify) Watch(path string, e Event) error {
112 func (i *inotify) lazyinit() error {
142 func (i *inotify) epollinit() (err error) {
161 func (i *inotify) epollclose() (err error) {
184 func (i *inotify) loop(esch chan<- []*event) {
217 func (i *inotify) read() (es []*event) {
247 func (i *inotify) send(esch <-chan []*event) {
[all …]
/dports/devel/modd/modd-0.8/vendor/github.com/rjeczalik/notify/
H A Dwatcher_inotify.go41 type inotify struct { struct
46 epfd int // epoll descriptor
47 epes []unix.EpollEvent // epoll events
73 func (i *inotify) Watch(path string, e Event) error {
118 func (i *inotify) lazyinit() error {
148 func (i *inotify) epollinit() (err error) {
167 func (i *inotify) epollclose() (err error) {
190 func (i *inotify) loop(esch chan<- []*event) {
223 func (i *inotify) read() (es []*event) {
253 func (i *inotify) send(esch <-chan []*event) {
[all …]
/dports/devel/mutagen/mutagen-0.11.8/pkg/filesystem/watching/internal/third_party/notify/
H A Dwatcher_inotify.go72 type inotify struct { struct
78 epes []unix.EpollEvent // epoll events
104 func (i *inotify) Watch(path string, e Event) error {
149 func (i *inotify) lazyinit() error {
179 func (i *inotify) epollinit() (err error) {
198 func (i *inotify) epollclose() (err error) {
221 func (i *inotify) loop(esch chan<- []*event) {
254 func (i *inotify) read() (es []*event) {
284 func (i *inotify) send(esch <-chan []*event) {
299 func (i *inotify) transform(es []*event) []*event {
[all …]
/dports/mail/dovecot/dovecot-2.3.17/src/lib-storage/list/
H A Dmailbox-list-index-notify.c110 mailbox_list_index_notify_init_inbox(struct mailbox_list_notify_index *inotify) in mailbox_list_index_notify_init_inbox()
127 struct mailbox_list_notify_index *inotify; in mailbox_list_index_notify_init() local
176 struct mailbox_list_notify_index *inotify = in mailbox_list_index_notify_deinit() local
206 notify_lookup_guid(struct mailbox_list_notify_index *inotify, in notify_lookup_guid()
238 static void notify_update_stat(struct mailbox_list_notify_index *inotify, in notify_update_stat()
280 static bool notify_ext_rec(struct mailbox_list_notify_index *inotify, in notify_ext_rec()
727 mailbox_list_index_notify_new(struct mailbox_list_notify_index *inotify, in mailbox_list_index_notify_new()
833 struct mailbox_list_notify_index *inotify = in mailbox_list_index_notify_next() local
864 static void notify_now_callback(struct mailbox_list_notify_index *inotify) in notify_now_callback()
922 struct mailbox_list_notify_index *inotify = in mailbox_list_index_notify_wait() local
[all …]
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/inotify-0.9.6/tests/
H A Dmain.rs30 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
52 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
79 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
90 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
111 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
132 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
224 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/sysutils/vector/vector-0.10.0/cargo-crates/inotify-0.7.0/tests/
H A Dmain.rs34 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
55 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
81 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
92 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
113 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
134 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
226 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/devel/desed/desed-1.2.0/cargo-crates/inotify-0.8.3/tests/
H A Dmain.rs30 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
52 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
79 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
90 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
111 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
132 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
224 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/editors/xi-core/xi-editor-0.3.0/rust/cargo-crates/inotify-0.6.1/tests/
H A Dmain.rs34 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
55 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
81 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
92 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
113 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
134 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
226 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/devel/texlab/texlab-3.3.0/cargo-crates/inotify-0.9.3/tests/
H A Dmain.rs30 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
52 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
79 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
90 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
111 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
132 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
224 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/textproc/mdbook/mdBook-0.4.13/cargo-crates/inotify-0.7.1/tests/
H A Dmain.rs34 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
55 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
81 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
92 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
113 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
134 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
226 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/www/zola/zola-0.15.2/cargo-crates/inotify-0.7.1/tests/
H A Dmain.rs34 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
55 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
81 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
92 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
113 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
134 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
226 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/lang/rust/rustc-1.58.1-src/vendor/inotify/tests/
H A Dmain.rs30 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
52 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
79 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
90 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
111 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
132 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
224 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/sysutils/flowgger/flowgger-0.2.10/cargo-crates/inotify-0.6.1/tests/
H A Dmain.rs34 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file() localVariable
55 let mut inotify = Inotify::init().unwrap(); in it_should_watch_a_file_async() localVariable
81 let mut inotify = Inotify::init().unwrap(); in it_should_return_immediately_if_no_events_are_available() localVariable
92 let mut inotify = Inotify::init().unwrap(); in it_should_convert_the_name_into_an_os_str() localVariable
113 let mut inotify = Inotify::init().unwrap(); in it_should_set_name_to_none_if_it_is_empty() localVariable
134 let mut inotify = Inotify::init().unwrap(); in it_should_not_accept_watchdescriptors_from_other_instances() localVariable
226 let mut inotify = unsafe { <Inotify as FromRawFd>::from_raw_fd(fd) }; in it_should_implement_raw_fd_traits_correctly() localVariable
/dports/devel/ivykis/ivykis-0.42.4/src/
H A Div_inotify.c150 struct iv_inotify *inotify = w->inotify; in iv_inotify_watch_register() local
161 struct iv_inotify *inotify = w->inotify; in iv_inotify_watch_unregister() local
/dports/sysutils/syslog-ng/syslog-ng-3.35.1/lib/ivykis/src/
H A Div_inotify.c150 struct iv_inotify *inotify = w->inotify; in iv_inotify_watch_register() local
161 struct iv_inotify *inotify = w->inotify; in iv_inotify_watch_unregister() local
/dports/devel/glib20/glib-2.70.4/gio/inotify/
H A Dmeson.build10 inotify_lib = static_library('inotify', build
/dports/sysutils/vector/vector-0.10.0/cargo-crates/inotify-0.7.0/examples/
H A Dissue-120-workaround.rs13 let mut inotify = Inotify::init()?; in main() localVariable
/dports/textproc/mdbook/mdBook-0.4.13/cargo-crates/inotify-0.7.1/examples/
H A Dissue-120-workaround.rs13 let mut inotify = Inotify::init()?; in main() localVariable
/dports/www/zola/zola-0.15.2/cargo-crates/inotify-0.7.1/examples/
H A Dissue-120-workaround.rs13 let mut inotify = Inotify::init()?; in main() localVariable
/dports/x11/alacritty/alacritty-0.9.0/cargo-crates/inotify-0.7.1/examples/
H A Dissue-120-workaround.rs13 let mut inotify = Inotify::init()?; in main() localVariable
/dports/net/gscloud/gscloud-0.11.0/vendor/k8s.io/utils/inotify/
H A Dinotify_linux_test.go7 package inotify package
/dports/security/vault/vault-1.8.2/vendor/k8s.io/utils/inotify/
H A Dinotify_linux_test.go7 package inotify package

12345678910