Lines Matching +full:enum +full:- +full:as +full:- +full:flags
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
20 enum hwtstamp_provider_qualifier {
27 /* SO_TIMESTAMPING flags */
28 enum {
50 SOF_TIMESTAMPING_MASK = (SOF_TIMESTAMPING_LAST - 1) |
55 * SO_TIMESTAMPING flags are either for recording a packet timestamp or for
57 * Recording flags can be set both via socket options and control messages.
66 * struct so_timestamping - SO_TIMESTAMPING parameter
68 * @flags: SO_TIMESTAMPING flags
73 int flags; member
78 * struct hwtstamp_config - %SIOCGHWTSTAMP and %SIOCSHWTSTAMP parameter
80 * @flags: one of HWTSTAMP_FLAG_*
91 int flags; member
96 /* possible values for hwtstamp_config->flags */
97 enum hwtstamp_flags {
100 * PHC index. Note this PHC index is not stable as when there
108 HWTSTAMP_FLAG_MASK = (HWTSTAMP_FLAG_LAST - 1) | HWTSTAMP_FLAG_LAST
111 /* possible values for hwtstamp_config->tx_type */
112 enum hwtstamp_tx_types {
129 * Enables time stamping for outgoing packets just as
138 * Same as HWTSTAMP_TX_ONESTEP_SYNC, but also enables time
149 /* possible values for hwtstamp_config->rx_filter */
150 enum hwtstamp_rx_filters {
202 * SO_TXTIME gets a struct sock_txtime with flags being an integer bit
205 enum txtime_flags {
210 SOF_TXTIME_FLAGS_MASK = (SOF_TXTIME_FLAGS_LAST - 1) |
216 __u32 flags; /* as defined by enum txtime_flags */ member