Searched refs:importer (Results 1 - 25 of 116) sorted by relevance

12345

/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/
H A Dparser.js10 * The linux perf trace event importer depends on subclasses of
16 * importer. For example,
18 * var Parser = tracing.importer.linux_perf.Parser;
20 * function WorkqueueParser(importer) {
21 * Parser.call(this, importer);
23 * importer.registerEventHandler('workqueue_execute_start',
25 * importer.registerEventHandler('workqueue_execute_end',
38 * messages using this.importer.importError. If this is done in lieu of
53 * All subclasses should depend on importer.linux_perf.parser, e.g.
55 * base.defineModule('importer
[all...]
H A Dpower_parser.js10 base.require('tracing.importer.linux_perf.parser');
13 base.exportTo('tracing.importer.linux_perf', function() {
15 var Parser = tracing.importer.linux_perf.Parser;
21 function PowerParser(importer) {
22 Parser.call(this, importer);
25 importer.registerEventHandler('power_start',
27 importer.registerEventHandler('power_frequency',
30 importer.registerEventHandler('cpu_frequency',
32 importer.registerEventHandler('cpu_idle',
40 var targetCpu = this.importer
[all...]
H A Dclock_parser.js11 base.require('tracing.importer.linux_perf.parser');
14 base.exportTo('tracing.importer.linux_perf', function() {
16 var Parser = tracing.importer.linux_perf.Parser;
22 function ClockParser(importer) {
23 Parser.call(this, importer);
25 importer.registerEventHandler('clock_set_rate',
28 this.model_ = importer.model_;
H A Dgesture_parser.js10 base.require('tracing.importer.linux_perf.parser');
11 base.exportTo('tracing.importer.linux_perf', function() {
13 var Parser = tracing.importer.linux_perf.Parser;
19 function GestureParser(importer) {
20 Parser.call(this, importer);
21 importer.registerEventHandler('tracing_mark_write:log',
23 importer.registerEventHandler('tracing_mark_write:SyncInterpret',
25 importer.registerEventHandler('tracing_mark_write:HandleTimer',
39 var thread = this.importer.getOrCreatePseudoThread('gesture').thread;
45 var thread = this.importer
[all...]
H A Dworkqueue_parser.js10 base.require('tracing.importer.linux_perf.parser');
11 base.exportTo('tracing.importer.linux_perf', function() {
13 var Parser = tracing.importer.linux_perf.Parser;
19 function WorkqueueParser(importer) {
20 Parser.call(this, importer);
22 importer.registerEventHandler('workqueue_execute_start',
24 importer.registerEventHandler('workqueue_execute_end',
26 importer.registerEventHandler('workqueue_queue_work',
28 importer.registerEventHandler('workqueue_activate_work',
44 * Parses workqueue events and sets up state in the importer
[all...]
H A Dcpufreq_parser.js10 base.require('tracing.importer.linux_perf.parser');
11 base.exportTo('tracing.importer.linux_perf', function() {
13 var Parser = tracing.importer.linux_perf.Parser;
19 function CpufreqParser(importer) {
20 Parser.call(this, importer);
22 importer.registerEventHandler('cpufreq_interactive_up',
24 importer.registerEventHandler('cpufreq_interactive_down',
26 importer.registerEventHandler('cpufreq_interactive_already',
28 importer.registerEventHandler('cpufreq_interactive_notyet',
30 importer
[all...]
H A Dsched_parser.js10 base.require('tracing.importer.linux_perf.parser');
11 base.exportTo('tracing.importer.linux_perf', function() {
13 var Parser = tracing.importer.linux_perf.Parser;
19 function SchedParser(importer) {
20 Parser.call(this, importer);
22 importer.registerEventHandler('sched_switch',
24 importer.registerEventHandler('sched_wakeup',
46 * Parses scheduler events and sets up state in the importer.
58 var cpuState = this.importer.getOrCreateCpuState(cpuNumber);
59 cpuState.switchRunningLinuxPid(this.importer,
[all...]
H A Dirq_parser.js10 base.require('tracing.importer.linux_perf.parser');
11 base.exportTo('tracing.importer.linux_perf', function() {
13 var Parser = tracing.importer.linux_perf.Parser;
19 function IrqParser(importer) {
20 Parser.call(this, importer);
22 importer.registerEventHandler('irq_handler_entry',
24 importer.registerEventHandler('irq_handler_exit',
26 importer.registerEventHandler('softirq_raise',
28 importer.registerEventHandler('softirq_entry',
30 importer
[all...]
H A Ddrm_parser.js10 base.require('tracing.importer.linux_perf.parser');
11 base.exportTo('tracing.importer.linux_perf', function() {
13 var Parser = tracing.importer.linux_perf.Parser;
19 function DrmParser(importer) {
20 Parser.call(this, importer);
22 importer.registerEventHandler('drm_vblank_event',
30 var kthread = this.importer.getOrCreatePseudoThread('drm_vblank');
39 * Parses drm driver events and sets up state in the importer.
H A Dexynos_parser.js10 base.require('tracing.importer.linux_perf.parser');
11 base.exportTo('tracing.importer.linux_perf', function() {
13 var Parser = tracing.importer.linux_perf.Parser;
19 function ExynosParser(importer) {
20 Parser.call(this, importer);
22 importer.registerEventHandler('exynos_flip_request',
24 importer.registerEventHandler('exynos_flip_complete',
27 importer.registerEventHandler('exynos_busfreq_target_int',
29 importer.registerEventHandler('exynos_busfreq_target_mif',
38 var kthread = this.importer
[all...]
H A Dmemreclaim_parser.js10 base.require('tracing.importer.linux_perf.parser');
11 base.exportTo('tracing.importer.linux_perf', function() {
13 var Parser = tracing.importer.linux_perf.Parser;
19 function MemReclaimParser(importer) {
20 Parser.call(this, importer);
22 importer.registerEventHandler('mm_vmscan_kswapd_wake',
24 importer.registerEventHandler('mm_vmscan_kswapd_sleep',
26 importer.registerEventHandler('mm_vmscan_direct_reclaim_begin',
28 importer.registerEventHandler('mm_vmscan_direct_reclaim_end',
52 var kthread = this.importer
[all...]
/external/chromium_org/chrome/common/importer/
H A Dimporter_data_types.cc5 #include "chrome/common/importer/importer_data_types.h"
7 namespace importer { namespace
17 } // namespace importer
H A Die_importer_utils_win.h10 namespace importer { namespace
24 } // namespace importer
H A Dimporter_type.h10 namespace importer { namespace
21 // Value 1 was the (now deleted) Firefox 2 profile importer.
26 // Value 4 was the (now deleted) Google Toolbar importer.
30 } // namespace importer
H A Dimporter_bridge.h15 #include "chrome/common/importer/importer_data_types.h"
16 #include "chrome/common/importer/importer_url_row.h"
26 namespace importer { namespace
46 const importer::ImporterIE7PasswordInfo& password_info) = 0;
53 importer::VisitSource visit_source) = 0;
56 const std::vector<importer::URLKeywordInfo>& url_keywords,
71 virtual void NotifyItemStarted(importer::ImportItem item) = 0;
75 virtual void NotifyItemEnded(importer::ImportItem item) = 0;
83 // external import process, since the importer only needs a few strings.
/external/chromium_org/chrome/utility/importer/
H A Dimporter_creator.h8 #include "chrome/common/importer/importer_type.h"
12 namespace importer { namespace
17 } // namespace importer
H A Dfavicon_reencode.h12 namespace importer { namespace
21 } // namespace importer
/external/chromium_org/chrome/browser/importer/
H A Dimporter_list.cc5 #include "chrome/browser/importer/importer_list.h"
9 #include "chrome/common/importer/firefox_importer_utils.h"
10 #include "chrome/common/importer/importer_bridge.h"
11 #include "chrome/common/importer/importer_data_types.h"
20 #include "chrome/common/importer/safari_importer_utils.h"
28 void DetectIEProfiles(std::vector<importer::SourceProfile*>* profiles) {
31 importer::SourceProfile* ie = new importer::SourceProfile;
33 ie->importer_type = importer::TYPE_IE;
36 ie->services_supported = importer
[all...]
H A Dimporter_list.h17 namespace importer { namespace
47 const importer::SourceProfile& GetSourceProfileAt(size_t index) const;
54 const std::vector<importer::SourceProfile*>& profiles);
57 ScopedVector<importer::SourceProfile> source_profiles_;
H A Dimporter_lock_dialog.h11 namespace importer { namespace
19 } // namespace importer
H A Dimporter_uma.h10 #include "chrome/common/importer/importer_type.h"
12 namespace importer { namespace
21 } // namespace importer
H A Dexternal_process_importer_host.h13 #include "chrome/browser/importer/importer_progress_observer.h"
14 #include "chrome/browser/importer/profile_writer.h"
16 #include "chrome/common/importer/importer_data_types.h"
25 namespace importer { namespace
30 // importer bridge and the external process importer client.
39 // |source_profile| - importer profile to import.
41 // |items| - specifies which data to import (bitmask of importer::ImportItem).
44 const importer::SourceProfile& source_profile,
49 // When in headless mode, the importer wil
[all...]
H A Din_process_importer_bridge.h15 #include "chrome/browser/importer/profile_writer.h"
16 #include "chrome/common/importer/importer_bridge.h"
23 namespace importer { namespace
45 const importer::ImporterIE7PasswordInfo& password_info) OVERRIDE;
52 importer::VisitSource visit_source) OVERRIDE;
55 const std::vector<importer::URLKeywordInfo>& url_keywords,
65 virtual void NotifyItemStarted(importer::ImportItem item) OVERRIDE;
66 virtual void NotifyItemEnded(importer::ImportItem item) OVERRIDE;
/external/javassist/src/main/javassist/tools/rmi/
H A DSample.java24 private ObjectImporter importer; field in class:Sample
28 return importer.call(objectId, identifier, args);
/external/chromium-trace/trace-viewer/src/tracing/importer/
H A Dtimeline_stream_importer_test.js9 base.require('tracing.importer.timeline_stream_importer');
11 base.unittest.testSuite('tracing.importer.timeline_stream_importer', function() { // @suppress longLineCheck
84 var importer = new tracing.importer.TimelineStreamImporter(model);
86 assertFalse(importer.paused);
87 assertFalse(importer.connected);
90 importer.connect(socket);
93 assertTrue(importer.connected);
119 var importer = new tracing.importer
[all...]

Completed in 486 milliseconds

12345