OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:binary_path
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/tools/find_runtime_symbols/
prepare_symbol_info.py
153
binary_path
= entry.name
156
binary_path
= entry.name.replace(target_path, host_path, 1)
158
'nm -n --format bsd %s | c++filt' %
binary_path
,
159
output_dir_path, os.path.basename(
binary_path
), '.nm')
163
'readelf -eW %s' %
binary_path
,
164
output_dir_path, os.path.basename(
binary_path
), '.readelf-e')
170
'readelf -wL %s | %s' % (
binary_path
, REDUCE_DEBUGLINE_PATH),
171
output_dir_path, os.path.basename(
binary_path
), '.readelf-wL')
184
files[entry.name]['size'] = os.stat(
binary_path
).st_size
186
with open(
binary_path
, 'rb') as entry_f
[
all
...]
/external/zlib/src/win32/
Makefile.gcc
22
#
BINARY_PATH
, INCLUDE_PATH and LIBRARY_PATH must be set.
128
@if test -z "$(DESTDIR)$(INCLUDE_PATH)" -o -z "$(DESTDIR)$(LIBRARY_PATH)" -o -z "$(DESTDIR)$(
BINARY_PATH
)"; then \
129
echo INCLUDE_PATH, LIBRARY_PATH, and
BINARY_PATH
must be specified; \
135
mkdir -p '$(DESTDIR)$(
BINARY_PATH
)'; \
136
$(INSTALL) $(SHAREDLIB) '$(DESTDIR)$(
BINARY_PATH
)'; \
153
$(RM) '$(DESTDIR)$(
BINARY_PATH
)'/$(SHAREDLIB); \
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
debug.ipp
203
const_string
binary_path
() const { return m_binary_path; }
312
str_t::iterator it = unit_test::find_last_of( dsi.
binary_path
.begin(), dsi.
binary_path
.end(),
315
if( it == dsi.
binary_path
.end() )
316
it = dsi.
binary_path
.begin();
320
::snprintf( title_str, sizeof(title_str), "%*s %ld", (int)(dsi.
binary_path
.end()-it), it, dsi.pid );
435
WRITE_STR( dsi.
binary_path
);
532
safe_execlp( "dbx", "-q", "-c", prepare_dbx_cmd_line( dsi ), dsi.
binary_path
.begin(), pid_buff, 0 );
549
"dbx", "-q", "-c", prepare_dbx_cmd_line( dsi ), dsi.
binary_path
.begin(), pid_buff, 0 );
559
// ::snprintf( dbg_cmd_buff, sizeof(dbg_cmd_buff), "(progn (dbx \"dbx -q -c cont %s %ld\"))", dsi.
binary_path
.begin(), dsi.pid )
[
all
...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
debug.hpp
54
unit_test::const_string
binary_path
;
member in struct:boost::debug::dbg_startup_info
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem_unittest.py
262
binary_path
= None
268
binary_path
= tempfile.mktemp(prefix='tree_unittest_')
273
fs.write_binary_file(
binary_path
, hex_equivalent)
274
text_contents = fs.read_text_file(
binary_path
)
279
if
binary_path
and fs.isfile(
binary_path
):
280
os.remove(
binary_path
)
Completed in 484 milliseconds