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

123

/haiku-fatelf/src/bin/coreutils/man/
H A Duniq.x2 uniq \- report or omit repeated lines
/haiku-fatelf/src/tests/kits/app/bapplication/testapps/
H A DAppQuitTestApp4.cpp15 report("ERROR: BApplication is locked!\n");
31 report("error: %lx\n", error);
32 report("InitCheck(): %lx\n", app->InitCheck());
H A DAppQuitTestApp1.cpp21 report("error: %lx\n", error);
22 report("InitCheck(): %lx\n", app->InitCheck());
H A DAppRunTestApp1.cpp20 report("error: %lx\n", error);
21 report("InitCheck(): %lx\n", app.InitCheck());
H A DAppQuitRequestedTestApp1.cpp21 report("error: %lx\n", error);
22 report("InitCheck(): %lx\n", app->InitCheck());
H A DAppQuitTestApp2.cpp34 report("error: %lx\n", error);
35 report("InitCheck(): %lx\n", app->InitCheck());
H A DAppQuitTestApp3.cpp31 report("error: %lx\n", error);
32 report("InitCheck(): %lx\n", app->InitCheck());
/haiku-fatelf/src/tests/kits/app/bmessenger/testapps/
H A DBMessengerTestApp1.cpp20 report("error: %lx\n", error);
21 report("InitCheck(): %lx\n", app.InitCheck());
/haiku-fatelf/src/apps/terminal/
H A DTerminalBuffer.h38 void ReportX10MouseEvent(bool report);
39 void ReportNormalMouseEvent(bool report);
40 void ReportButtonMouseEvent(bool report);
41 void ReportAnyMouseEvent(bool report);
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPReportManager.cpp7 \brief Manager for PPP reports and report requests.
18 ppp_report_packet report; member in struct:report_sender_info
26 KPPPReportManager::SendReport(info->thread, &info->report);
34 \param lock The BLocker that should be used by this report manager.
42 //! Deletes all report requests.
50 /*! \brief Send the given report message to the given thread.
52 \param thread The report receiver.
53 \param report The report message.
58 KPPPReportManager::SendReport(thread_id thread, const ppp_report_packet *report) argument
185 ppp_report_packet report; local
[all...]
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libppp/
H A DPPPInterfaceListener.cpp9 PPPInterfaceListener converts all kernel report messages from the PPP stack
13 - "type" [\c int32]: the report type
14 - "code" [\c int32]: the report code
30 // Creates a BMessage for each report and send it to the target BHandler.
37 ppp_report_packet report; local
44 code = receive_data(&sender, &report, sizeof(report));
55 message.AddInt32("type", report.type);
56 message.AddInt32("code", report.code);
58 if (report
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/input/usb_hid/
H A DHIDParser.cpp114 // collections and report items)
396 HIDReport *report = fReports[i]; local
397 if (report == NULL)
400 if ((report->Type() & type) != 0 && report->ID() == id)
401 return report;
413 HIDReport *report = fReports[i]; local
414 if (report == NULL)
417 if (report->Type() & type)
429 HIDReport *report local
446 HIDReport *report = fReports[i]; local
462 SetReport(status_t status, uint8 *report, size_t length) argument
499 HIDReport *report = fReports[i]; local
513 HIDReport *report = FindReport(type, id); local
[all...]
H A DHIDReportItem.cpp17 HIDReportItem::HIDReportItem(HIDReport *report, uint32 bitOffset, argument
20 : fReport(report),
62 uint8 *report = fReport->CurrentReport(); local
63 if (report == NULL)
66 memcpy(&fData, report + fByteOffset, sizeof(uint32));
87 uint8 *report = fReport->CurrentReport(); local
88 if (report == NULL)
92 memcpy(&value, report + fByteOffset, sizeof(uint32));
98 memcpy(report + fByteOffset, &value, sizeof(uint32));
H A DMouseProtocolHandler.cpp25 MouseProtocolHandler::MouseProtocolHandler(HIDReport &report, bool tablet, argument
28 ProtocolHandler(report.Device(),
30 fReport(report),
41 for (uint32 i = 0; i < report.CountItems(); i++) {
42 HIDReportItem *item = report.ItemAt(i);
54 fWheel = report.FindItem(B_HID_USAGE_PAGE_GENERIC_DESKTOP,
59 TRACE("report id: %u\n", report.ID());
198 TRACE_ALWAYS("error waiting for report: %s\n", strerror(result));
236 TRACE("got mouse report\
[all...]
H A DHIDParser.h34 void SetReport(status_t status, uint8 *report,
H A DMouseProtocolHandler.h25 MouseProtocolHandler(HIDReport &report,
H A DHIDReport.cpp35 fConditionVariable.Init(this, "hid report");
51 TRACE("adding main item to report of type 0x%02x with id 0x%02x\n",
114 TRACE_ALWAYS("no memory when growing report item list\n");
141 TRACE_ALWAYS("no memory when creating report item\n");
155 HIDReport::SetReport(status_t status, uint8 *report, size_t length) argument
158 fCurrentReport = report;
160 TRACE_ALWAYS("report of %lu bits too small, expected %" B_PRIu32 " bits\n",
176 uint8 *report = (uint8 *)malloc(reportSize); local
177 if (report == NULL)
180 fCurrentReport = report;
[all...]
H A DJoystickProtocolHandler.cpp23 JoystickProtocolHandler::JoystickProtocolHandler(HIDReport &report) argument
25 ProtocolHandler(report.Device(), "joystick/usb/", 0),
26 fReport(report),
41 for (uint32 i = 0; i < report.CountItems(); i++) {
42 HIDReportItem *item = report.ItemAt(i);
111 TRACE("report id: %u\n", report.ID());
342 TRACE_ALWAYS("error waiting for report: %s\n", strerror(result));
392 TRACE("got joystick report\n");
H A DHIDCollection.cpp202 typeName = "report";
293 HIDReport *report = item->Report(); local
294 if (reportType != HID_REPORT_TYPE_ANY && report->Type() != reportType)
299 if (reportList[j] == report) {
308 reportList[reportCount++] = report;
H A DHIDDevice.cpp63 // Conforming device, find the HID descriptor and get the report
106 "fallback report descriptor length of %lu\n",
115 TRACE_ALWAYS("failed to allocate buffer for report descriptor\n");
126 TRACE("get report descriptor: result: 0x%08lx; length: %lu\n", result,
129 TRACE_ALWAYS("failed tot get report descriptor\n");
138 // save report descriptor for troubleshooting
156 TRACE_ALWAYS("parsing the report descriptor failed\n");
185 TRACE_ALWAYS("report claims a report size of 0\n");
286 HIDDevice::SendReport(HIDReport *report) argument
[all...]
H A DHIDDevice.h39 status_t SendReport(HIDReport *report);
/haiku-fatelf/src/tests/kits/app/common/
H A DCommonTestApp.cpp44 report("BApplication::~BApplication()\n");
53 report("BApplication::ArgvReceived()\n");
55 report("args:");
57 report(" %s", argv[i]);
58 report("\n");
75 report("BApplication::QuitRequested()\n");
88 report("BApplication::ReadyToRun()\n");
96 report("BApplication::Run() done: %d\n", (result == find_thread(NULL)));
199 // report
201 report(cons function
[all...]
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPReportManager.h22 static bool SendReport(thread_id thread, const ppp_report_packet *report);
/haiku-fatelf/src/bin/bash/support/
H A Dbashbug.sh3 # bashbug - create a bug report and mail it to the bug address
54 USAGE="Usage: $0 [--help] [--version] [bug-report-email-address]"
85 EDITOR environment variable) with a preformatted bug report
86 template for you to fill in. The report will be mailed to the
90 saving any changes to the template, and no bug report will be sent.
111 echo "$0: This is a testing release. Would you like your bug report"
215 echo "$0: Type \`y' to give up, and lose your bug report;"
235 echo "$0: Type \`y' to give up, and lose your bug report;"
256 echo "File not changed, no bug report submitted."
260 echo $n "Send bug report
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dschematron.c81 * A Schematrons test, either an assert or a report
91 xmlChar *report; /* the message to report */ member in struct:_xmlSchematronTest
108 xmlChar *report; /* the message to report */ member in struct:_xmlSchematronRule
293 * @report: the associated report string
303 xmlNodePtr node, xmlChar *test, xmlChar *report)
334 ret->report = report;
300 xmlSchematronAddTest(xmlSchematronParserCtxtPtr ctxt, xmlSchematronTestType type, xmlSchematronRulePtr rule, xmlNodePtr node, xmlChar *test, xmlChar *report) argument
384 xmlSchematronAddRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPtr schema, xmlSchematronPatternPtr pat, xmlNodePtr node, xmlChar *context, xmlChar *report) argument
848 xmlChar *report; local
1371 const xmlChar *report = NULL; local
[all...]

Completed in 100 milliseconds

123