OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ERRNO
(Results
1 - 14
of
14
) sorted by null
/external/elfutils/libdwfl/
dwfl_error.c
59
#include <
errno
.h>
146
value = DWFL_E (
ERRNO
,
errno
);
220
case OTHER_ERROR (
ERRNO
):
libdwflP.h
59
#include <
errno
.h>
73
DWFL_ERROR (
ERRNO
, N_("See
errno
")) \
100
#define DWFL_E(name,
errno
) (OTHER_ERROR (name) | (
errno
))
409
#define CBFAIL (
errno
? DWFL_E (
ERRNO
,
errno
) : DWFL_E_CB);
/ndk/build/awk/
extract-debuggable.awk
121
if (getline <= 0) _xml_panic("Unexpected EOF: "
ERRNO
);
extract-minsdkversion.awk
118
if (getline <= 0) _xml_panic("Unexpected EOF: "
ERRNO
);
extract-package-name.awk
122
if (getline <= 0) _xml_panic("Unexpected EOF: "
ERRNO
);
xml.awk
106
if (getline <= 0) _xml_panic("Unexpected EOF: "
ERRNO
);
extract-launchable.awk
180
if (getline <= 0) _xml_panic("Unexpected EOF: "
ERRNO
);
/external/mdnsresponder/mDNSShared/
DebugServices.h
468
@abstract Returns 0 if the test success. If the test fails, returns
errno
if non-zero and othewise the alternate error.
471
#define translate_errno( TEST,
ERRNO
, ALTERNATE_ERROR ) ( ( TEST ) ? 0 : (
ERRNO
) ? (
ERRNO
) : ( ALTERNATE_ERROR ) )
672
@abstract Check a condition and prints
errno
(if non-zero) to the log.
681
#define check_translated_errno( TEST,
ERRNO
, ALTERNATE_ERROR ) \
688
localErr = (int_least32_t)(
ERRNO
); \
695
#define check_translated_errno( TEST,
ERRNO
, ALTERNATE_ERROR )
[
all
...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
linuxthreads.cc
85
* the same copy of
errno
!
134
#define NO_INTR(fn) do {} while ((fn) < 0 &&
errno
== EINTR)
138
* a private copy of
errno
. This only works in C++, but it has the
156
#define
ERRNO
sys.my_errno
158
#define
ERRNO
my_errno
267
args->err =
errno
;
438
if (
errno
!= EINTR) {
490
args->err =
errno
;
576
args.err =
errno
;
583
* of
errno
. We must make sure that at least one of these processe
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
linuxthreads.cc
85
* the same copy of
errno
!
134
#define NO_INTR(fn) do {} while ((fn) < 0 &&
errno
== EINTR)
138
* a private copy of
errno
. This only works in C++, but it has the
156
#define
ERRNO
sys.my_errno
158
#define
ERRNO
my_errno
267
args->err =
errno
;
438
if (
errno
!= EINTR) {
490
args->err =
errno
;
576
args.err =
errno
;
583
* of
errno
. We must make sure that at least one of these processe
[
all
...]
/external/chromium_org/third_party/libjingle/overrides/talk/base/
logging.h
88
ERRCTX_ERRNO, // System-local
errno
194
#define LOG_ERRNO_EX(sev, err) LOG_E(sev,
ERRNO
, err)
196
#define LOG_ERRNO(sev) LOG_ERRNO_EX(sev,
errno
)
208
#define LAST_SYSTEM_ERROR (
errno
)
/external/chromium/third_party/libjingle/overrides/talk/base/
logging.h
47
// LOG_ERRNO(sev) attempts to add a string description of an
errno
-derived
48
// error.
errno
and associated facilities exist on both Windows and POSIX,
125
ERRCTX_ERRNO, // System-local
errno
350
LOG_E(sev,
ERRNO
, err)
352
LOG_ERRNO_EX(sev,
errno
)
373
(
errno
)
/external/chromium/third_party/libjingle/source/talk/base/
logging.h
47
// LOG_ERRNO(sev) attempts to add a string description of an
errno
-derived
48
// error.
errno
and associated facilities exist on both Windows and POSIX,
122
ERRCTX_ERRNO, // System-local
errno
346
LOG_E(sev,
ERRNO
, err)
348
LOG_ERRNO_EX(sev,
errno
)
369
(
errno
)
/external/chromium_org/third_party/libjingle/source/talk/base/
logging.h
49
// LOG_ERRNO(sev) attempts to add a string description of an
errno
-derived
50
// error.
errno
and associated facilities exist on both Windows and POSIX,
124
ERRCTX_ERRNO, // System-local
errno
362
LOG_E(sev,
ERRNO
, err)
364
LOG_ERRNO_EX(sev,
errno
)
385
(
errno
)
Completed in 205 milliseconds