Searched refs:rule_text (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/libarchive/tar/ |
| H A D | subst.c | 53 add_substitution(struct bsdtar *bsdtar, const char *rule_text) in add_substitution() argument 78 const char delim = *rule_text; in add_substitution() 81 end_pattern = strchr(rule_text + 1, delim); in add_substitution() 85 rule_text, delim); in add_substitution() 87 pattern = malloc(end_pattern - rule_text); in add_substitution() 90 memcpy(pattern, rule_text + 1, end_pattern - rule_text - 1); in add_substitution() 91 pattern[end_pattern - rule_text - 1] = '\0'; in add_substitution() 105 rule_text, delim); in add_substitution()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 635 Status ParseFilterRule(llvm::StringRef rule_text) { in ParseFilterRule() argument 638 if (rule_text.empty()) { in ParseFilterRule() 664 auto action_end_pos = rule_text.find(' '); in ParseFilterRule() 668 rule_text.str().c_str()); in ParseFilterRule() 671 auto action = rule_text.substr(0, action_end_pos); in ParseFilterRule() 684 auto attribute_end_pos = rule_text.find(" ", action_end_pos + 1); in ParseFilterRule() 688 rule_text.str().c_str()); in ParseFilterRule() 691 auto attribute = rule_text.substr(action_end_pos + 1, in ParseFilterRule() 703 auto operation_end_pos = rule_text.find(" ", attribute_end_pos + 1); in ParseFilterRule() 704 auto operation = rule_text.substr( in ParseFilterRule() [all …]
|