Searched defs:report (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/os/
H A DVintfObject.java33 * and report them.
37 public static native String[] report(); method in class:VintfObject
H A DStrictMode.java158 // How many Span tags (e.g. animations) to report.
1734 public void report(String message, Throwable allocationSite) { method in class:StrictMode.AndroidCloseGuardReporter
2485 * to report violations that happened during a cross-process call.
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticEngine.cpp68 MsgHandler DiagnosticEngine::report(uint16_t pID, function in class:mcld::DiagnosticEngine
/frameworks/base/core/java/android/app/
H A DDexLoadReporter.java89 public void report(List<String> dexPaths) { method in class:DexLoadReporter
H A DActivityThread.java1038 // and the activity manager will wait for us to report back that
4986 // Not configured to report to activity.
5156 if (DEBUG_CONFIGURATION) Slog.w(TAG, "Not found target activity to report to: " + r);
6475 public void report (int code, Object... list) { method in class:ActivityThread.EventLoggingReporter
/frameworks/base/core/java/android/bluetooth/le/
H A DPeriodicAdvertisingCallback.java66 * Callback when periodic advertising report is received.
68 * @param report periodic advertising report.
70 public void onPeriodicAdvertisingReport(PeriodicAdvertisingReport report) {} argument
/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 DNativeCrashListener.java57 * Spin the actual work of handling a debuggerd crash report into a
66 NativeCrashReporter(ProcessRecord app, int signal, String report) { argument
70 mCrashReport = report;
88 Slog.e(TAG, "Unable to report native crash", e);
192 // Read a crash report from the connection
231 Slog.v(TAG, "Skipping report for persistent app " + pr);
255 // Okay, we've got the report.
259 // cleanup mechanism knows we're still submitting the report
279 Slog.e(TAG, "Exception dealing with report", e);
H A DActivityManagerService.java934 * This is for verifying the UID report flow.
5361 // The low memory report is overriding any current
6581 // This is the first appearance of the uid, report it now!
7571 // report the finish immediately.
12755 * replaced by a proper bug report API (which will be restricted to a few, pre-defined apps).
12791 * replaced by a proper bug report API (which will be restricted to a few, pre-defined apps).
14224 * Used by {@link com.android.internal.os.RuntimeInit} to report when an application crashes.
14329 // Exit early if the dropbox isn't configured to accept this report type.
14387 String report;
14389 report
14584 addErrorToDropBox(String eventType, ProcessRecord process, String processName, ActivityRecord activity, ActivityRecord parent, String subject, final String report, final File dataFile, final ApplicationErrorReport.CrashInfo crashInfo) argument
19916 reportStartInstrumentationFailureLocked(IInstrumentationWatcher watcher, ComponentName cn, String report) argument
[all...]
/frameworks/base/libs/hwui/tests/macrobench/
H A DTestSceneRunner.cpp87 BenchmarkReporter::Run report; local
88 report.benchmark_name = info.name;
89 report.iterations = static_cast<int64_t>(opts.count);
90 report.real_accumulated_time = durationInS;
91 report.cpu_accumulated_time = durationInS;
92 report.items_per_second = opts.count / durationInS;
93 reports.push_back(report);
/frameworks/base/cmds/hid/jni/
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/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 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/base/core/java/android/bluetooth/
H A DBluetoothInputDevice.java619 * @param report Report receiving buffer size
624 public boolean setReport(BluetoothDevice device, byte reportType, String report) { argument
625 if (VDBG) log("setReport(" + device + "), reportType=" + reportType + " report=" + report);
628 return mService.setReport(device, reportType, report);
644 * @param report Report to send
649 public boolean sendData(BluetoothDevice device, String report) { argument
650 if (DBG) log("sendData(" + device + "), report=" + report);
653 return mService.sendData(device, report);
[all...]
/frameworks/native/services/inputflinger/host/
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/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 1891 milliseconds