/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/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...] |
/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 | 69 f, temp_name = self._host.filesystem.open_binary_tempfile('dmp') 75 stack = self._host.executive.run_command(cmd, return_stderr=False) 80 self._host.filesystem.remove(temp_name) 84 with self._host.filesystem.open_binary_file_for_reading(dump_file) as f: 104 full_path = self._host.filesystem.join(self._build_dir, binary) 105 if not self._host.filesystem.exists(full_path): 119 return self._host.filesystem.join(self._build_dir, "minidump_stackwalk") 125 return self._host.filesystem.join(self._build_dir, 'content_shell.syms') 139 full_path = self._host.filesystem.join(self._build_dir, binary) 147 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) 123 cdb = self._host.filesystem.join(cdb_path, 'cdb.exe') 125 _ = 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 113 port_name = cls.determine_full_port_name(self._host, options, class_name) 114 return cls(self._host, port_name, options=options, **kwargs) 121 port_name = cls.determine_full_port_name(self._host, options, port_name) 122 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.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_unittest.py | 52 runner._host.filesystem.maybe_make_directory(runner._base_path, 'inspector') 53 runner._host.filesystem.maybe_make_directory(runner._base_path, 'Bindings') 54 runner._host.filesystem.maybe_make_directory(runner._base_path, 'Parser') 58 dirname = runner._host.filesystem.join(runner._base_path, dirname) if dirname else runner._base_path 59 runner._host.filesystem.maybe_make_directory(dirname) 60 runner._host.filesystem.files[runner._host.filesystem.join(dirname, filename)] = content 75 port.host.filesystem.files[runner._host.filesystem.join(runner._base_path, filename)] = 'some content' 80 port.host.filesystem.chdir(runner._port.perf_tests_dir()[:runner._port.perf_tests_dir().rfind(runner._host.filesystem.sep)]) 379 json_content = runner._host.filesystem.read_text_file(runner._output_json_path() [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/ |
sdk_files.list | 94 [linux]lib/${PLATFORM}_host/Debug/libgmock.a 95 [linux]lib/${PLATFORM}_host/Debug/libgtest.a 96 [linux]lib/${PLATFORM}_host/Debug/libjsoncpp.a 97 [linux]lib/${PLATFORM}_host/Debug/libnacl_io.a 98 [linux,mac]lib/${PLATFORM}_host/Debug/libppapi.a 99 [linux]lib/${PLATFORM}_host/Debug/libppapi_cpp.a 100 [linux]lib/${PLATFORM}_host/Debug/libppapi_cpp_private.a 101 [linux]lib/${PLATFORM}_host/Debug/libppapi_gles2.a 102 [linux]lib/${PLATFORM}_host/Debug/libppapi_simple.a 103 [linux]lib/${PLATFORM}_host/Debug/libsdk_util. [all...] |
/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/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/chromium_org/ppapi/shared_impl/ |
host_resource.h | 24 // Browser: (content|chrome)/browser/renderer_host/pepper/pepper_*_host.* 25 // Renderer: (content|chrome)/renderer/pepper/pepper_*_host.*
|
/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/mojo/shell/ |
child_process.h | 25 // Hosts a single app (see app_child_process(_host).*).
|
/external/e2fsprogs/lib/quota/ |
Android.mk | 73 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(libext2_quota_shared_libraries))
|
/external/e2fsprogs/resize/ |
Android.mk | 64 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(resize2fs_shared_libraries))
|
/external/e2fsprogs/misc/ |
Android.mk | 77 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(mke2fs_shared_libraries)) 186 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(tune2fs_shared_libraries)) 258 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(badblocks_shared_libraries)) 327 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(chattr_shared_libraries)) 396 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(lsattr_shared_libraries))
|
/external/gtest/src/ |
Android.mk | 117 LOCAL_MODULE := libgtest_libc++_host 133 LOCAL_MODULE := libgtest_main_libc++_host
|
/external/e2fsprogs/lib/blkid/ |
Android.mk | 84 LOCAL_SHARED_LIBRARIES := $(addsuffix _host, $(libext2_blkid_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/ext2fs/ |
Android.mk | 149 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
|