OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StrError
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Support/
Errno.cpp
33
std::string
StrError
() {
34
return
StrError
(errno);
38
std::string
StrError
(int errnum) {
57
// Copy the thread un-safe result of
strerror
into
59
// of collision of
strerror
in multiple threads.
61
strncpy(buffer,
strerror
(errnum),MaxErrStrLen-1);
64
// Strange that this system doesn't even have
strerror
/external/protobuf/gtest/include/gtest/internal/
gtest-port.h
903
//
StrError
() aren't needed on Windows CE at this time and thus not
927
inline const char*
StrError
(int errnum) { return
strerror
(errnum); }
[
all
...]
/external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h
[
all
...]
Completed in 429 milliseconds