HomeSort by relevance Sort by last modified time
    Searched refs:_host (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
crashlogs.py 34 self._host = host
37 if self._host.platform.is_mac():
42 log_directory = self._host.filesystem.expanduser("~")
43 log_directory = self._host.filesystem.join(log_directory, "Library", "Logs")
44 if self._host.filesystem.exists(self._host.filesystem.join(log_directory, "DiagnosticReports")):
45 log_directory = self._host.filesystem.join(log_directory, "DiagnosticReports")
47 log_directory = self._host.filesystem.join(log_directory, "CrashReporter")
55 logs = self._host.filesystem.files_under(log_directory, file_filter=is_crash_log)
60 if not newer_than or self._host.filesystem.mtime(path) > newer_than
    [all...]
profiler.py 70 self._host = host
74 self._host.filesystem.maybe_make_directory(self._output_dir)
90 self._output_path = self._host.workspace.find_unused_filename(self._output_dir, self._identifier, output_suffix, search_limit=1000)
115 if not (self._host.filesystem.exists(self._output_path)):
120 profile_text = self._host.executive.run_command(pprof_args)
145 self._perf_process = self._host.executive.popen(cmd)
154 self._host.executive.wait_limited(self._pid_being_profiled, limit_in_seconds=10)
157 self._host.executive.interrupt(self._perf_process.pid)
168 perf_output = self._host.executive.run_command(perf_args)
185 self._profiler_process = self._host.executive.popen(cmd
    [all...]
  /build/core/
host_test_internal.mk 16 LOCAL_STATIC_LIBRARIES += libgtest_libc++_host libgtest_main_libc++_host
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader.py 39 self._host = host
49 return self._host.filesystem.join(self._build_dir, 'crash-dumps')
52 if self._host.filesystem.isdir(self.crash_dumps_directory()):
53 self._host.filesystem.rmtree(self.crash_dumps_directory())
63 for root, dirs, files in self._host.filesystem.walk(self.crash_dumps_directory()):
65 dmp_file = self._host.filesystem.join(root, dmp)
66 if self._host.filesystem.mtime(dmp_file) < start_time:
dump_reader_multipart.py 67 f, temp_name = self._host.filesystem.open_binary_tempfile('dmp')
73 stack = self._host.executive.run_command(cmd, return_stderr=False)
78 self._host.filesystem.remove(temp_name)
82 with self._host.filesystem.open_binary_file_for_reading(dump_file) as f:
102 full_path = self._host.filesystem.join(self._build_dir, binary)
103 if not self._host.filesystem.exists(full_path):
117 return self._host.filesystem.join(self._build_dir, "minidump_stackwalk")
123 return self._host.filesystem.join(self._build_dir, 'content_shell.syms')
132 full_path = self._host.filesystem.join(self._build_dir, binary)
140 self._host.executive.run_command(cmd
    [all...]
dump_reader_win.py 53 with self._host.filesystem.open_text_file_for_reading(dump_file) as f:
63 stack = self._host.executive.run_command(cmd)
121 cdb = self._host.filesystem.join(cdb_path, 'cdb.exe')
123 _ = self._host.executive.run_command([cdb, '-version'])
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
png.py 43 self._host = host or SystemHost()
44 self._fs = self._host.filesystem
45 self._detector = scm or SCMDetector(self._fs, self._host.executive).detect_scm_system(self._fs.getcwd())
58 (file_missing, autoprop_missing, png_missing) = checksvnconfigfile.check(self._host, self._fs)
59 config_file_path = checksvnconfigfile.config_file_path(self._host, self._fs)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
factory.py 84 self._host = host
87 platform = self._host.platform
105 port_name = self._host.platform.os_name
112 port_name = cls.determine_full_port_name(self._host, options, port_name)
113 return cls(self._host, port_name, options=options, **kwargs)
server_process.py 93 self._host = self._port.host
133 close_fds = not self._host.platform.is_win()
139 self._proc = self._host.executive.popen(self._cmd, stdin=self._host.executive.PIPE,
140 stdout=self._host.executive.PIPE,
141 stderr=self._host.executive.PIPE,
403 self._host.executive.kill_process(self._proc.pid)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner_unittest.py 48 runner._host.filesystem.maybe_make_directory(runner._base_path, 'inspector')
49 runner._host.filesystem.maybe_make_directory(runner._base_path, 'Bindings')
50 runner._host.filesystem.maybe_make_directory(runner._base_path, 'Parser')
54 dirname = runner._host.filesystem.join(runner._base_path, dirname) if dirname else runner._base_path
55 runner._host.filesystem.maybe_make_directory(dirname)
56 runner._host.filesystem.files[runner._host.filesystem.join(dirname, filename)] = content
71 port.host.filesystem.files[runner._host.filesystem.join(runner._base_path, filename)] = 'some content'
76 port.host.filesystem.chdir(runner._port.perf_tests_dir()[:runner._port.perf_tests_dir().rfind(runner._host.filesystem.sep)])
perftestsrunner.py 64 self._host = self._port.host
66 self._host = Host()
67 self._port = self._host.port_factory.get(self._options.platform, self._options)
68 self._host.initialize_scm()
143 filesystem = self._host.filesystem
231 return self._host.filesystem.join(self._port.perf_results_directory(), self._DEFAULT_JSON_FILENAME)
234 return self._host.filesystem.splitext(self._output_json_path())[0] + '.html'
250 filesystem = self._host.filesystem
266 scm = SCMDetector(self._host.filesystem, self._host.executive).detect_scm_system(path) or self._host.scm(
    [all...]
perftestsrunner_integrationtest.py 200 json_content = runner._host.filesystem.read_text_file(runner._output_json_path())
209 runner._host.filesystem.maybe_make_directory(runner._base_path, 'inspector')
210 runner._host.filesystem.maybe_make_directory(runner._base_path, 'Bindings')
211 runner._host.filesystem.maybe_make_directory(runner._base_path, 'Parser')
217 tests = [ChromiumStylePerfTest(port, test_name, runner._host.filesystem.join('some-dir', test_name))]
239 filesystem = runner._host.filesystem
  /external/chromium_org/remoting/ios/ui/
pin_entry_view_controller.h 33 IBOutlet UILabel* _host; variable
  /external/e2fsprogs/lib/quota/
Android.mk 59 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(libext2_quota_shared_libraries))
  /frameworks/base/tests/CoreTests/android/core/
NsdServiceInfoTest.java 26 InetAddress _host = null; typedefs
28 _host = InetAddress.getLocalHost();
30 LOCALHOST = _host;
  /external/e2fsprogs/lib/blkid/
Android.mk 68 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(libext2_blkid_shared_libraries))
  /external/e2fsprogs/resize/
Android.mk 64 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(resize2fs_shared_libraries))
  /external/e2fsprogs/e2fsck/
Android.mk 60 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(libext2_profile_shared_libraries))
160 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(e2fsck_shared_libraries))
  /external/chromium_org/native_client_sdk/src/tools/
