Home
last modified time | relevance | path

Searched refs:filter_block (Results 1 – 4 of 4) sorted by relevance

/external/minijail/
Dsyscall_filter.h18 struct filter_block { struct
22 struct filter_block *next; argument
23 struct filter_block *last; argument
29 struct filter_block *compile_policy_line(int nr, const char *policy_line, argument
33 int compile_file(FILE *policy_file, struct filter_block *head,
34 struct filter_block **arg_blocks, struct bpf_labels *labels,
40 struct filter_block *new_filter_block(void);
41 int flatten_block_list(struct filter_block *head, struct sock_filter *filter,
43 void free_block_list(struct filter_block *head);
Dsyscall_filter.c53 struct filter_block *new_filter_block(void) in new_filter_block()
55 struct filter_block *block = calloc(1, sizeof(struct filter_block)); in new_filter_block()
65 void append_filter_block(struct filter_block *head, struct sock_filter *instrs, in append_filter_block()
68 struct filter_block *new_last; in append_filter_block()
92 void extend_filter_block_list(struct filter_block *list, in extend_filter_block_list()
93 struct filter_block *another) in extend_filter_block_list()
105 void append_ret_kill(struct filter_block *head) in append_ret_kill()
112 void append_ret_trap(struct filter_block *head) in append_ret_trap()
119 void append_ret_errno(struct filter_block *head, int errno_val) in append_ret_errno()
126 void append_allow_syscall(struct filter_block *head, int nr) in append_allow_syscall()
[all …]
Dsyscall_filter_unittest.cc349 struct filter_block* block = in TEST_F()
359 struct filter_block* block = in TEST_F()
369 struct filter_block* block = in TEST_F()
379 struct filter_block* block = in TEST_F()
388 struct filter_block *block = in TEST_F()
396 struct filter_block *curr_block = block; in TEST_F()
429 struct filter_block *block = in TEST_F()
437 struct filter_block *curr_block = block; in TEST_F()
470 struct filter_block *block = in TEST_F()
478 struct filter_block *curr_block = block; in TEST_F()
[all …]
/external/webrtc/webrtc/common_audio/
Dsparse_fir_filter_unittest.cc147 SparseFIRFilter filter_block(kCoeffs, in TEST() local
151 filter_block.Filter(kInput, arraysize(kInput), output_block_based); in TEST()