Searched refs:ctrl_data (Results 1 – 2 of 2) sorted by relevance
/external/autotest/site_utils/presubmit_hooks/ |
D | check_control_files.py | 111 def CheckSuites(ctrl_data, test_name, useflags): argument 126 if (hasattr(ctrl_data, 'suite') and ctrl_data.suite and 127 ctrl_data.suite != 'manual'): 148 def CheckValidAttr(ctrl_data, whitelist, test_name): argument 161 if not (whitelist >= ctrl_data.attributes): 162 attribute_diff = ctrl_data.attributes - whitelist 187 def CheckRetry(ctrl_data, test_name): argument 196 if hasattr(ctrl_data, 'suite') and ctrl_data.suite: 197 suites = set(x.strip() for x in ctrl_data.suite.split(',') if x.strip()) 198 if ctrl_data.job_retries < 2 and SUITES_NEED_RETRY.intersection(suites): [all …]
|
/external/bsdiff/ |
D | patch_writer.cc | 181 auto ctrl_data = ctrl_stream->GetCompressedData(); in Close() local 189 if (!WriteHeader(types, ctrl_data.size(), diff_data.size())) in Close() 192 if (fwrite(ctrl_data.data(), 1, ctrl_data.size(), fp_) != ctrl_data.size()) { in Close()
|