Searched refs:reporter (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_stream_ui.rb132 reporter = @sui.progress_reporter 10, 'hi'
133 assert_kind_of Gem::StreamUI::SilentProgressReporter, reporter
138 reporter = @sui.progress_reporter 10, 'hi'
139 assert_kind_of Gem::StreamUI::SilentProgressReporter, reporter
145 reporter = @sui.progress_reporter 10, 'hi'
146 assert_kind_of Gem::StreamUI::SimpleProgressReporter, reporter
152 reporter = @sui.progress_reporter 10, 'hi'
153 assert_kind_of Gem::StreamUI::VerboseProgressReporter, reporter
159 reporter = @sui.download_reporter
160 reporter
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOInterruptAccounting.cpp71 void interruptAccountingDataUpdateChannels(IOInterruptAccountingData * data, IOSimpleReporter * reporter) argument
77 reporter->setValue(IA_GET_CHANNEL_ID(data->interruptIndex, i), data->interruptStatistics[i]);
81 void interruptAccountingDataInheritChannels(IOInterruptAccountingData * data, IOSimpleReporter * reporter) argument
87 data->interruptStatistics[i] = reporter->getValue(IA_GET_CHANNEL_ID(data->interruptIndex, i));
H A DIOSimpleReporter.cpp42 IOSimpleReporter *reporter, *rval = NULL; local
46 reporter = new IOSimpleReporter;
47 if (!reporter) goto finish;
50 if (!reporter->initWith(reportingService, categories, unit)) {
55 rval = reporter;
59 if (reporter) delete reporter;
H A DIOReportLegend.cpp99 IOReporter *reporter,
107 if (!reportingService || !reporter) {
115 legend->addReporterLegend(reporter, groupName, subGroupName);
160 IOReportLegend::addReporterLegend(IOReporter *reporter, argument
167 if (reporter) {
169 legendEntry = reporter->createLegend();
98 addReporterLegend(IOService *reportingService, IOReporter *reporter, const char *groupName, const char *subGroupName) argument
H A DIOHistogramReporter.cpp50 IOHistogramReporter *reporter = new IOHistogramReporter; local
54 if (reporter) {
59 if(reporter->initWith(reportingService, categories,
62 return reporter;
90 // For now, this reporter is currently limited to a single channel
H A DIOStateReporter.cpp45 IOStateReporter *reporter, *rval = NULL; local
49 reporter = new IOStateReporter;
50 if (!reporter) goto finish;
52 if (!reporter->initWith(reportingService, categories, nstates, unit)) {
57 rval = reporter;
61 if (reporter) delete reporter;
591 // FIXME: set a bit somewhere (reporter-wide?) that state_ids can no longer be
818 reported outside the reporter. In the case of IOStateReporter,
H A DIOService.cpp224 IOSimpleReporter * reporter; /* Reporter responsible for communicating the statistics */ member in struct:IOInterruptAccountingReporter
545 if (reserved->interruptStatisticsArray[i].reporter)
546 reserved->interruptStatisticsArray[i].reporter->release();
5853 if (!reserved->interruptStatisticsArray[source].reporter) {
5855 * We don't have a reporter associated with this index yet, so we
5862 reserved->interruptStatisticsArray[source].reporter = IOSimpleReporter::with(this, kIOReportCategoryInterrupt, kIOReportUnitNone);
5877 reserved->interruptStatisticsArray[source].reporter->addChannel(IA_GET_CHANNEL_ID(source, i), kInterruptAccountingStatisticNameArray[i]);
5881 * We now need to add the legend for this reporter to the registry.
5893 legend->addReporterLegend(reserved->interruptStatisticsArray[source].reporter, kInterruptAccountingGroupName, kInterruptAccountingGenericSubgroupName);
5895 legend->addReporterLegend(reserved->interruptStatisticsArray[source].reporter, kInterruptAccountingGroupNam
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOInterruptAccountingPrivate.h58 * interrupt codepath itself, and by the nub when it needs to update the reporter; the reporter is
152 * means that reported values may have a disparity if we update the reporter values while an interrupt is
176 * reporter), stash the index we set up the reporter with here.
186 * As long as we are based on the simple reporter, all our channels will be 64 bits. Align the data
207 * Updates reporter with the statistics contained within data. Invoked when IOReporting has been asked
209 * the reporter helps keep interrupt accounting overhead down.
211 void interruptAccountingDataUpdateChannels(IOInterruptAccountingData * data, IOSimpleReporter * reporter);
214 * Initializes the statistics in data using the statistics currently held by reporter
[all...]
H A DIOKernelReporters.h80 helps manage legend entries from multiple reporter objects as well
84 all channels reported by a particular reporter instance must share all
137 init() establishes the parameters of all channels for this reporter
142 below to obtain fully-initialized reporter instances. ::free()
155 @abstract add an additional, similar channel to the reporter
162 The reporter will allocate memory to track a new channel with the
164 be those provided when the reporter was initialized. If no channel
175 @abstract create a legend entry represending this reporter's channels
178 All channels added to the reporter will be represented
197 Instead of calling createLegend on your reporter objec
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dsubr.el3067 ;; Progress reporter has the following structure:
3077 ;; `progress-reporter-update' to be as fast as possible, so
3078 ;; `(car reporter)' is better than `(aref reporter 0)'.
3084 (defsubst progress-reporter-update (reporter value)
3088 `make-progress-reporter' for details).
3091 `make-progress-reporter'. Second, VALUE, determines the actual
3093 as passed to `make-progress-reporter'.
3097 (when (>= value (car reporter))
[all...]
H A Dffap.el1717 (require 'reporter)
1718 (let ((reporter-prompt-for-summary-p t))
1719 (reporter-submit-bug-report
H A Dediff-util.el47 (load "reporter" 'noerror)))
3952 (let ((reporter-prompt-for-summary-p t)
4028 (require 'reporter)
4029 (reporter-submit-bug-report "kifer@cs.stonybrook.edu"
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Dremote_fetcher.rb507 # perform download progress reporter only for gems
509 reporter = ui.download_reporter
512 reporter.fetch(file_name, incomplete_response.content_length)
519 reporter.update(downloaded)
521 reporter.done
/macosx-10.10.1/emacs-93/emacs/lisp/mail/
H A Dreporter.el0 ;;; reporter.el --- customizable bug reporting of lisp programs
39 ;; reporter.el was written primarily for Emacs Lisp package authors so
41 ;; `reporter-submit-bug-report' will set up an outgoing mail buffer
49 ;; Do a "C-h f reporter-submit-bug-report" for more information.
57 ;; (require 'reporter)
58 ;; (reporter-submit-bug-report
73 (defvar reporter-prompt-for-summary-p nil
75 When non-nil, `reporter-submit-bug-report' prompts the user for a
80 Default behavior is to not prompt (i.e. nil). If you want reporter to
82 `reporter
[all...]
H A Dsupercite.el2043 (require 'reporter)
2046 (reporter-submit-bug-report
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h460 // This is the default global test part result reporter used in UnitTestImpl.
476 // This is the default per thread test part result reporter used in
483 // delegates to the current global test part result reporter of *unit_test_.
505 // TestPartResult to the global test result reporter, which registers the
508 // Returns the global test part result reporter.
511 // Sets the global test part result reporter.
513 TestPartResultReporterInterface* reporter);
515 // Returns the test part result reporter for the current thread.
518 // Sets the test part result reporter for the current thread.
520 TestPartResultReporterInterface* reporter);
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/obsolete/
H A Dhilit19.el405 (eval-when-compile (require 'reporter)) ; no compilation gripes
410 (require 'reporter)
412 (reporter-submit-bug-report
/macosx-10.10.1/IOPCIFamily-239.1.2/
H A DIOPCIBridge.cpp2950 src->fEvents[src->fWriteIndex].reporter = device;
3563 if (event.reporter)
3566 event.reporter->release();
3613 if (event.reporter) event.reporter->release();
3630 event->reporter->getName(), event->reporter->getRegistryEntryID(),
/macosx-10.10.1/IOPCIFamily-239.1.2/IOKit/pci/
H A DIOPCIDevice.h329 IOPCIDevice * reporter; member in struct:IOPCIEvent
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-gl.el753 (require 'reporter)
754 (reporter-submit-bug-report gnus-gl-maintainer-address
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Dcc-mode.el1394 ;; Dynamic variables used by reporter.
1395 (defvar reporter-prompt-for-summary-p)
1396 (defvar reporter-dont-compact-list)
1401 (require 'reporter)
1402 ;; load in reporter
1403 (let ((reporter-prompt-for-summary-p t)
1404 (reporter-dont-compact-list '(c-offsets-alist))
1410 (reporter-submit-bug-report
H A Doctave-mod.el1518 (require 'reporter)
1521 (reporter-submit-bug-report
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/
H A Dgtest.cc534 // The c'tor sets this object as the test part result reporter used by
544 // The c'tor sets this object as the test part result reporter used by
565 // The d'tor restores the test part result reporter used by Google Test
677 // Returns the global test part result reporter.
684 // Sets the global test part result reporter.
686 TestPartResultReporterInterface* reporter) {
688 global_test_part_result_repoter_ = reporter;
691 // Returns the test part result reporter for the current thread.
697 // Sets the test part result reporter for the current thread.
699 TestPartResultReporterInterface* reporter) {
685 SetGlobalTestPartResultReporter( TestPartResultReporterInterface* reporter) argument
698 SetTestPartResultReporterForCurrentThread( TestPartResultReporterInterface* reporter) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/textmodes/
H A Dartist.el497 (require 'reporter) ; the bug-reporting tool
503 (require 'reporter)
5348 (require 'reporter)
5370 (reporter-submit-bug-report
/macosx-10.10.1/emacs-93/emacs/lisp/emulation/
H A Dviper-cmd.el4994 (let ((reporter-prompt-for-summary-p t)
5114 (require 'reporter)
5117 (reporter-submit-bug-report "kifer@cs.stonybrook.edu"

Completed in 604 milliseconds

12