Searched refs:rule_text (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/libarchive/tar/
H A Dsubst.c70 add_substitution(struct bsdtar *bsdtar, const char *rule_text) argument
95 if (*rule_text == '\0')
97 end_pattern = strchr(rule_text + 1, *rule_text);
101 pattern = malloc(end_pattern - rule_text);
104 memcpy(pattern, rule_text + 1, end_pattern - rule_text - 1);
105 pattern[end_pattern - rule_text - 1] = '\0';
115 end_pattern = strchr(start_subst, *rule_text);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp638 Status ParseFilterRule(llvm::StringRef rule_text) { argument
641 if (rule_text.empty()) {
642 error.SetErrorString("invalid rule_text");
667 auto action_end_pos = rule_text.find(" ");
671 rule_text.str().c_str());
674 auto action = rule_text.substr(0, action_end_pos);
686 auto attribute_end_pos = rule_text.find(" ", action_end_pos + 1);
690 rule_text.str().c_str());
693 auto attribute = rule_text.substr(action_end_pos + 1,
704 auto operation_end_pos = rule_text
[all...]

Completed in 123 milliseconds