OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:file_output
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/sandbox/win/tools/finder/
main.cc
129
FILE *
file_output
;
local
131
errno_t err = _wfopen_s(&
file_output
, log_file, L"w");
137
file_output
= stdout;
141
finder_obj.Init(token_type, object_type, access_type,
file_output
);
144
fclose(
file_output
);
finder.cc
27
FILE *
file_output
) {
36
file_output_ =
file_output
;
finder.h
58
DWORD access_type, FILE *
file_output
);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
linux_unittest.py
43
def assert_architecture(self, port_name=None,
file_output
=None, expected_architecture=None):
46
if
file_output
:
47
host.executive = executive_mock.MockExecutive2(
file_output
)
64
self.assert_architecture(
file_output
='ELF 32-bit LSB executable',
66
self.assert_architecture(
file_output
='ELF 64-bit LSB executable',
linux.py
71
file_output
= ''
74
file_output
= executive.run_command(['file', '--brief', '--dereference', driver_path], return_stderr=True)
76
if re.match(r'ELF 32-bit LSB\s+executable',
file_output
):
78
if re.match(r'ELF 64-bit LSB\s+executable',
file_output
):
80
if
file_output
:
81
_log.warning('Could not determine architecture from "file" output: %s' %
file_output
)
/external/chromium_org/tools/gn/
command_refs.cc
95
bool
file_output
= cmdline->HasSwitch("files");
local
106
if (
file_output
) {
/external/chromium_org/chrome/installer/mac/
dirdiffer.sh
278
local
file_output
279
file_output
="$(file "${new_file}" 2> /dev/null || true)"
280
if [[ "${
file_output
}" =~ Mach-O ]]; then
Completed in 274 milliseconds