OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fd_hook
(Results
1 - 2
of
2
) sorted by null
/external/bison/lib/
fd-hook.h
42
struct
fd_hook
struct
45
struct
fd_hook
*private_next;
46
struct
fd_hook
*private_prev;
49
int (*private_close_fn) (const struct
fd_hook
*remaining_list,
55
int (*private_ioctl_fn) (const struct
fd_hook
*remaining_list,
66
typedef int (*close_hook_fn) (const struct
fd_hook
*remaining_list,
72
extern int execute_close_hooks (const struct
fd_hook
*remaining_list,
86
typedef int (*ioctl_hook_fn) (const struct
fd_hook
*remaining_list,
92
extern int execute_ioctl_hooks (const struct
fd_hook
*remaining_list,
106
struct
fd_hook
*link)
[
all
...]
fd-hook.c
31
static struct
fd_hook
anchor = { &anchor, &anchor, NULL, NULL };
34
execute_close_hooks (const struct
fd_hook
*remaining_list, gl_close_fn primary,
52
execute_ioctl_hooks (const struct
fd_hook
*remaining_list, gl_ioctl_fn primary,
71
register_fd_hook (close_hook_fn close_hook, ioctl_hook_fn ioctl_hook, struct
fd_hook
*link)
98
unregister_fd_hook (struct
fd_hook
*link)
100
struct
fd_hook
*next = link->private_next;
101
struct
fd_hook
*prev = link->private_prev;
Completed in 169 milliseconds