OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StrError
(Results
1 - 25
of
29
) sorted by null
1
2
/external/llvm/include/llvm/Support/
Errno.h
23
/// thread-safe variant of
strerror
() is available. Be sure to call this
26
std::string
StrError
();
29
std::string
StrError
(int errnum);
/external/llvm/lib/Support/
Errno.cpp
32
std::string
StrError
() {
33
return
StrError
(errno);
37
std::string
StrError
(int errnum) {
61
// Copy the thread un-safe result of
strerror
into
63
// of collision of
strerror
in multiple threads.
64
str =
strerror
(errnum);
66
// Strange that this system doesn't even have
strerror
DataStream.cpp
78
llvm::getDataFileStreamer(const std::string &Filename, std::string *
StrError
) {
81
*
StrError
= std::string("Could not open ") + Filename + ": " +
/external/llvm/lib/Support/Unix/
Unix.h
64
*ErrMsg = prefix + ": " + llvm::sys::
StrError
(errnum);
/external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp
59
const std::string err_str = sys::
StrError
();
69
const std::string err_str = sys::
StrError
();
/external/protobuf/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc
303
return String(errno == 0 ? "" : posix::
StrError
(errno));
[
all
...]
/external/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/gtest/src/
gtest-death-test.cc
305
return errno == 0 ? "" : posix::
StrError
(errno);
[
all
...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc
265
return String(errno == 0 ? "" : posix::
StrError
(errno));
[
all
...]
/external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/mesa3d/src/gtest/src/
gtest-death-test.cc
265
return String(errno == 0 ? "" : posix::
StrError
(errno));
[
all
...]
/external/protobuf/gtest/src/
gtest-death-test.cc
252
return String(errno == 0 ? "" : posix::
StrError
(errno));
[
all
...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h
[
all
...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-death-test.cc
305
return errno == 0 ? "" : posix::
StrError
(errno);
[
all
...]
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h
[
all
...]
/ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc
305
return errno == 0 ? "" : posix::
StrError
(errno);
[
all
...]
/external/protobuf/gtest/fused-src/gtest/
gtest-all.cc
[
all
...]
/external/libvpx/libvpx/third_party/googletest/src/src/
gtest-all.cc
[
all
...]
/external/opencv3/modules/ts/src/
ts_gtest.cpp
[
all
...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc
[
all
...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
gtest-all.cc
[
all
...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h
[
all
...]
Completed in 1380 milliseconds
1
2