Lines Matching full:flag
54 * tep_set_flag - set event parser flag
56 * @flag: flag, or combination of flags to be set
59 * This sets a flag or combination of flags from enum tep_flag
61 void tep_set_flag(struct tep_handle *tep, int flag) in tep_set_flag() argument
64 tep->flags |= flag; in tep_set_flag()
68 * tep_clear_flag - clear event parser flag
70 * @flag: flag to be cleared
72 * This clears a tep flag
74 void tep_clear_flag(struct tep_handle *tep, enum tep_flag flag) in tep_clear_flag() argument
77 tep->flags &= ~flag; in tep_clear_flag()
81 * tep_test_flag - check the state of event parser flag
83 * @flag: flag to be checked
85 * This returns the state of the requested tep flag.
86 * Returns: true if the flag is set, false otherwise.
88 bool tep_test_flag(struct tep_handle *tep, enum tep_flag flag) in tep_test_flag() argument
91 return tep->flags & flag; in tep_test_flag()
321 * tep_set_test_filters - set a flag to test a filter string
323 * @test_filters: the new value of the test_filters flag
325 * This sets a flag to test a filter string. If this flag is set, when