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

12

/frameworks/compile/mclinker/include/mcld/Support/
H A DMsgHandling.h42 return getDiagnosticEngine().report(pID, DiagnosticEngine::Unreachable);
46 return getDiagnosticEngine().report(pID, DiagnosticEngine::Fatal);
50 return getDiagnosticEngine().report(pID, DiagnosticEngine::Error);
54 return getDiagnosticEngine().report(pID, DiagnosticEngine::Warning);
58 return getDiagnosticEngine().report(pID, DiagnosticEngine::Debug);
62 return getDiagnosticEngine().report(pID, DiagnosticEngine::Note);
66 return getDiagnosticEngine().report(pID, DiagnosticEngine::Ignore);
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DMultiLayoutVerificationTest.java55 ScopedErrorReport report = exception.getScopedErrorReport();
56 assertNotNull(report);
57 File file = new File(report.getFilePath());
59 assertEquals(1, report.getLocations().size());
60 Location location = report.getLocations().get(0);
111 ScopedErrorReport report = exception.getScopedErrorReport();
112 assertNotNull(report);
113 File file = new File(report.getFilePath());
115 assertEquals(result.error, 1, report.getLocations().size());
116 Location location = report
[all...]
H A DSimpleCompilationTest.java103 ScopedErrorReport report = scopedException.getScopedErrorReport();
104 assertNotNull(report);
105 assertEquals(1, report.getLocations().size());
106 Location loc = report.getLocations().get(0);
111 final File errorFile = new File(report.getFilePath());
136 ScopedErrorReport report = exception.getScopedErrorReport();
137 final File errorFile = new File(report.getFilePath());
150 assertEquals(1, report.getLocations().size());
151 Location loc = report.getLocations().get(0);
274 final ScopedErrorReport report
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothInputDevice.aidl54 boolean setReport(in BluetoothDevice device, byte reportType, String report);
58 boolean sendData(in BluetoothDevice device, String report);
H A DBluetoothInputDevice.java618 * @param report Report receiving buffer size
623 public boolean setReport(BluetoothDevice device, byte reportType, String report) { argument
624 if (VDBG) log("setReport(" + device + "), reportType=" + reportType + " report=" + report);
627 return mService.setReport(device, reportType, report);
643 * @param report Report to send
648 public boolean sendData(BluetoothDevice device, String report) { argument
649 if (DBG) log("sendData(" + device + "), report=" + report);
652 return mService.sendData(device, report);
[all...]
/frameworks/native/services/inputflinger/host/
H A DInputDriver.h53 virtual void inputReportDefinitionAddCollection(input_report_definition_t* report,
55 virtual void inputReportDefinitionDeclareUsageInt(input_report_definition_t* report,
58 virtual void inputReportDefinitionDeclareUsagesBool(input_report_definition_t* report,
70 virtual void reportEvent(input_device_handle_t* d, input_report_t* report) = 0;
100 virtual void inputReportDefinitionAddCollection(input_report_definition_t* report,
102 virtual void inputReportDefinitionDeclareUsageInt(input_report_definition_t* report,
105 virtual void inputReportDefinitionDeclareUsagesBool(input_report_definition_t* report,
117 virtual void reportEvent(input_device_handle_t* d, input_report_t* report) override;
153 input_report_definition_t* report, input_collection_id_t id, int32_t arity);
156 input_report_definition_t* report, input_collection_id_
[all...]
H A DInputDriver.cpp160 void InputDriver::inputReportDefinitionAddCollection(input_report_definition_t* report, argument
162 report->collections[id] = {.arity = arity};
165 void InputDriver::inputReportDefinitionDeclareUsageInt(input_report_definition_t* report, argument
168 if (report->collections.find(id) != report->collections.end()) {
169 report->collections[id].intUsages.push_back({
174 void InputDriver::inputReportDefinitionDeclareUsagesBool(input_report_definition_t* report, argument
176 if (report->collections.find(id) != report->collections.end()) {
178 report
207 reportEvent(input_device_handle_t* d, input_report_t* report) argument
327 input_report_definition_add_collection(input_host_t* host, input_report_definition_t* report, input_collection_id_t id, int32_t arity) argument
333 input_report_definition_declare_usage_int(input_host_t* host, input_report_definition_t* report, input_collection_id_t id, input_usage_t usage, int32_t min, int32_t max, float resolution) argument
340 input_report_definition_declare_usages_bool(input_host_t* host, input_report_definition_t* report, input_collection_id_t id, input_usage_t* usage, size_t usage_count) argument
375 report_event(input_host_t* host, input_device_handle_t* d, input_report_t* report) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DInstrumentationReporter.java120 report(new Report(REPORT_TYPE_STATUS, watcher, name, resultCode, results));
128 report(new Report(REPORT_TYPE_FINISHED, watcher, name, resultCode, results));
131 private void report(Report report) { argument
140 mPendingReports.add(report);
H A DAppErrors.java428 Slog.w(TAG, "bug report receiver dissappeared", e);
487 // can't give it a report button because that would require
488 // launching the report UI under a different user.
515 ActivityManager.ProcessErrorStateInfo report = new ActivityManager.ProcessErrorStateInfo();
517 report.condition = condition;
518 report.processName = app.processName;
519 report.pid = app.pid;
520 report.uid = app.info.uid;
521 report.tag = activity;
522 report
[all...]
H A DStrictModeViolationDialog.java72 res.getText(com.android.internal.R.string.report),
H A DAppErrorDialog.java127 final TextView report = (TextView) findViewById(com.android.internal.R.id.aerr_report);
128 report.setOnClickListener(this);
129 report.setVisibility(hasReceiver ? View.VISIBLE : View.GONE);
H A DAppNotRespondingDialog.java112 final TextView report = (TextView) findViewById(com.android.internal.R.id.aerr_report);
113 report.setOnClickListener(this);
115 report.setVisibility(hasReceiver ? View.VISIBLE : View.GONE);
178 Slog.w(TAG, "bug report receiver dissappeared", e);
H A DNativeCrashListener.java58 * Spin the actual work of handling a debuggerd crash report into a
67 NativeCrashReporter(ProcessRecord app, int signal, String report) { argument
71 mCrashReport = report;
89 Slog.e(TAG, "Unable to report native crash", e);
197 // Read the crash report from the debuggerd connection
232 Slog.v(TAG, "Skipping report for persistent app " + pr);
256 // Okay, we've got the report.
260 // cleanup mechanism knows we're still submitting the report
280 Slog.e(TAG, "Exception dealing with report", e);
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DDevice.java60 public Device(int id, String name, int vid, int pid, byte[] descriptor, byte[] report) { argument
75 args.arg3 = report;
80 public void sendReport(byte[] report) { argument
81 Message msg = mHandler.obtainMessage(MSG_SEND_REPORT, report);
122 Log.e(TAG, "Tried to send report to closed device.");
H A DEvent.java33 public static final String COMMAND_REPORT = "report";
83 + ", report=" + Arrays.toString(mReport)
111 public void setReport(byte[] report) { argument
112 mEvent.mReport = report;
143 throw new IllegalStateException("Report command is missing report data");
185 case "report":
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DTest.java24 void report(String key, float value) {
H A DAutomaticActivity.java63 abstract void report(String name, float value); method in class:AutomaticActivity.FinalCallback
148 void report(String name, float value) {
208 c.report("averageError", (mTotalError / mTotalTests));
210 c.report(String.format("tests with error over %1.3f", ERROR_CUTOFFS[i]),
214 c.report("tests regressed", mTestsRegressed);
215 c.report("tests improved", mTestsImproved);
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticEngine.cpp68 MsgHandler DiagnosticEngine::report(uint16_t pID, function in class:mcld::DiagnosticEngine
/frameworks/opt/net/wifi/tests/wifitests/
H A Dcoverage.sh5 echo "REPORT_TYPE [HTML | XML | CSV] : the type of the report (default is HTML)"
23 echo "Running tests and generating coverage report"
54 --report-dir $OUTPUT_DIR \
57 --report-type $REPORT_TYPE \
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiLogger.java197 BugReport report = captureBugreport(reason, isVerboseLoggingEnabled());
198 mLastBugReports.addLast(report);
203 BugReport report = captureBugreport(errorCode, isVerboseLoggingEnabled());
204 report.alertData = alertData;
205 mLastAlerts.addLast(report);
502 BugReport report = new BugReport();
503 report.errorCode = errorCode;
504 report.systemTimeMs = System.currentTimeMillis();
505 report.kernelTimeNanos = System.nanoTime();
516 report
[all...]
H A DWifiScoreReport.java59 WifiScoreReport(String report, int badLinkspeedcount) { argument
60 mReport = report;
65 * Method returning the String representation of the score report.
67 * @return String score report
74 * Method returning the bad link speed count at the time of the current score report.
91 * @param lastReport String most recent score report
93 * @return WifiScoreReport Wifi Score report
363 //report score
366 Log.d(TAG, "calculateWifiScore() report new score " + Integer.toString(score));
/frameworks/base/cmds/hid/jni/
H A Dcom_android_commands_hid_Device.h47 void sendReport(uint8_t* report, size_t reportSize);
H A Dcom_android_commands_hid_Device.cpp141 void Device::sendReport(uint8_t* report, size_t reportSize) { argument
146 memcpy(&ev.u.input.data, report, reportSize);
207 std::unique_ptr<uint8_t[]> report = getData(env, rawReport, size); local
210 d->sendReport(report.get(), size);
/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnosticEngine.h26 * \brief DiagnosticEngine is used to report problems and issues.
28 * DiagnosticEngine is used to report problems and issues. It creates the
83 // report - issue the message to the printer
84 MsgHandler report(uint16_t pID, Severity pSeverity);
/frameworks/opt/net/wifi/service/jni/
H A Dcom_android_server_wifi_WifiNative.cpp2059 const FateReportT& report(report_bufs[i]);
2063 switch (report.frame_inf.payload_type) {
2067 frame_bytes_native = report.frame_inf.frame_content.ethernet_ii_bytes;
2071 frame_bytes_native = report.frame_inf.frame_content.ieee_80211_mgmt_bytes;
2078 size_t copy_len = report.frame_inf.frame_len;
2095 static_cast<jbyte>(report.fate),
2096 static_cast<jlong>(report.frame_inf.driver_timestamp_usec),
2097 static_cast<jbyte>(report.frame_inf.payload_type),

Completed in 2389 milliseconds

12