OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxPathLength
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_procmaps_mac.cc
163
InternalScopedBuffer<char> module_name(
kMaxPathLength
);
sanitizer_posix.cc
267
InternalScopedBuffer<char> buffer(
kMaxPathLength
);
272
if (prefix_len + name_len + 2 <=
kMaxPathLength
) {
sanitizer_procmaps_linux.cc
248
InternalScopedBuffer<char> module_name(
kMaxPathLength
);
sanitizer_linux_libcdep.cc
488
InternalScopedBuffer<char> module_name(
kMaxPathLength
);
sanitizer_linux.cc
681
static char proc_self_exe_cache_str[
kMaxPathLength
];
718
ReadBinaryName(proc_self_exe_cache_str,
kMaxPathLength
);
sanitizer_common.h
37
const uptr
kMaxPathLength
= 512;
/external/chromium_org/base/files/
file_util_win.cc
531
// Pad a bit to be safe. If
kMaxPathLength
is ever changed to be less
533
// not return
kMaxPathLength
. This would mean that only part of the
535
const int
kMaxPathLength
= MAX_PATH + 10;
536
wchar_t mapped_file_path[
kMaxPathLength
];
539
if (::GetMappedFileNameW(cp, file_view, mapped_file_path,
kMaxPathLength
)) {
Completed in 316 milliseconds