Home
last modified time | relevance | path

Searched refs:app_pcre_re (Results 1 – 5 of 5) sorted by relevance

/dports/sysutils/gsmartcontrol/gsmartcontrol-1.1.3/src/applib/
H A Dsmartctl_parser.cpp133 pcrecpp::RE re = app_pcre_re("/^(Warning: ATA error count.*\\n)\\n/mi"); in parse_full()
175 pcrecpp::RE re3= app_pcre_re("/^(Read SCT Status failed: .*)$/mi"); in parse_full()
179 pcrecpp::RE re5= app_pcre_re("/^(Read SCT Data Table failed: .*)$/mi"); in parse_full()
182 pcrecpp::RE re6= app_pcre_re("/^(Write SCT Data Table failed: .*)$/mi"); in parse_full()
185 pcrecpp::RE re7= app_pcre_re("/^(Unexpected SCT status .*\\))$/mi"); in parse_full()
778 if (app_pcre_re("^ ").PartialMatch(sub) || app_pcre_re("^Error [0-9]+").PartialMatch(sub) in parse_section_data()
780 || app_pcre_re("^Index[ \t]+").PartialMatch(sub) in parse_section_data()
1467 pcrecpp::RE re_flag_descr = app_pcre_re("/^[\\t ]+\\|/mi"); in parse_section_data_subsection_attributes()
1492 pcrecpp::RE re = app_pcre_re("/^([^:\\n]+):[ \\t]*(.*)$/mi"); in parse_section_data_subsection_attributes()
1764 pcrecpp::RE re2 = app_pcre_re("/^No Errors Logged$/mi"); in parse_section_data_subsection_error_log()
[all …]
H A Dstorage_detector_win32.cpp223 …const pcrecpp::RE port_re = app_pcre_re("/^(/dev/[a-z0-9]+),([0-9]+)[ \\t]+-d[ \\t]+([^ \\t\\n]+)/… in get_scan_open_multiport_devices()
224 const pcrecpp::RE dev_re = app_pcre_re("/^/dev/sd([a-z])$/"); in get_scan_open_multiport_devices()
391 pcrecpp::RE noenc1_header_re = app_pcre_re("/^\\s*#\\s+Ch#/mi"); in areca_cli_get_drives()
392 pcrecpp::RE noenc2_header_re = app_pcre_re("/^\\s*#\\s+ModelName/mi"); in areca_cli_get_drives()
393 pcrecpp::RE exp_header_re = app_pcre_re("/^\\s*#\\s+Enc#/mi"); in areca_cli_get_drives()
414 …pcrecpp::RE noexp1_port_re = app_pcre_re("/^\\s*[0-9]+\\s+([0-9]+)\\s+([^\\s]+)/mi"); // matches … in areca_cli_get_drives()
415 …pcrecpp::RE noexp2_port_re = app_pcre_re("/^\\s*([0-9]+)\\s+([^\\s]+)/mi"); // matches port, mode… in areca_cli_get_drives()
416 …pcrecpp::RE exp_port_re = app_pcre_re("/^\\s*[0-9]+\\s+([0-9]+)\\s+(?:Slot#|SLOT\\s+)([0-9]+)\\s+(… in areca_cli_get_drives()
H A Dapp_pcrecpp.h76 inline pcrecpp::RE app_pcre_re(const std::string& perl_pattern) in app_pcre_re() function
113 return app_pcre_re(perl_pattern).PartialMatch(str,
174 return app_pcre_re(perl_pattern).GlobalReplace(replacement, &subject); in app_pcre_replace()
198 return app_pcre_re(perl_pattern).Replace(replacement, &subject); in app_pcre_replace_once()
H A Dstorage_detector_helpers.h89 pcrecpp::RE port_re = app_pcre_re("/^p([0-9]+)[ \\t]+([^\\t\\n]+)/mi"); in tw_cli_get_drives()
130 pcrecpp::RE controller_re = app_pcre_re("/^c([0-9]+)[ \\t]+/mi"); in tw_cli_get_controllers()
H A Dstorage_detector_linux.cpp262 pcrecpp::RE host_re = app_pcre_re("^Host: scsi([0-9]+)"); in read_proc_scsi_scsi_file()
309 …pcrecpp::RE parse_re = app_pcre_re("^([0-9-]+)\\s+([0-9-]+)\\s+([0-9-]+)\\s+([0-9-]+)\\s+([0-9-]+)… in read_proc_scsi_sg_devices_file()