Home
last modified time | relevance | path

Searched refs:action2 (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/netpfil/ipfw/
H A Dip_fw_log.c108 char action2[92], proto[128], fragment[32], mark_str[24]; in ipfw_log_syslog() local
133 snprintf(SNPARGS(action2, 0), "Altq %d", in ipfw_log_syslog()
140 action = action2; in ipfw_log_syslog()
154 snprintf(SNPARGS(action2, 0), "Unreach %d", in ipfw_log_syslog()
164 snprintf(SNPARGS(action2, 0), "Unreach %d", in ipfw_log_syslog()
175 snprintf(SNPARGS(action2, 0), "Divert %d", in ipfw_log_syslog()
179 snprintf(SNPARGS(action2, 0), "Tee %d", in ipfw_log_syslog()
183 snprintf(SNPARGS(action2, 0), "SetDscp %d", in ipfw_log_syslog()
187 snprintf(SNPARGS(action2, 0), "SetFib %d", in ipfw_log_syslog()
191 snprintf(SNPARGS(action2, 0), "SkipTo %d", in ipfw_log_syslog()
[all …]
/freebsd/usr.sbin/moused/moused/
H A Dmoused.c933 mousestatus_t action2; /* mapped action */ in moused() local
948 bzero(&action2, sizeof(action2)); in moused()
1109 r_map(&action, &action2, &r->btstate); in moused()
1111 action2.button, action2.dx, action2.dy, action2.dz); in moused()
1118 r_vscroll(&r->scroll, &action2); in moused()
1123 action.dz || action2.dz) in moused()
1126 if (r_drift (&r->drift, &action2)) in moused()
1133 r_click(&action2, &r->btstate); in moused()
1135 if (action2.flags & MOUSE_POSCHANGED) in moused()
1136 r_move(&action2, &r->accel); in moused()
[all …]
/freebsd/sys/dev/mlx5/mlx5_core/
H A Dmlx5_fs_core.c1607 u32 action2 = act2->action; in check_conflicting_actions() local
1610 xored_actions = action1 ^ action2; in check_conflicting_actions()
1614 action2 == MLX5_FLOW_CONTEXT_ACTION_COUNT) in check_conflicting_actions()
H A Dmlx5_fs_tree.c
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md3131 .WillOnce(action2);
3135 execute `action1` in thread 1 and `action2` in thread 2.
3139 that the execution of `action1` and `action2` in the above example *may*
3141 `action1` and `action2` to make the test thread-safe.