host_gcc.mk 95 $(STAMPDIR)/$(1).stamp: $(LIBDIR)/$(OSNAME)_host/$(CONFIG)/lib$(1).a
98 all: $(LIBDIR)/$(OSNAME)_host/$(CONFIG)/lib$(1).a
99 $(LIBDIR)/$(OSNAME)_host/$(CONFIG)/lib$(1).a: $(foreach src,$(2),$(call SRC_TO_OBJ,$(src)))
120 $(call LOG,LINK,$$@,$(LINK) -o $(1) $(2) $(HOST_LDFLAGS) $(NACL_LDFLAGS) $(LDFLAGS) $(foreach path,$(5),-L$(path)/$(OSNAME)_host)/$(CONFIG) $(foreach lib,$(3),-l$(lib)) $(6))
126 $(call LOG,LINK,$$@,$(LINK) -shared -o $(1) $(2) $(HOST_LDFLAGS) $(NACL_LDFLAGS) $(LDFLAGS) $(foreach path,$(5),-L$(path)/$(OSNAME)_host)/$(CONFIG) $(foreach lib,$(3),-l$(lib)) $(6))
  /external/e2fsprogs/misc/
Android.mk 77 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(mke2fs_shared_libraries))
152 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(tune2fs_shared_libraries))
224 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(badblocks_shared_libraries))
293 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(chattr_shared_libraries))
362 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(lsattr_shared_libraries))
  /external/gtest/test/
Android.mk 44 # libraries, typically the host libs have a _host suffix in their
49 # $(4): "_host" or empty
69 $(call _define-test,$(1),HOST_,-O0,_host,)
  /external/gtest/src/
Android.mk 117 LOCAL_MODULE := libgtest_libc++_host
133 LOCAL_MODULE := libgtest_main_libc++_host
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_converter.py 59 self._host = host
60 self._filesystem = self._host.filesystem
  /external/e2fsprogs/lib/ext2fs/
Android.mk 129 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(libext2fs_shared_libraries))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
message_pool.py 71 self._host = host
102 if self._running_inline or self._can_pickle(self._host):
103 host = self._host

Completed in 455 milliseconds

1 2