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

/system/update_engine/scripts/update_payload/
H A Dchecker.py97 # Payload report generator.
101 """A payload report generator.
103 A report is essentially a sequence of nodes, which represent data points. It
105 sub-report itself.
108 # Report nodes: Field, sub-report, section.
110 """A report node interface."""
126 """Generates the report lines for this node.
131 curr_section: The current report section object.
134 A pair consisting of a list of properly indented report lines and a new
140 """A field report nod
[all...]
H A Dchecker_unittest.py152 linebreak: Whether or not a linebreak is to be used in the report.
153 indent: Indentation used for the report.
157 report: A mock report object.
158 subreport: A mock sub-report object.
171 # Create a mock report.
172 report = self.mox.CreateMock(checker._PayloadReport)
175 report.AddSubReport(name).AndReturn(subreport)
177 report.AddField(name, convert(val), linebreak=linebreak, indent=indent)
180 return (msg, report, subrepor
[all...]
/system/bt/binder/android/bluetooth/le/
H A DIPeriodicAdvertisingCallback.aidl29 void onPeriodicAdvertisingReport(in PeriodicAdvertisingReport report);
/system/bt/binder/android/bluetooth/
H A DIBluetoothHidHost.aidl54 boolean setReport(in BluetoothDevice device, byte reportType, String report);
58 boolean sendData(in BluetoothDevice device, String report);
/system/core/storaged/include/
H A Dstoraged_info.h76 virtual void report() {}; function in class:storage_info_t
95 virtual void report();
103 virtual void report();
117 virtual void report();
H A Dstoraged_uid_monitor.h84 // current io usage for next report, app name -> uid_io_usage
119 void report(unordered_map<int, StoragedProto>* protos);
/system/netd/server/
H A DWakeupController.h56 WakeupController(ReportFn report, IptablesRestoreInterface* iptables) argument
57 : mReport(report), mIptables(iptables) {}
/system/bt/btif/src/
H A Dbtif_hd.cc538 tBTA_HD_REPORT report; local
554 report.type = BTHD_REPORT_TYPE_INPUT;
555 report.use_intr = TRUE;
557 report.type = (type & 0x03);
558 report.use_intr = FALSE;
561 report.id = id;
562 report.len = len;
563 report.p_data = p_data;
565 BTA_HdSendReport(&report);
H A Dbtif_hh.cc260 * Description Sends a report to the keyboard to set the lock states of
265 uint8_t len = 2; /* reportid + 1 byte report*/
267 uint8_t data[] = {0x01, /* report id */
270 /* Set report for other keyboards */
271 BTIF_TRACE_EVENT("%s: setting report on dev_handle %d to 0x%x", __func__,
303 If so, send a report to the kernel
308 "%s: Sending hid report to kernel "
315 "%s: NOT sending hid report to kernel "
647 uint16_t size, uint8_t* report) {
648 BT_HDR* p_buf = create_pbuf(size, report);
646 btif_hh_setreport(btif_hh_device_t* p_dev, bthh_report_type_t r_type, uint16_t size, uint8_t* report) argument
1504 set_report(RawAddress* bd_addr, bthh_report_type_t reportType, char* report) argument
[all...]
/system/bt/btif/include/
H A Dbtif_hh.h108 uint8_t* report);
/system/update_engine/scripts/
H A Dpaycheck.py58 check_opts.add_option('-r', '--report', metavar='FILE',
59 help="dump payload report (`-' for stdout)")
126 opts.check = (opts.check or opts.report or opts.assert_type or
186 if options.report:
187 if options.report == '-':
190 report_file = open(options.report, 'w')
/system/bt/stack/avdt/
H A Davdt_scb_act.cc274 /* report sequence number */
300 tAVDT_REPORT_DATA report; local
304 /* parse report packet header */
312 BE_STREAM_TO_UINT32(report.sr.ntp_sec, p);
313 BE_STREAM_TO_UINT32(report.sr.ntp_frac, p);
314 BE_STREAM_TO_UINT32(report.sr.rtp_time, p);
315 BE_STREAM_TO_UINT32(report.sr.pkt_count, p);
316 BE_STREAM_TO_UINT32(report.sr.octet_count, p);
320 report.rr.frag_lost = *p;
321 BE_STREAM_TO_UINT32(report
354 &report); local
[all...]
/system/extras/simpleperf/runtest/
H A Druntest.conf44 <report option="--sort comm,symbol"/>
199 <report option="--comms RUN_COMM1"/>
H A Druntest.py22 2. Run simpleperf report command to parse perf.data, generate perf.report.
23 4. Parse perf.report and see if it matches expectation.
228 elif test_item.tag == 'report':
313 def report(self, record_file, report_file, additional_options=[]): member in class:Runner
314 call_args = [self.perf_path, 'report']
376 def report(self, record_file, report_file, additional_options=[]): member in class:DeviceRunner
377 super(DeviceRunner, self).report(self.tmpdir + record_file,
383 """Check if perf.report matches expectation in Configuration."""
436 # Each report ite
[all...]
/system/extras/simpleperf/scripts/
H A Dreport.py18 """Simpleperf gui reporter: provide gui interface for simpleperf report command.
20 There are two ways to use gui reporter. One way is to pass it a report file
21 generated by simpleperf report command, and reporter will display it. The
23 simpleperf report command. The reporter will call `simpleperf report` to
24 generate report file, and display it.
80 """Representing one item in report, may contain a CallTree."""
95 """Representing report for one event attr."""
104 # Parse common report context
142 # Each report ite
[all...]
H A Ddebug_unwind_reporter.py18 """debug_unwind_reporter.py: report dwarf unwinding results generated by debug-unwind cmd.
24 3. Pull perf.data.debug on host, and report it with this script.
30 3. For samples that don't have complete callchains, report their regs, stack data,
257 # 2. Don't report complete callchains, which can reach __libc_init or __start_thread in
459 Set profiling data to report. Default is perf.data.debug.""")
465 report = build_unwinding_result_report(args)
466 report.show()
/system/core/storaged/
H A Dstoraged_info.cpp233 void emmc_info_t::report() function in class:emmc_info_t
326 void ufs_info_t::report() function in class:ufs_info_t
371 void health_storage_info_t::report() { function in class:health_storage_info_t
H A Dstoraged.cpp137 storage_info->report();
322 mUidm.report(&protos);
H A Dstoraged_uid_monitor.cpp263 report(nullptr);
367 void uid_monitor::report(unordered_map<int, StoragedProto>* protos) function in class:uid_monitor
/system/bt/include/hardware/
H A Dbt_hh.h43 BTHH_HS_INVALID_RPT_ID, /* handshake error : invalid report ID */
116 /** Callback for get report api.
117 * if staus is ok rpt_data contains the report data
185 char* report);
/system/extras/simpleperf/doc/
H A Dinferno.md10 . You can see a sample report generated with Inferno
11 [here](./report.html). Report are self-contained in HTML so they can be
59 to display the HTML report.
73 A healthy flame graph features a single call site at its base (see [here](./report.html)).
/system/extras/simpleperf/
H A Dcmd_kmem_test.cpp46 std::vector<std::string> args = {"report", "-i", perf_data, "-o",
120 TEST(kmem_cmd, report) {
/system/bt/bta/hh/
H A Dbta_hh_le.cc82 * Description debug function to print out all HID report available on
93 tBTA_HH_LE_RPT* p_rpt = &p_cb->hid_srvc.report[0];
337 * Description find the report entry by service instance and report UUID
355 p_rpt = &p_cb->hid_srvc.report[0];
370 * Description find a report entry by report ID and protocol mode
389 /* return battery report w/o condition */
408 * Description find or allocate a report entry in the HID service report
[all...]
H A Dbta_hh_int.h193 tBTA_HH_LE_RPT report[BTA_HH_LE_RPT_MAX]; member in struct:__anon176
219 tBTA_HH_DEV_DSCP_INFO dscp_info; /* report descriptor and DI information */

Completed in 315 milliseconds