Lines Matching defs:flags

78 Each port may have capability flags, which specify the read/write
212 <li>Event flags. It describes various conditions:
228 The flags field consists of bit flags which
274 Which format is used is determined by the event flags.
514 Each ALSA port can have capability flags.
515 The most basic capability flags are
524 flags must be set together with read/write capabilities above.
535 Obviously, these flags have no influence
538 Note that these flags are not necessary if the client subscribes itself
2286 return (info->flags & SNDRV_SEQ_PORT_FLG_GIVEN_PORT) ? 1 : 0;
2299 return (info->flags & SNDRV_SEQ_PORT_FLG_TIMESTAMP) ? 1 : 0;
2312 return (info->flags & SNDRV_SEQ_PORT_FLG_TIME_REAL) ? 1 : 0;
2482 info->flags |= SNDRV_SEQ_PORT_FLG_GIVEN_PORT;
2484 info->flags &= ~SNDRV_SEQ_PORT_FLG_GIVEN_PORT;
2498 info->flags |= SNDRV_SEQ_PORT_FLG_TIMESTAMP;
2500 info->flags &= ~SNDRV_SEQ_PORT_FLG_TIMESTAMP;
2514 info->flags |= SNDRV_SEQ_PORT_FLG_TIME_REAL;
2516 info->flags &= ~SNDRV_SEQ_PORT_FLG_TIME_REAL;
2573 * The capability bit flags are defined as follows:
2803 return (info->flags & SNDRV_SEQ_PORT_SUBS_EXCLUSIVE) ? 1 : 0;
2816 return (info->flags & SNDRV_SEQ_PORT_SUBS_TIMESTAMP) ? 1 : 0;
2829 return (info->flags & SNDRV_SEQ_PORT_SUBS_TIME_REAL) ? 1 : 0;
2882 info->flags |= SNDRV_SEQ_PORT_SUBS_EXCLUSIVE;
2884 info->flags &= ~SNDRV_SEQ_PORT_SUBS_EXCLUSIVE;
2898 info->flags |= SNDRV_SEQ_PORT_SUBS_TIMESTAMP;
2900 info->flags &= ~SNDRV_SEQ_PORT_SUBS_TIMESTAMP;
2914 info->flags |= SNDRV_SEQ_PORT_SUBS_TIME_REAL;
2916 info->flags &= ~SNDRV_SEQ_PORT_SUBS_TIME_REAL;
3128 return (info->flags & SNDRV_SEQ_PORT_SUBS_EXCLUSIVE) ? 1 : 0;
3141 return (info->flags & SNDRV_SEQ_PORT_SUBS_TIMESTAMP) ? 1 : 0;
3154 return (info->flags & SNDRV_SEQ_PORT_SUBS_TIMESTAMP) ? 1 : 0;
3351 * \brief Get the conditional bit flags of a queue_info container
3353 * \return conditional bit flags
3360 return info->flags;
3403 * \brief Set the conditional bit flags of a queue_info container
3405 * \param flags conditional bit flags
3409 void snd_seq_queue_info_set_flags(snd_seq_queue_info_t *info, unsigned int flags)
3412 info->flags = flags;
4168 ev->flags &= ~SNDRV_SEQ_EVENT_UMP;
4794 * \param flags removal condition bits
4798 void snd_seq_remove_events_set_condition(snd_seq_remove_events_t *info, unsigned int flags)
4801 info->remove_mode = flags;