Searched defs:errno (Results 1 - 6 of 6) sorted by path

/frameworks/base/core/java/android/net/metrics/
H A DConnectStats.java38 /** How many events resulted in a given errno. */
60 public void addEvent(int errno, int latencyMs, String ipAddr) { argument
61 if (isSuccess(errno)) {
62 countConnect(errno, ipAddr);
63 countLatency(errno, latencyMs);
65 countError(errno);
69 private void countConnect(int errno, String ipAddr) { argument
71 if (!isNonBlocking(errno)) {
79 private void countLatency(int errno, int ms) { argument
80 if (isNonBlocking(errno)) {
95 countError(int errno) argument
100 isSuccess(int errno) argument
104 isNonBlocking(int errno) argument
[all...]
/frameworks/base/tools/orientationplot/
H A Dorientationplot.py29 import errno namespace
59 if e.errno == errno.EAGAIN:
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py33 import errno namespace
63 if e.errno == errno.EAGAIN:
/frameworks/native/libs/vr/libpdx_uds/
H A Dservice_endpoint.cpp153 << strerror(errno); variable
163 CHECK_EQ(ret, 0) << "Endpoint::Endpoint: bind error: " << strerror(errno); variable
173 << "Endpoint::Endpoint: listen error: " << strerror(errno);
177 << "Endpoint::Endpoint: Failed to create event fd: " << strerror(errno);
181 << "Endpoint::Endpoint: Failed to create epoll fd: " << strerror(errno);
191 << strerror(errno);
202 << strerror(errno);
223 strerror(errno));
224 return ErrorStatus(errno);
286 strerror(errno));
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DSmsSessionEventBuilder.java52 public SmsSessionEventBuilder setRilErrno(int errno) { argument
53 mEvent.error = errno;
H A DTelephonyEventBuilder.java96 public TelephonyEventBuilder setDeactivateDataCallResponse(int errno) { argument
98 mEvent.error = errno;

Completed in 178 milliseconds