Home
last modified time | relevance | path

Searched refs:report (Results 1 - 25 of 427) sorted by relevance

12345678910>>...18

/foundation/communication/bluetooth_service/services/bluetooth/stack/src/gap/
H A Dgap_le_scan.c39 void *report; member
66 HciLeAdvertisingReport *report = info->report; in GapFreeReportRPAResolveInfo() local
67 MEM_MALLOC.free(report->data); in GapFreeReportRPAResolveInfo()
71 HciLeExtendedAdvertisingReport *report = info->report; in GapFreeReportRPAResolveInfo() local
72 MEM_MALLOC.free(report->data); in GapFreeReportRPAResolveInfo()
79 MEM_MALLOC.free(info->report); in GapFreeReportRPAResolveInfo()
137 static void GapLeSetExAdvReportParam(GapExAdvReportParam *advParam, const HciLeExtendedAdvertisingReport *report) in GapLeSetExAdvReportParam() argument
139 if (advParam != NULL && report ! in GapLeSetExAdvReportParam()
158 HciLeAdvertisingReport *report = info->report; GapCallbackRPAAdvertisingReport() local
185 HciLeExtendedAdvertisingReport *report = info->report; GapCallbackRPAExtendedAdvertisingReport() local
215 HciLeDirectedAdvertisingReport *report = info->report; GapCallbackRPADirectedAdvertisingReport() local
327 void *report = NULL; GapLeAllocAdvReportRPAResolveInfo() local
392 GapOnLeAdvertisingReportEventProcessOnce(const HciLeAdvertisingReport *report) GapOnLeAdvertisingReportEventProcessOnce() argument
498 GapOnLeExtendedAdvertisingReportEventProcessOnce(const HciLeExtendedAdvertisingReport *report) GapOnLeExtendedAdvertisingReportEventProcessOnce() argument
548 GapOnLeDirectedAdvertisingReportProcessOnce(const HciLeDirectedAdvertisingReport *report) GapOnLeDirectedAdvertisingReportProcessOnce() argument
[all...]
/base/powermgr/thermal_manager/test/unittest/src/
H A Dfan_fault_detect_test.cpp107 void FanFaultDetectTest::GetFaultId(int64_t& faultId, const FanSensorInfo& report) in GetFaultId() argument
128 fanFaultDetect->OnFanSensorInfoChanged(report); in GetFaultId()
151 FanSensorInfo report; in HWTEST_F() local
152 report.insert(std::make_pair(FAN, FAN_SLOW_SPEED)); in HWTEST_F()
153 report.insert(std::make_pair(SOC, TEMP_HIGH)); in HWTEST_F()
154 report.insert(std::make_pair(GPU, TEMP_HIGH)); in HWTEST_F()
155 GetFaultId(faultId, report); in HWTEST_F()
169 FanSensorInfo report; in HWTEST_F() local
170 report.insert(std::make_pair(FAN, FAN_SLOW_SPEED)); in HWTEST_F()
171 report in HWTEST_F()
187 FanSensorInfo report; HWTEST_F() local
205 FanSensorInfo report; HWTEST_F() local
224 FanSensorInfo report; HWTEST_F() local
242 FanSensorInfo report; HWTEST_F() local
260 FanSensorInfo report; HWTEST_F() local
278 FanSensorInfo report; HWTEST_F() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DMachineVerifier.cpp244 void report(const char *msg, const MachineFunction *MF);
245 void report(const char *msg, const MachineBasicBlock *MBB);
246 void report(const char *msg, const MachineInstr *MI);
247 void report(const char *msg, const MachineOperand *MO, unsigned MONum,
354 // then report an error. in verifyProperties()
358 report("Function has NoVRegs property but there are VReg operands", &MF); in verifyProperties()
415 report("Bad instruction parent pointer", &*MFI); in verify()
422 report("Missing BundledPred flag, " in verify()
426 report("BundledPred flag is set, " in verify()
437 report("N in verify()
475 void MachineVerifier::report(const char *msg, const MachineFunction *MF) { report() function in MachineVerifier
490 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { report() function in MachineVerifier
501 void MachineVerifier::report(const char *msg, const MachineInstr *MI) { report() function in MachineVerifier
510 void MachineVerifier::report(const char *msg, const MachineOperand *MO, report() function in MachineVerifier
[all...]
/third_party/libabigail/include/
H A Dabg-reporter.h64 report(const type_decl_diff& d, std::ostream& out,
68 report(const enum_diff& d, std::ostream& out,
72 report(const typedef_diff& d, std::ostream& out,
76 report(const qualified_type_diff& d, std::ostream& out,
80 report(const distinct_diff& d, std::ostream& out,
84 report(const pointer_diff& d, std::ostream& out,
88 report(const reference_diff& d, std::ostream& out,
92 report(const array_diff& d, std::ostream& out,
96 report(const base_diff& d, std::ostream& out,
100 report(cons
[all...]
/base/powermgr/thermal_manager/services/native/src/thermal_policy/
H A Dfan_fault_detect.cpp26 void FanFaultDetect::OnFanSensorInfoChanged(const FanSensorInfo& report) in OnFanSensorInfoChanged() argument
28 CheckFanFault(report); in OnFanSensorInfoChanged()
31 void FanFaultDetect::CheckFanFault(const FanSensorInfo& report) in CheckFanFault() argument
35 CheckFanTooSlow(report, faultInfo.second); in CheckFanFault()
37 CheckFanTooFast(report, faultInfo.second); in CheckFanFault()
42 void FanFaultDetect::CheckFanTooSlow(const FanSensorInfo& report, const FanSensorInfo& config) in CheckFanTooSlow() argument
44 if (!CheckFanSensorInfo(report, config)) { in CheckFanTooSlow()
53 if (report.at(sensorInfo.first) > sensorInfo.second) { in CheckFanTooSlow()
58 if (report.at(FAN) < config.at(FAN) && tempHigh) { in CheckFanTooSlow()
59 std::string reportInfo = FormatReportInfo(report, confi in CheckFanTooSlow()
65 CheckFanTooFast(const FanSensorInfo& report, const FanSensorInfo& config) CheckFanTooFast() argument
88 CheckFanSensorInfo(const FanSensorInfo& report, const FanSensorInfo& config) CheckFanSensorInfo() argument
118 FormatReportInfo(const FanSensorInfo& report, const FanSensorInfo& config) FormatReportInfo() argument
[all...]
/third_party/node/deps/openssl/openssl/util/
H A Dcheck-format.pl32 # -l | --sloppy-bodylen do not report function body length > 200
33 # -s | --sloppy-space do not report whitespace nits
34 # -c | --sloppy-comment do not report indentation of comments
42 # -h | --sloppy-hang when checking hanging indentation, do not report
47 # -e | --eol-comment report needless intermediate multiple consecutive spaces also before end-of-line comments
317 sub report { subroutine
374 report("indent = $count != $comment_indent within multi-line comment")
378 report("indent = ".($count + $tweak)." != $comment_indent at end of multi-line comment")
412 report("intra-line comment indent = $count != $ref_indent") if $in_comment == 0;
413 report("mult
[all...]
/third_party/openssl/util/
H A Dcheck-format.pl32 # -l | --sloppy-bodylen do not report function body length > 200
33 # -s | --sloppy-space do not report whitespace nits
34 # -c | --sloppy-comment do not report indentation of comments
42 # -h | --sloppy-hang when checking hanging indentation, do not report
47 # -e | --eol-comment report needless intermediate multiple consecutive spaces also before end-of-line comments
317 sub report { subroutine
374 report("indent = $count != $comment_indent within multi-line comment")
378 report("indent = ".($count + $tweak)." != $comment_indent at end of multi-line comment")
412 report("intra-line comment indent = $count != $ref_indent") if $in_comment == 0;
413 report("mult
[all...]
/third_party/cJSON/tests/unity/auto/
H A Dunity_test_summary.rb17 attr_reader :report, :total_tests, :failures, :ignored
21 @report = ''
50 @report += "\n"
51 @report += "--------------------------\n"
52 @report += "UNITY IGNORED TEST SUMMARY\n"
53 @report += "--------------------------\n"
54 @report += ignore_output.flatten.join("\n")
58 @report += "\n"
59 @report += "--------------------------\n"
60 @report
[all...]
H A Dunity_test_summary.py15 self.report = ''
46 self.report += "\n"
47 self.report += "--------------------------\n"
48 self.report += "UNITY IGNORED TEST SUMMARY\n"
49 self.report += "--------------------------\n"
50 self.report += "\n".join(ignore_output)
53 self.report += "\n"
54 self.report += "--------------------------\n"
55 self.report += "UNITY FAILED TEST SUMMARY\n"
56 self.report
[all...]
/third_party/unity/auto/
H A Dunity_test_summary.rb17 attr_reader :report, :total_tests, :failures, :ignored
21 @report = ''
50 @report += "\n"
51 @report += "--------------------------\n"
52 @report += "UNITY IGNORED TEST SUMMARY\n"
53 @report += "--------------------------\n"
54 @report += ignore_output.flatten.join("\n")
58 @report += "\n"
59 @report += "--------------------------\n"
60 @report
[all...]
H A Dunity_test_summary.py15 self.report = ''
46 self.report += "\n"
47 self.report += "--------------------------\n"
48 self.report += "UNITY IGNORED TEST SUMMARY\n"
49 self.report += "--------------------------\n"
50 self.report += "\n".join(ignore_output)
53 self.report += "\n"
54 self.report += "--------------------------\n"
55 self.report += "UNITY FAILED TEST SUMMARY\n"
56 self.report
[all...]
/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/
H A Ddevice_param_collect_test.cpp66 sptr<IReport> report; in HWTEST_F() local
68 std::make_shared<DeviceParamCollect>(report); in HWTEST_F()
88 sptr<IReport> report; in HWTEST_F() local
90 std::make_shared<DeviceParamCollect>(report); in HWTEST_F()
110 sptr<IReport> report; in HWTEST_F() local
112 std::make_shared<DeviceParamCollect>(report); in HWTEST_F()
126 sptr<IReport> report; in HWTEST_F() local
127 sptr<DeviceParamCollect> deviceParamCollect = new DeviceParamCollect(report); in HWTEST_F()
143 sptr<IReport> report; in HWTEST_F() local
144 sptr<DeviceParamCollect> deviceParamCollect = new DeviceParamCollect(report); in HWTEST_F()
160 sptr<IReport> report; HWTEST_F() local
179 sptr<IReport> report; HWTEST_F() local
196 sptr<IReport> report; HWTEST_F() local
212 sptr<IReport> report; HWTEST_F() local
229 sptr<IReport> report; HWTEST_F() local
250 sptr<IReport> report; HWTEST_F() local
276 sptr<IReport> report; HWTEST_F() local
[all...]
/third_party/node/test/parallel/
H A Dtest-runner-coverage.js25 const report = [
26 '# start of coverage report',
33 '# end of coverage report',
37 return report.replaceAll('/', '\\');
40 return report;
45 const report = [
46 '\u2139 start of coverage report',
56 '\u2139 end of coverage report',
61 return report.replaceAll('/', '\\');
64 return report;
[all...]
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_dnsresolv_test/
H A Dnetsys_net_dns_health_data_test.cpp50 NetDnsHealthReport report; member in OHOS::NetsysNative::NetDnsHealthReportTest
60 report.netid_ = 1; in SetUp()
61 report.uid_ = 1; in SetUp()
62 report.appid_ = 1; in SetUp()
63 report.host_ = "test.host"; in SetUp()
64 report.type_ = 1; in SetUp()
65 report.result_ = true; in SetUp()
73 EXPECT_EQ(report.Marshalling(parcel), false); in HWTEST_F()
79 EXPECT_EQ(report.Marshalling(parcel), false); in HWTEST_F()
85 EXPECT_EQ(report in HWTEST_F()
[all...]
/third_party/node/test/common/
H A Dreport.js12 // report.<date>.<time>.<pid>.<tid>.<seq>.json
13 const format = '^report\\.\\d+\\.\\d+\\.' + pid + '\\.\\d+\\.\\d+\\.json$';
27 const report = fs.readFileSync(filepath, 'utf8');
28 if (process.report.compact) {
29 const end = report.indexOf('\n');
30 assert.strictEqual(end, report.length - 1);
32 validateContent(JSON.parse(report), fields);
35 function validateContent(report, fields = []) {
36 if (typeof report === 'string') {
38 report
[all...]
/third_party/curl/scripts/
H A Dmk-ca-bundle.pl208 sub report($@) { subroutine
310 report "SHA256 of old file: $oldhash";
313 report "Downloading $txt ...";
319 report "Get certdata with curl!";
325 report "Downloaded $txt";
328 report "Failed downloading via HTTPS with curl";
330 report "Failed to remove '$txt': $!";
335 report "curl lacks https support";
339 report "curl not found";
346 report "Fallin
[all...]
/third_party/node/test/report/
H A Dtest-report-writereport.js3 // Test producing a report via API call, using the no-hooks/no-signal interface.
9 const helper = require('../common/report');
13 process.report.directory = tmpdir.path;
25 process.report.writeReport();
31 process.report.writeReport(new Error('test error'));
39 process.report.writeReport(error);
46 process.report.writeReport(error);
52 const file = process.report.writeReport('custom-name-1.json');
62 const file = process.report.writeReport('custom-name-2.json',
73 process.report
[all...]
/third_party/json/docs/mkdocs/scripts/
H A Dcheck_structure.py11 def report(rule, location, description): function
68 report('structure/unexpected_section', f'{file}:{lineno+1}', f'unexpected top-level title "{line}"')
73 report('style/title', f'{file}:{lineno+1}', 'overview pages should have a better title than "Overview"')
77 report('whitespace/line_length', f'{file}:{lineno+1} ({current_section})', f'line is too long ({len(line)} vs. 160 chars)')
94 report('style/numbering', f'{file}:{lineno} ({current_section})', f'undocumented overloads: {", ".join([f"({x})" for x in undocumented])}')
96 report('style/numbering', f'{file}:{lineno} ({current_section})', f'unexpected overloads: {", ".join([f"({x})" for x in unexpected])}')
104 report('structure/section_order', f'{file}:{lineno+1}', f'section "{current_section}" is in an unexpected order (should be before "{expected_sections[section_idx]}")')
108 report('structure/unknown_section', f'{file}:{lineno+1}', f'section "{current_section}" is not part of the expected sections')
127 report('style/numbering', f'{file}:{lineno+1}', f'expected number ({number}) to be ({last_overload +1 })')
131 report('styl
[all...]
/third_party/benchmark/src/
H A Dbenchmark_runner.cc77 // Create report about this benchmark run. in CreateRunReport()
78 BenchmarkReporter::Run report; in CreateRunReport() local
80 report.run_name = b.name(); in CreateRunReport()
81 report.family_index = b.family_index(); in CreateRunReport()
82 report.per_family_instance_index = b.per_family_instance_index(); in CreateRunReport()
83 report.skipped = results.skipped_; in CreateRunReport()
84 report.skip_message = results.skip_message_; in CreateRunReport()
85 report.report_label = results.report_label_; in CreateRunReport()
87 report.iterations = results.iterations; in CreateRunReport()
88 report in CreateRunReport()
472 BenchmarkReporter::Run report = DoOneRepetition() local
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
H A DDirectiveParser.cpp183 mDiagnostics->report(Diagnostics::PP_CONDITIONAL_UNTERMINATED, block.location, in lex()
218 mDiagnostics->report(Diagnostics::PP_DIRECTIVE_INVALID_NAME, token->location, in parseDirective()
269 mDiagnostics->report(Diagnostics::PP_EOF_IN_DIRECTIVE, token->location, token->text); in parseDirective()
280 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location, token->text); in parseDefine()
285 mDiagnostics->report(Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, token->location, in parseDefine()
291 mDiagnostics->report(Diagnostics::PP_MACRO_NAME_RESERVED, token->location, token->text); in parseDefine()
301 mDiagnostics->report(Diagnostics::PP_WARNING_MACRO_NAME_RESERVED, token->location, in parseDefine()
323 mDiagnostics->report(Diagnostics::PP_MACRO_DUPLICATE_PARAMETER_NAMES, in parseDefine()
335 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location, token->text); in parseDefine()
361 mDiagnostics->report(Diagnostic in parseDefine()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
H A DDirectiveParser.cpp178 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, token->location, token->text);
190 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN,
250 mDiagnostics->report(Diagnostics::PP_CONDITIONAL_UNTERMINATED, in lex()
285 mDiagnostics->report(Diagnostics::PP_DIRECTIVE_INVALID_NAME, in parseDirective()
336 mDiagnostics->report(Diagnostics::PP_EOF_IN_DIRECTIVE, in parseDirective()
348 mDiagnostics->report(Diagnostics::PP_UNEXPECTED_TOKEN, in parseDefine()
354 mDiagnostics->report(Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, in parseDefine()
360 mDiagnostics->report(Diagnostics::PP_MACRO_NAME_RESERVED, in parseDefine()
371 mDiagnostics->report(Diagnostics::PP_WARNING_MACRO_NAME_RESERVED, token->location, in parseDefine()
391 mDiagnostics->report(Diagnostic in parseDefine()
[all...]
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DAnalyzerActivity.java93 StringBuffer report = new StringBuffer(); in getCommonTestReport()
95 report.append("build.fingerprint = " + Build.FINGERPRINT + "\n"); in getCommonTestReport()
98 report.append(String.format("test.version = %s\n", pinfo.versionName)); in getCommonTestReport()
99 report.append(String.format("test.version.code = %d\n", pinfo.versionCode)); in getCommonTestReport()
102 report.append("time.millis = " + System.currentTimeMillis() + "\n"); in getCommonTestReport()
105 report.append(mAudioInputTester.actualConfiguration.dump()); in getCommonTestReport()
107 report.append(String.format("in.burst.frames = %d\n", inStream.getFramesPerBurst())); in getCommonTestReport()
108 report.append(String.format("in.xruns = %d\n", inStream.getXRunCount())); in getCommonTestReport()
111 report.append(mAudioOutTester.actualConfiguration.dump()); in getCommonTestReport()
113 report in getCommonTestReport()
[all...]
/base/account/os_account/services/accountmgr/src/domain_account/
H A Dstatus_listener_manager.cpp87 void StatusListenerManager::DomainAccountEventParcel(const DomainAccountEventData &report, Parcel &parcel) in DomainAccountEventParcel() argument
89 if (!report.domainAccountInfo.Marshalling(parcel)) { in DomainAccountEventParcel()
93 if (!parcel.WriteInt32(report.event)) { in DomainAccountEventParcel()
97 if (!parcel.WriteInt32(report.status)) { in DomainAccountEventParcel()
101 if (!parcel.WriteInt32(report.userId)) { in DomainAccountEventParcel()
108 void StatusListenerManager::NotifyEventAsync(const DomainAccountEventData &report) in NotifyEventAsync() argument
110 ACCOUNT_LOGI("report.event %{public}d, report.status %{public}d", report.event, report in NotifyEventAsync()
[all...]
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/dnsresolv/
H A Ddns_quality_diag.cpp75 int32_t DnsQualityDiag::ParseReportAddr(uint32_t size, AddrInfo* addrinfo, NetsysNative::NetDnsResultReport &report) in ParseReportAddr() argument
94 if (report.addrlist_.size() < MAX_RESULT_SIZE) { in ParseReportAddr()
95 report.addrlist_.push_back(ai); in ParseReportAddr()
112 NETNATIVE_LOG_D("ReportDnsResult: query from Netmanager ignore report"); in ReportDnsResult()
117 NetsysNative::NetDnsResultReport report; in ReportDnsResult() local
118 report.netid_ = netId; in ReportDnsResult()
119 report.uid_ = uid; in ReportDnsResult()
120 report.pid_ = pid; in ReportDnsResult()
121 report.timeused_ = static_cast<uint32_t>(usedtime); in ReportDnsResult()
122 report in ReportDnsResult()
258 add_dns_report(std::shared_ptr<NetsysNative::NetDnsResultReport> report) add_dns_report() argument
319 auto report = event->GetSharedObject<NetsysNative::NetDnsResultReport>(); HandleEvent() local
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/hci/evt/
H A Dhci_evt_le.c229 HciLeDirectedAdvertisingReport *report, const uint8_t *param, int *offset) in HciParseLeDirectedAdvertisingReport()
231 report->eventType = param[*offset]; in HciParseLeDirectedAdvertisingReport()
234 report->addressType = param[*offset]; in HciParseLeDirectedAdvertisingReport()
237 if (memcpy_s(report->address.raw, BT_ADDRESS_SIZE, param + *offset, BT_ADDRESS_SIZE) != EOK) { in HciParseLeDirectedAdvertisingReport()
242 report->directAddressType = param[*offset]; in HciParseLeDirectedAdvertisingReport()
245 (void)memcpy_s(report->directAddress.raw, BT_ADDRESS_SIZE, param + *offset, BT_ADDRESS_SIZE); in HciParseLeDirectedAdvertisingReport()
248 report->rssi = param[*offset]; in HciParseLeDirectedAdvertisingReport()
307 HciLeExtendedAdvertisingReport *report, const uint8_t *param, size_t length, int *offset) in HciParseLeExtendedAdvertisingReport()
309 const size_t EXT_ADV_COMMON_REPORT_SIZE = 24; // A extended advertising report size except 'Data' field. in HciParseLeExtendedAdvertisingReport()
316 report in HciParseLeExtendedAdvertisingReport()
228 HciParseLeDirectedAdvertisingReport( HciLeDirectedAdvertisingReport *report, const uint8_t *param, int *offset) HciParseLeDirectedAdvertisingReport() argument
306 HciParseLeExtendedAdvertisingReport( HciLeExtendedAdvertisingReport *report, const uint8_t *param, size_t length, int *offset) HciParseLeExtendedAdvertisingReport() argument
[all...]

Completed in 12 milliseconds

12345678910>>...18